/* ========================================
   CSS Variables - 색상 및 공통 값 통합 관리
   ======================================== */
:root {
  /* Primary Colors */
  --primary-dark: #101820;
  --primary-yellow: #fffb00;
  --primary-orange: #ffa600;
  --primary-red: #e91327;
  --primary-blue: #07528d;
  --secondary-orange: #ff7b00;
  --secondary-blue: #23a3df;
  --white: #ffffff;
  --light-gray: #cccccc;
  --dark-gray: #343a40;
  
  /* Common Transitions */
  --transition-fast: 0.3s;
  --transition-normal: 0.5s;
  --transition-slow: 1s;
  --transition-ease: ease-in-out;
  
  /* Common Border Radius */
  --radius-small: 5px;
  --radius-medium: 25px;
  --radius-large: 50px;
  --radius-circle: 50%;
  
  /* Font Families */
  --font-light: 'GmarketSansLight';
  --font-medium: 'GmarketSansMedium';
  --font-bold: 'GmarketSansBold';
}

@font-face {
  font-family: 'GmarketSansLight';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
}

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

@font-face {
  font-family: 'GmarketSansBold';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--primary-dark, #101820);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #101820;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: var(--radius-circle);
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-dark, #101820);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-large);
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: var(--white, #fff);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-yellow, #fffb00);
  color: var(--white, #fff);
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  font-family: var(--font-medium);
  transition: all var(--transition-normal);
  z-index: 997;
  padding: 15px 0;
}



#header.header-scrolled, #header.header-inner-pages {
  background: rgba(16, 24, 32, 0.8);
}

#header .logo {
  font-family: var(--font-medium);
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  font-family: var(--font-medium);
  color: var(--white, #fff);
}

#header .logo img {
  max-height: 40px;
}







/*--------------------------------------------------------------
# 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 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white, #fff);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.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: var(--primary-dark, #101820);

}

.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: var(--radius-small);
  color: var(--white, #fff);
  font-size: 14px;
  border: 2px solid #101820;
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: var(--white, #fff);
  background: var(--primary-yellow, #fffb00);
}

.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: var(--primary-dark, #101820);
  box-shadow: #ffffff;
  transition: var(--transition-fast);
  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: 500;
  color: var(--primary-yellow, #fffb00);
}

.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: var(--primary-dark, #101820);
  background: var(--primary-yellow, #fffb00);
}

.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 only screen and (max-width: 767px) {
  .pricing .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Display two items per row */
    grid-gap: 20px; /* Adjust the gap between items */
  }
}


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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--white, #ffffff);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: var(--transition-normal);
}

.mobile-nav-toggle.bi-x {
  color: var(--primary-dark, #101820);
}

@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(254, 231, 21, 0.9);
  transition: var(--transition-fast);
  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: #101820;
  overflow-y: auto;
  transition: var(--transition-fast);
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--primary-yellow, #fffb00);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--white, #ffffff);

}

.navbar-mobile .getstarted {
  margin: 15px;
  color: var(--primary-dark, #101820);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #002a57;
  box-shadow: 0px 0px 30px rgba(16, 24, 32, 0.9);
}

.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: var(--primary-dark, #101820);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background-image: linear-gradient(to right  , #040036 20%, #020020 80%);
}

#hero .container {
  padding-top: 72px;
}

.container .small_tag{
  font-family: var(--font-medium);
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--white, #fff);
}

#hero h2 {
  font-family: var(--font-medium);
  color: rgba(255, 255, 255);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: var(--radius-large);
  transition: var(--transition-normal);
  margin: 10px 0 0 0;
  color: var(--white, #fff);
  background: var(--primary-dark, #101820);
}

#hero .btn-get-started:hover {
  background: var(--primary-yellow, #fffb00);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  margin: 10px 0 0 25px;
  color: var(--white, #fff);
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: var(--white, #fff);
  font-size: 32px;
  transition: var(--transition-fast);
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: var(--primary-dark, #101820);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

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

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





/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/


p.section_count {

  font-family: var(--font-bold);
  font-size: 150px;
  margin: 0 40px 0 0;
  background-image: linear-gradient(to right bottom, #fffb00  50%, #ff7b00 );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(10px 10px 5px #ffa600); /*그림자*/
}


p.section_count2 {
  font-family: var(--font-bold);
  font-size: 150px;
  margin: 0 40px 0 0;
  background-image: linear-gradient(to right bottom, #090086    50%, #020020 );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(20px 15px 10px #000000); /*그림자*/
}


p.section_count3 {

  font-family: var(--font-bold);
  font-size: 150px;
  margin: 0 40px 0 0;
  background-image: linear-gradient(to right bottom, #ffea2b  50%, #ff7b00 );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(20px 15px 10px #ff7b00); /*그림자*/
}



.heading_main p.small_tag {
  font-family: var(--font-medium);
  font-size: 18px;
  text-transform: uppercase;
  line-height: normal;
  font-weight: 600;
  margin: 0;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-image: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: inset 5px 5px 20px 5px #ffa600;
  height: auto;
}
.section-bg2 {
  background-image: linear-gradient(to right  , #040036 20%, #020020 80%);
  box-shadow: inset 5px 5px 20px 5px #000000;
  height: auto;

}



.section-title {
  text-align: center;
  padding-bottom: 40px;
  
}

.section-title p {
  font-family: var(--font-medium);
  margin: 10px;
  padding: 10px;
  font-size: 15px;
  color: var(--primary-dark, #101820);
  text-align: center;
}


.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--primary-dark, #101820);
}

.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: var(--primary-dark, #101820);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}


/*------------------------------------------------------------------ 이미지 슬라이드-------------------------------------------------------------------*/
:root {

  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: rgb(255, 255, 255);
    --color-bg: rgb(0, 0, 0);
    --color-bg-accent: #0d0047 ; 
  }
}



.marquee {
  display: flex;
  overflow: hidden;
  


  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 10%,
    hsl(0 0% 0% / 1) 90%,
    hsl(0 0% 0% / 0)
  );
          mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 10%,
    hsl(0 0% 0% / 1) 90%,
    hsl(0 0% 0% / 0)
  );
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  -webkit-animation: scroll-x var(--duration) linear infinite;
          animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
}




.marquee__group > svg {
  box-shadow: -5px -5px 35px -5px #000000

}
.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  -webkit-animation-name: scroll-y;
          animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}




@-webkit-keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@-webkit-keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}

/* Element styles */
.marquee svg {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}

.marquee--vertical svg {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
  height: 100vh;

}

/* Toggle direction button */
.toggle {
  --size: 3rem;
  position: relative;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: var(--size);
  height: var(--size);
  font: inherit;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: var(--radius-circle);
  color: inherit;
  background-color: var(--color-bg-accent);
  z-index: 1;
}

.toggle:focus-visible {
  box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: calc(100% + 0.4em);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  transform: translateY(-50%);
  -webkit-animation: fade 400ms 4s ease-out forwards;
          animation: fade 400ms 4s ease-out forwards;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.toggle svg {
  --size: 1.5rem;

  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  fill: currentcolor;
  transform: translate(-50%, -50%);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@-webkit-keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--primary-dark, #101820);
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;

}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
  font-family: var(--font-medium);
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  box-shadow: -5px -5px 15px -5px #f3ff4e  , 2px 2px 15px 5px #ff8800  ; 
  margin-top: 35px;
}

.why-us .accordion-list li {
  box-shadow: -5px -5px 15px -5px #f3ff4e  , 2px 2px 15px 5px #ff8800  ; 
  padding: 20px;
  background: var(--white, #fff);
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: var(--font-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {

  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: var(--primary-dark, #101820);
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}





@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 300px;

  }
}


/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/



.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--m-blue, #402fb5);
  font-family: var(--font-medium);
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-yellow, #fffb00);
}

.skills .content p:last-child {
  margin-bottom: 0;
  font-family: var(--font-medium);
}

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

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--font-medium);
  color: var(--primary-dark, #101820);
}

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

.skills .progress-bar-wrap {
  background: var(--primary-dark, #101820);
  height: 10px;
}

.skills .progress-bar {
  text-align: center;
  color: var(--primary-dark, #101820); 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}



/*--------------------------------------------------------------
# Skills 2
--------------------------------------------------------------*/

.skills .progress2 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar2 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar2 {
  width: 50%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation 15s;

}

@keyframes progressAnimation {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 50%; background-color: #ffa600 ; }
}



/*--------------------------------------------------------------
# Skills 3
--------------------------------------------------------------*/
.progress3 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar3 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar3 {
  width: 60%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation2 15s;

}

@keyframes progressAnimation2 {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 60%; background-color: #ffa600 ; }
}

/*--------------------------------------------------------------
# Skills 4
--------------------------------------------------------------*/

.skills-content {
  font-family: var(--font-medium);
}

.skills p {
  font-family: var(--font-medium);
}

.progress4 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar4 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar4 {
  width: 75%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation3 15s;

}

@keyframes progressAnimation3 {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 75%; background-color: #ffa600 ; }
}


/*--------------------------------------------------------------
# Skills 5
--------------------------------------------------------------*/

.progress5 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar5 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar5 {
  width: 50%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation4 15s;

}

@keyframes progressAnimation4 {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 50%; background-color: #ffa600 ; }
}


/*--------------------------------------------------------------
# Skills 6
--------------------------------------------------------------*/

.progress6 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar6 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar6 {
  width: 45%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation4 15s;

}

@keyframes progressAnimation5 {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 45%; background-color: #ffa600 ; }
}


/*--------------------------------------------------------------
# Skills 7
--------------------------------------------------------------*/
.progress7 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar7 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar7 {
  width: 35%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation6 15s;

}

@keyframes progressAnimation6 {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 35%; background-color: #ffa600 ; }
}


/*--------------------------------------------------------------
# Skills 8
--------------------------------------------------------------*/
.progress8 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar8 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar8 {
  width: 80%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation7 15s;

}

@keyframes progressAnimation7 {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 80%; background-color: #ffa600 ; }
}



/*--------------------------------------------------------------
# Skills 9
--------------------------------------------------------------*/
.progress9 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar9 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar9 {
  width: 30%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation8 15s;

}

@keyframes progressAnimation8 {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 30%; background-color: #ffa600 ; }
}



/*--------------------------------------------------------------
# Skills 10
--------------------------------------------------------------*/
.progress10 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar10 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar10 {
  width: 85%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation9 15s;

}

@keyframes progressAnimation9 {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 85%; background-color: #ffa600 ; }
}


/*--------------------------------------------------------------
# Skills 11
--------------------------------------------------------------*/
.progress11 {
  padding: 6px;
  border-radius: 30px;
  background: linear-gradient(to right  , #01003d 20%, #010024 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ; 
}

.progress-bar11 {
  text-align: center;
  color: #101010; 
  height: 18px;
  border-radius: 30px;
  transition: 0.4s linear;  
}

.progress-moved .progress-bar11 {
  width: 60%; 
  background: linear-gradient(to right , #fffb00 20%, #ffa600 80%);
  box-shadow: -5px -5px 3px -5px #b5b4ff  , 2px 2px 3px 2px #000000 ;
  animation: progressAnimation10 15s;
}

@keyframes progressAnimation10 {
  0%   { width: 5%; background-color: #fffb00  ;}
  100% { width: 60%; background-color: #ffa600 ; }
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
  box-shadow: -5px -5px 15px -5px #fffb00, 2px 2px 15px 5px #db7c00 ; 
  padding: 30px 60px;
  transition: all ease-in-out 0.5s;
  background-image: linear-gradient(to right bottom, #fffb00, #ffa600);
  height: auto;
  border-radius: 200px 200px 50px 200px;
  max-height: 230px; /* 최소 높이 보장 */
  max-width: 240px; /* 최대 너비 */
}



.services .icon-box .icon i {
  color: var(--primary-dark, #101820);
  font-size: 30px;
  transition: var(--transition-fast);

}

.services .icon-box h4 {
  font: center;
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center; /* 텍스트 내용물 가운데 정렬 */
}

.services .icon-box h4 a {

  background-image: linear-gradient(to right bottom , #1a00ad 50%, #e100ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 20px;
  font-family: var(--font-medium);
  word-break: break-word; /* 단어가 넘칠 경우 쪼개서 줄바꿈 */
  overflow-wrap: break-word; /* 긴 단어가 영역을 넘치지 않도록 */
  letter-spacing: -0.9px; /* 자간을 -0.7px 줄임 (원하는 값으로 조정) */
}

.services .icon-box p {
  line-height: 1.2; /* line-height 수정 */
  font-size: 15px;
  margin-bottom: 0;
}

.services .icon-box  img {
	border-radius: auto;
  transition: transform 0.5s ease-in-out;

}


.services .icon-box:hover {
  transform: translateY(-10px) scale(1.05); 
  background-image: linear-gradient(to right , #ffffff, #c6ccff);
  height: auto;
  box-shadow: -5px -5px 30px -5px #0004ff, 5px 5px 30px 5px #cc00ff; 

}
.services .icon-box  img:hover {
  transform: translateY(-10px) scale(1.05); 

}

.services .icon-box:hover h4 a {
  background-image: linear-gradient(to right bottom, #1a00ad 50%, #e100ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(2px 12px 8px #230063); /*그림자*/
  font-family: var(--font-bold);

}



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

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all var(--transition-fast);
  padding: 8px 20px;
  border-radius: var(--radius-large);
  font-family: var(--font-medium);
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: var(--primary-dark, #101820);
  color: var(--white, #fff);
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

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

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all var(--transition-fast);
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: var(--white, #fff);
  font-weight: 600;
  color: var(--white, #fff);
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: var(--white, #fff);
  transition: var(--transition-fast);
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--primary-dark, #101820);
}

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

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

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

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio p {
  font-family: var(--font-medium);
}


.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  align-items: center;
  border-radius: var(--radius-large);
  box-shadow: -5px -5px 20px -5px #ff0000, 2px 2px 20px 5px #fffb00; 
}

.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 #101820;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

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

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

.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;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: -5px -5px 20px -5px #fffc3c  , 2px 2px 20px 5px #e09200 ; 
  padding: 30px;
  border-radius: var(--radius-small);  
  transition: var(--transition-normal);
  font-family: var(--font-medium);
  color: var(--white, #ffffff);
}


.team .member .pic {
  overflow: hidden;
  width: 320px;
  border-radius: 10px;
}

.team .member .pic img {
  transition: var(--transition-ease) var(--transition-normal);
}

.team .member:hover {
  transform: translateY(-20px);
}

.team .member .member-info {

  padding-left: 30px;
}

.team .member h4 {
  font-family: var(--font-medium);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #000000;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: var(--white, #ffffff);
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: var(--transition-ease) var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-large);
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: var(--primary-dark, #101820);
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: var(--primary-dark, #101820);
}

.team .member .social a:hover i {
  color: var(--white, #fff);
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Team2
--------------------------------------------------------------*/
.team2 .member {
  position: relative;
  box-shadow: -5px -5px 15px -5px #5855ff  , 2px 2px 20px 5px #000000 ; 
  padding: 30px;
  border-radius: var(--radius-small);
  transition: var(--transition-normal);
  font-family: var(--font-light);
  color: var(--white, #ffffff);
}


.team2 .member .pic {
  overflow: hidden;
  width: 320px;
  border-radius: 10px;
}

.team2 .member .pic img {
  transition: var(--transition-ease) var(--transition-normal);
}

.team2 .member:hover {
  transform: translateY(-20px);
}




.team2 .member .member-info {

  padding-left: 30px;
}

.team2 .member h4 {
  font-family: var(--font-medium);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--white, #ffffff);
}

.team2 .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team2 .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: var(--white, #ffffff);
  bottom: 0;
  left: 0;
}

.team2 .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
  font-family: var(--font-light);
}

.team2 .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team2 .member .social a {
  transition: var(--transition-ease) var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-large);
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team2 .member .social a i {
  color: var(--primary-dark, #101820);
  font-size: 16px;
  margin: 0 2px;
}

.team2 .member .social a:hover {
  background: var(--primary-dark, #101820);
}

.team2 .member .social a:hover i {
  color: var(--white, #fff);
}

.team2 .member .social a + a {
  margin-left: 8px;
}





/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: var(--white, #fff);
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: var(--radius-small);
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--primary-dark, #101820);
}

.pricing h4 {
  font-size: 48px;
  color: var(--primary-dark, #101820);
  font-weight: 400;
  font-family: var(--font-medium);
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: var(--primary-dark, #101820);
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: var(--radius-large);
  color: var(--primary-dark, #101820);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-medium);
  transition: var(--transition-fast);
  border: 1px solid #101820;
}

.pricing .buy-btn:hover {
  background: var(--primary-dark, #101820);
  color: var(--white, #fff);
}

.pricing .featured {
  border-top-color: #101820;
}

.pricing .featured .buy-btn {
  background: var(--primary-dark, #101820);
  color: var(--white, #fff);
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
  
}

.faq .faq-list li + li {
  box-shadow: 3px 3px 5px 3px #b9b9b9;
  margin-top: 25px;

}

.faq .faq-list li {
  box-shadow: 3px 3px 5px 3px #b9b9b9;
  padding: 20px;
  background: var(--white, #fff);
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: var(--font-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--primary-dark, #101820);
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  font-family: var(--font-medium);
  padding: 10px 0 0 0;

}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: var(--primary-dark, #101820);
  transition: var(--transition-fast);
}

.faq .faq-list a.collapsed:hover {
  color: var(--primary-dark, #101820);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #101820;
  border-bottom: 3px solid #101820;
  padding: 30px;
  background: var(--white, #fff);
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: var(--primary-dark, #101820);
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-large);
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-dark, #101820);
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--primary-yellow, #fffb00);
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ec0505;
  color: var(--white, #fff);
  line-height: 1;
  padding: 8px 0;
  border-radius: var(--radius-circle);
  text-align: center;
  width: 36px;
  height: 36px;
  transition: var(--transition-fast);
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--primary-dark, #101820);
  color: var(--white, #fff);
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: var(--primary-dark, #101820);
  color: var(--white, #fff);
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #101820;
  border-bottom: 3px solid #101820;
  padding: 30px;
  background: var(--white, #fff);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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: var(--white, #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: var(--white, #fff);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

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

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

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

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

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #101820;
}

.contact .php-email-form input {
  height: 44px;
}

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

.contact .php-email-form button[type="submit"] {
  background: var(--primary-dark, #101820);
  border: 0;
  padding: 12px 34px;
  color: var(--white, #fff);
  transition: 0.4s;
  border-radius: var(--radius-large);
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--primary-yellow, #fffb00);
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 5px 0;
  background: #f3f5fa;
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-dark, #101820);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  font-family: var(--font-medium);
  background: #000000;
}



#footer .footer-top {
  padding: 10px 0 20px 0;
  background: #000000;
}

#footer .footer-top .footer-contact {
  margin-bottom: 3px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 20px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-medium);  
  font-weight: 600;
  color: var(--primary-yellow, #fffb00);
}

#footer .footer-top .footer-contact p {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
  font-family: var(--font-medium);
  color: #aaaaaa;
}

#footer .footer-top .footer-links p {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
  font-family: var(--font-medium);
  color: #aaaaaa;
}

#footer .footer-top .footer-links h4 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 20px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-medium);  
  font-weight: 600;
  color: var(--primary-yellow, #fffb00);
}



#footer .footer-top .footer-links {
  margin-bottom: 30px;
  
}

#footer .footer-top .footer-links ul {
  list-style: none;  
  padding: 0;
  margin: 0;
}





#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}



#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary-dark, #101820);
}

#footer .footer-bottom {
  padding-top: 10px;
  padding-bottom: 25px;
  color: var(--white, #fff);
}

#footer .credits {
  float: right;
  padding-left: .5rem;
  font-size: 13px;

}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}

/*------------------------------------------------------------------ 
    SKELETON
-------------------------------------------------------------------*/

body {
	color: #696969;
	font-size: 15px;

	line-height: 1.80857;
}

a {
	color: #101820;
	text-decoration: none !important;
	outline: none !important;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

h1,
h2,
h3,

h5,
h6 {
	letter-spacing: 0;
	font-weight: normal;
	position: relative;
	padding: 0 0 10px 0;
	font-weight: normal;
	line-height: 120% !important;
	margin: 0
}

h1 {
	font-size: 24px;
  font-family: var(--font-medium);
}

h2 {
  font-family: var(--font-medium);
	font-size: 22px
}

h3 {
  font-family: var(--font-medium);
	font-size: 18px;
}

h4 {
  font-family: var(--font-medium);
	font-size: 21px;
	margin-top: 25px;
}

h5 {
  font-family: var(--font-medium);
	font-size: 14px
}

h6 {
  font-family: var(--font-medium);
	font-size: 13px
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	text-decoration: none!important;
	opacity: 1;
  color: #ff0000;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
	opacity: .8
}

a {
	color: #101820;
	text-decoration: none;
	outline: none;
}

.dark_bg {
	background: #101820;
}

.padding_left_right {
	padding-left: 30px;
	padding-right: 30px;
}

a,
.btn {
	text-decoration: none !important;
	outline: none !important;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.btn-custom {
	margin-top: 20px;
	background-color: transparent !important;
	border: 2px solid #ffffff;
	padding: 12px 40px;
	font-size: 16px;
}

.lead {
	font-size: 18px;
	line-height: 30px;
	color: #ffffff;
	margin: 0;
	padding: 0;
}

blockquote {
	margin: 20px 0 20px;
	padding: 30px;
}

ul,
li,
ol {
	list-style: none;
	margin: 0px;
	padding: 0px;
  font-family: var(--font-medium);
}


button:focus {
	outline: none;
}

.form-control::-moz-placeholder {
	color: #ffffff;
	opacity: 1;
}


/*------------------------------------------------------------------ 
   LOADER 
-------------------------------------------------------------------*/



.loader {
    display: block;
    flex-wrap: wrap;
    width: 250px;
    height: auto;

}

.loader img {
    width: 100%;
    height: auto;
}



.box:nth-child(1) {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.box:nth-child(2) {
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
}

.box:nth-child(3) {
	-webkit-animation-delay: -3s;
	animation-delay: -3s;
}

@-webkit-keyframes move {
	0%,
	100% {
		-webkit-transform: none;
		transform: none;
	}
	12.5% {
		-webkit-transform: translate(40px, 0);
		transform: translate(40px, 0);
	}
	25% {
		-webkit-transform: translate(80px, 0);
		transform: translate(80px, 0);
	}
	37.5% {
		-webkit-transform: translate(80px, 40px);
		transform: translate(80px, 40px);
	}
	50% {
		-webkit-transform: translate(80px, 40px);
		transform: translate(80px, 40px);
	}
	62.5% {
		-webkit-transform: translate(30px, 60px);
		transform: translate(30px, 60px);
	}
	75% {
		-webkit-transform: translate(0, 80px);
		transform: translate(0, 40px);
	}
	87.5% {
		-webkit-transform: translate(0, 40px);
		transform: translate(0, 40px);
	}
}

@keyframes move {
	0%,
	100% {
		-webkit-transform: none;
		transform: none;
	}
	12.5% {
		-webkit-transform: translate(40px, 0);
		transform: translate(40px, 0);
	}
	25% {
		-webkit-transform: translate(80px, 0);
		transform: translate(80px, 0);
	}
	37.5% {
		-webkit-transform: translate(80px, 40px);
		transform: translate(80px, 40px);
	}
	50% {
		-webkit-transform: translate(80px, 80px);
		transform: translate(80px, 80px);
	}
	62.5% {
		-webkit-transform: translate(40px, 80px);
		transform: translate(40px, 80px);
	}
	75% {
		-webkit-transform: translate(0, 80px);
		transform: translate(0, 80px);
	}
	87.5% {
		-webkit-transform: translate(0, 40px);
		transform: translate(0, 40px);
	}
}

#scroll-to-top {
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 10px;
	right: 20px;
	display: none;
	font-size: 25px;
	border-radius: 0;
	transition: .2s;
	letter-spacing: 1px;
	text-align: center;
	line-height: 40px;
	color: #ffffff;
	font-weight: 900;
	border-radius: 100%;
}


/*------------------------------------------------------------------ HEADER -------------------------------------------------------------------*/

.top-header .navbar {
	padding: 5px 0px;
}

.top-header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    margin: 0 auto;
    z-index: 20;
    background-position: left;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: auto 100%;
}

.top-header .navbar .navbar-collapse ul li a {
	text-transform: uppercase;
	font-size: 15px;
	padding: 7px 20px;
	position: relative;
	font-weight: 400;
	overflow: hidden;
	color: #000;
}

a.navbar-brand {
	left: 35px;
	position: relative;
}



.top-header .navbar .navbar-collapse ul li a:hover,
.top-header .navbar .navbar-collapse ul li a:focus {
	background: transparent;
	color: #101820;
}

.search_icon.nav-link img {
	width: 25px;
}

.top-header .navbar .navbar-collapse ul li {
	margin: 0 2px;
}

.top-header.fixed-menu {
	width: 100%;
	position: fixed;
	box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	background: #fff;
	z-index: 20;
}

.navbar-toggler {
	border: 2px solid #f43866;
	border-radius: 0;
	margin: 15px 15px;
	padding: 8px 8px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.navbar-toggler span {
	background: #f43866;
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	margin-top: 0px;
	margin-top: 0px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.navbar-toggler span+span {
	margin-top: 5px;
}

.navbar-toggler:hover {
	border: 2px solid #f43866;
}

.navbar-toggler:hover span {
	background: #f43866;
}


/* search bar */

.search-box {
	position: absolute;
	top: 0;
	right: 50px;
	height: auto;
	padding: 0;
	margin-top: 29px;
}

.search-box:hover .search-txt {
	width: 240px;
	padding: 0 10px;
}

.top-header #navbar-wd {
	padding-right: 100px;
}

.search-btn {
	float: right;
	width: 41px;
	height: 41px;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #111;
}

.search-txt {
	border: none;
	outline: none;
	float: left;
	padding: 0;
	color: #000;
	font-size: 14px;
	line-height: 41px;
	width: 0;
	transition: width 400ms;
	background: #fff;
	padding: 0;
	font-weight: 300;
}




.theme_color {  /*파란바탕, 노란글자*/
  background-image: linear-gradient(to right bottom , #ffbb00    50%, #ff6600  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(2px 2px 2px #2e20036b); /*그림자*/
  font-family: var(--font-bold);
}

.theme_color2 {  /*노란바탕, 파란글자*/
  background-image: linear-gradient(to right bottom , #090086  50%, #050047   );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(2px 2px 2px #0700246b); /*그림자*/
  font-family: var(--font-bold);
}

.theme_color3 {  /*흰색글자*/
  background-image: linear-gradient(to right bottom , #f5f2ff  50%, #9984c9 );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(2px 2px 2px #2e20036b); /*그림자*/
  font-family: var(--font-bold);
}

.theme_color4 {/*빨간 글자*/
  background-image: linear-gradient(to right bottom , #ff0000  30%, #ff8800 );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: var(--font-bold);
}


/*------------------------------------------------------------------ Banner -------------------------------------------------------------------*/

.home-slider {
	position: relative;
	height: 540px;
}

.lbox-caption {
	display: table;
	height: 100% !important;
	width: 100% !important;
	left: 0 !important;
}

.lbox-caption {
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	z-index: 10;
}

.lbox-details {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	position: absolute;
	top: 0px;
	left: 0;
	right: 0;
	height: 100%;
	padding: 22% 0%;
}

.lbox-details::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.lbox-details h1 {
	font-size: 54px;
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 600;
	position: relative;
	z-index: 3;
}

.lbox-details h2 {
	font-size: 48px;
	color: #ffffff;
	font-weight: 300;
	position: relative;
	z-index: 3;
}

.lbox-details p {
	color: #ffffff;
	position: relative;
	z-index: 3;
}

.lbox-details p strong {
	color: #fffb00;
	font-size: 40px;
	font-family: 'Montserrat', sans-serif;
}

.lbox-details a.btn {
	background: #ffffff;
	padding: 10px 20px;
	font-size: 20px;
	text-transform: capitalize;
	color: #3a4149;
	border-radius: 0px;
	position: relative;
	z-index: 3;
}

.lbox-details a.btn:hover {
	background: #fffb00;
}

.pogoSlider-nav-btn {
	background: #000;
}

.pogoSlider-nav-btn--selected {
	background: #101820 !important;
}

.pogoSlider--navBottom .pogoSlider-nav {
	bottom: 20px;
}

.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn {
	display: none;
}

.img-responsive {
	max-width: 100%;
}

.slide_text h3 {
    font-size: 50px;
    font-weight: 700;
    padding: 0;
    line-height: 45px !important;
    text-transform: uppercase;
}

.slide_text h4 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.slide_text p {
    color: var(--primary-dark, #101820);
    font-size: 20px;
    font-weight: 300;
    padding-top: 0;
    line-height: normal;
    margin-bottom: 0;
}

.contact_bt {
    width: 180px;
    height: 50px;
    background: var(--primary-dark, #101820);
    color: var(--white, #fff);
    float: left;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 50px;
    border-radius: var(--radius-small);
}

.contact_bt:hover,
.contact_bt:focus {
    color: var(--white, #fff);
}

.dark_bg .contact_bt {
    margin-top: 30px;
}

.slide_text {
    margin-top: 220px;
    padding-left: 80px;
}

/*------------------------------------------------------------------ About -------------------------------------------------------------------*/


.tooltip-1 {
	display: inline-block;
	position: relative;
	color: #fffb00;
	opacity: 1;
}



.tooltip__wave {
	width: 30%;
	height: 20px;
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0px;
	margin: 0 auto;
	overflow: hidden;
}

.tooltip__wave span {
	position: absolute;
	left: -100%;
	width: 200%;
	height: 100%;
	background: url(../images/wave.svg) repeat-x center center;
	background-size: 50% auto;
}

.about-box {
	padding: 70px 0px;
}


.title-box {
	text-align: center;
	margin-bottom: 30px;
}


.title-box h2 {
	font-size: 75px;
  font-family: var(--font-medium);
  color: var(--primary-red, #e91327);
	font-weight: 400;
	padding: 0;
}

.title-box h2 span {
	color: #fffb00;
	text-decoration: underline;
}

.about-main-info h2 span {
	color: #fffb00;
	text-decoration: underline;
}

.about-main-info {
	margin-bottom: 30px;
}



.about-img {
  position: relative;
  height: 100%;
}
.about-img img {
	border-radius: 50px;
  box-shadow: -5px -5px 35px -5px #003cff, 2px 2px 35px 5px #ff00ea; 

}


.about-m ul {
	display: block;
	text-align: center;
	margin-top: 20px;
  margin-right:20px;
  margin-bottom:20px;
  margin-left:20px;
}

.about-m ul li {
	display: inline-block;
	text-align: center;
}

.about-m ul li a {
	background: #000000;
	color: #ffffff;
	width: 38px;
	height: 38px;
	text-align: center;
	line-height: 38px;
	display: block;
	border-radius: 50px;
	margin: 0px 5px;
}

.about-m ul li a:hover {
	background: #333333;
	color: #ffffff;
}

.about-main-info h2 {
	font-size: 45px;
  color: var(--primary-red, #e91327);
	font-weight: 600;
}

.about-main-info a {
	border-radius: 2px;
	transition: .2s;
	padding: 10px 25px;
  background: var(--primary-red, #e91327);
	color: #ffffff;
	font-weight: 300;
	font-size: 15px;
	border-radius: 0 15px;
	margin-top: 10px;
}

.about-main-info a:hover {
	color: #ffffff;
}

.about-main-info div.full>img {
	height: 500px;
}

.hvr-radial-out {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	overflow: hidden;
	background: #070500;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	color: #fff;

	width: 165px;
	height: 45px;
	text-align: center;
	line-height: 45px;
}

.hvr-radial-out::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f43866;
	border-radius: 100%;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-radial-out:hover::before,
.hvr-radial-out:focus::before,
.hvr-radial-out:active::before {
	-webkit-transform: scale(2);
	transform: scale(2);
}

a.hvr-radial-out:hover,
a.hvr-radial-out:focus {
	color: #fff;
}


/*------------------------------------------------------------------ Services -------------------------------------------------------------------*/
.service_blog {
  float: left;
  width: 100%;
  background-image: #040036   ;
  box-shadow: -5px -5px 20px -5px #a9a7ff   , 2px 2px 20px 5px #010014   ; 
  padding: 30px;
  margin-top: 40px;
  transition: ease all 0.3s;
  border-radius: 25px 25px 25px 25px;
}

.service_blog:hover, .service_blog:focus {

  box-shadow: -5px -5px 20px -5px #003cff, 2px 2px 20px 5px #ff00ea; 
  transform: scale(1.05);
}


.service_blog h4 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    border-bottom: solid #222 2px;
    color: #222;
    margin-bottom: 15px;
}


.service_blog p {
  font-family: var(--font-light);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--white, #ffffff);
  margin-bottom: 15px;
}


.effect-service {
	position: relative;
	height: auto;
	text-align: center;
	cursor: pointer;
	border: 8px solid #eee;
	margin-bottom: 30px;
}

figure.effect-service {
	background: -webkit-linear-gradient(-45deg, #EC65B7 0%, #05E0D8 100%);
	background: linear-gradient(-45deg, #EC65B7 0%, #05E0D8 100%);
}

figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

figure.effect-service img {
	opacity: 0.85;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure figcaption,
.grid figure figcaption>a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

figure figcaption {
	padding: 10px;
	color: #fff;
	text-transform: capitalize;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-service h2 {
	padding: 20px;
	width: 50%;
	height: 50%;
	text-align: left;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(10px, 10px, 0);
	transform: translate3d(10px, 10px, 0);
}

figure.effect-service h2 {
  background: var(--primary-red, #e91327);
	padding: 13px;
	width: 94%;
	height: 58px;
	border: 0;
	margin: 0;
	font-weight: 200;
	font-size: 34px;
	color: #ffffff;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

figure.effect-service p {
	padding: 15px;
	width: 100%;
	height: 80%;
	font-size: 14px;
	border: 2px solid #fff;
	margin: 0;
	font-weight: 300;
	display: none;
}

figure.effect-service p {
	float: right;
	padding: 20px;
	text-align: left;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}

figure figcaption>a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

figure.effect-service:hover img {
	opacity: 0.6;
}

figure.effect-service:hover p {
	opacity: 1;
}

figure.effect-service:hover {
	border: 8px solid #e91327;
}





/*------------------------------------------------------------------ Gallery -------------------------------------------------------------------*/

.gallery-box {
	padding: 70px 0px 120px;
}



.gallery-box ul li {
	position: relative;
	width: 31.33%;
	margin: 0 1% 20px !important;
	padding: 0px;
	float: left;
	border: none;
	overflow: hidden;
	margin-bottom: 0px;
}

.gallery-box ul li a {
	position: relative;
	display: inline-block;
	border: 4px solid #ffffff;
}

.gallery-box ul li a::before {
	content: "";
	position: absolute;
	background: rgba(233, 19, 39, 0.9);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 100%;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.gallery-box ul li a .overlay {
	background: #fffb00;
	color: #3a4149;
	font-size: 22px;
	text-align: center;
	width: 38px;
	height: 38px;
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.gallery-box ul li a:hover::before {
	top: 0;
	opacity: 1;
}

.gallery-box ul li a:hover .overlay {
	opacity: 1;
}

.gallery-box ul li a:hover {
	border: 4px solid #e91327;
}

.gallery-box ul li a .overlay {
	background: #fff;
  color: var(--primary-red, #e91327);
}


/*------------------------------------------------------------------ Properties -------------------------------------------------------------------*/

.properties-box {
	padding: 70px 0px;
	background-color: #f2f3f5;
}

.single-team-member {
	position: relative;
	margin-top: 30px;
	border: 10px solid #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.filter-button-group {
	margin-bottom: 30px;
}

.filter-button-group button {
	border-radius: 2px;
	transition: .2s;
	letter-spacing: 1px;
	padding: 10px 18px;
	background: #fffb00;
	color: #ffffff;
	cursor: pointer;
	border: none;
}

.filter-button-group button:hover {
	color: #ffffff;
}

.properties-single {
	margin-bottom: 30px;
	background: #ffffff;
	transition: all 0.5s ease 0s;
}

.fuit {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
}

.fuit a {
	background: #fffb00;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	color: #ffffff;
}

.for-sal {
	background: #3a4149;
	position: absolute;
	top: 10px;
	right: 10px;
	color: #ffffff;
	border-radius: 2px;
	padding: 5px 10px;
	font-size: 13px;
	z-index: 10;
}

.pro-price {
	background: #fffb00;
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: #ffffff;
	border-radius: 2px;
	padding: 5px 10px;
	font-size: 13px;
	z-index: 10;
}

.properties-img {
	position: relative;
	overflow: hidden;
}

.properties-img img {
	-webkit-transition: all 1.5s;
	-moz-transition: all 1.5s;
	-o-transition: all 1.5s;
	-ms-transition: all 1.5s;
	transition: all 1.5s;
	transition-delay: 0s;
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	-o-transition-delay: .5s;
	-ms-transition-delay: .5s;
	transition-delay: .5s;
}

.properties-single:hover .properties-img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.hover-box {
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	filter: alpha(opacity=0);
	opacity: 0;
	position: absolute;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	-webkit-transition: all .9s ease;
	-moz-transition: all .9s ease;
	-o-transition: all .9s ease;
	-ms-transition: all .9s ease;
	transition: all .9s ease;
	transition-delay: 0s;
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	-o-transition-delay: .5s;
	-ms-transition-delay: .5s;
	transition-delay: .5s;
}

.properties-single:hover .hover-box {
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	filter: alpha(opacity=100);
	opacity: 1;
	top: 0;
}

.properties-dit {
	padding: 15px;
}

.properties-dit h3 {
	font-size: 20px;
}

.properties-dit ul {
	padding: 10px 0px;
}

.properties-dit ul li {
	float: left;
	width: 33.33%;
	font-size: 12px;
	line-height: 30px;
}

.properties-dit ul li i {
	float: right;
	padding: 7px 10px;
	font-size: 15px;
	color: #fffb00;
}

.properties-dit p {
	margin: 0px;
}

.properties-dit p i {
	padding-right: 10px;
}

/*------------------------------------------------------------------ counter ----------------------------------------------------------------*/

h2.timer.count-title.count-number {
    color: #f43866;
    font-size: 60px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 60px;
}

p.count-text {
    color: #f43866;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    border-bottom: solid #fff 5px;
    padding-bottom: 10px;
    width: 50%;
}

/*------------------------------------------------------------------ Team -------------------------------------------------------------------*/

.team-box {
	padding: 70px 0px;
}

.team_member_img img {
    border: solid #ece9e2 20px;
    border-radius: 100%;
    width: 300px;
    height: 300px;
}

#team_slider h3 {
    margin-bottom: 10px;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    padding: 0;
    margin-top: 25px;
}

#team_slider p {
    padding: 0 43px;
}

.team_member_img {
    position: relative;
}

.team_member_img .social_icon_team {
    position: absolute;
    top: 19px;
    left: 42px;
    width: 76%;
    height: 87%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: rgba(244,56,102,0.7);
	opacity:0;
	transition: ease all 0.2s;
}

.team_member_img:hover .social_icon_team,
.team_member_img:focus .social_icon_team {
	opacity: 1;
}

.our-team {
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.our-team:before,
.our-team:after {
	content: "";
	width: 130px;
	height: 150px;
	background: #fffb00;
	position: absolute;
	z-index: -1;
}

.our-team:before {
	bottom: -20px;
	left: 0;
}

.our-team:after {
	top: -20px;
	right: 0;
}

.our-team .pic {
	margin: 8px;
	position: relative;
	border: 3px solid #fffb00;
	transition: all 0.5s ease 0s;
}

.our-team:hover .pic {
	border-color: #3a4149;
}

.our-team .pic:after {
	content: "";
	width: 100%;
	height: 0;
	background: #fffb00;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform-origin: 0 0 0;
	transition: all 0.5s ease 0s;
}

.our-team:hover .pic:after {
	height: 100%;
	opacity: 0.85;
}

.our-team img {
	width: 100%;
	height: auto;
}

.our-team .team-content {
	width: 100%;
	position: absolute;
	top: -50%;
	left: 0;
	transition: all 0.5s ease 0.2s;
}

.our-team:hover .team-content {
	top: 38%;
}

.our-team .title {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-transform: capitalize;
	margin: 0px;
}

.our-team .post {
	font-size: 14px;
	color: #fff;
	line-height: 26px;
	text-transform: capitalize;
}

.our-team .social {
	padding: 0;
	margin: 40px 0 0 0;
	list-style: none;
}

.our-team .social li {
	display: inline-block;
}

.our-team .social li a {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50%;
	border: 1px solid #fff;
	font-size: 18px;
	color: #fff;
	margin: 0 7px;
	transition: all 0.5s ease 0s;
}

.our-team .social li a:hover {
	background: #fff;
	color: #00bed3;
}

@media only screen and (max-width: 990px) {
	.our-team {
		margin-bottom: 30px;
	}
}

/*------------------------------------------------------------------ Blog -------------------------------------------------------------------*/

.blog-box {
	padding: 70px 0px;
	background-color: #f2f3f5;
}

.blog-inner {
	background: #ffffff;
	text-align: center;
	margin-bottom: 30px;
	border: 10px solid #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.blog-img {
	margin-bottom: 15px;
	overflow: hidden;
}

.blog-img img {
	transition: all 0.9s ease 0s;
}

.blog-inner:hover .blog-img img {
	-moz-transform: scale(1.5) rotate(-10deg);
	-webkit-transform: scale(1.5) rotate(-10deg);
	-ms-transform: scale(1.5) rotate(-10deg);
	-o-transform: scale(1.5) rotate(-10deg);
	transform: scale(1.5) rotate(-10deg);
}

.blog-inner a {
	border-radius: 2px;
	transition: .2s;
	letter-spacing: 1px;
	padding: 10px 18px;
	background: #fffb00;
	color: #ffffff;
}

.blog-inner a:hover {
	color: #ffffff;
}


/*------------------------------------------------------------------ Contact -------------------------------------------------------------------*/

.contact-box {
	padding: 70px 0px;
}

.left-contact h2 {
	font-size: 22px;
	font-weight: 500;
	padding-bottom: 30px;
}

.cont-line {
	overflow: hidden;
	margin-bottom: 30px;
}

.icon-b {
	width: 55px;
	height: 55px;
	text-align: center;
	line-height: 55px;
	font-size: 25px;
	margin-right: 15px;
	color: #fff;
	border-radius: 100%;
	background: #101820;
}

.dit-right h4 {
	font-size: 16px;
	color: #3a4149;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

.dit-right p {
	font-size: 14px;
	margin-top: 0;
}

.dit-right a {
	font-size: 14px;
	color: #3a4149;
	font-weight: 300;
	line-height: normal;
}

.dit-right a:hover {
	color: #fffb00;
}



.contact-block .form-group .form-control {
	background: #333;
	height: 48px;
	font-size: 14px;
	border: 0;
	padding: 5px 20px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	font-weight: 200;
	letter-spacing: 0px;
}

.submit-button .btn-common {
	background-color: #101820;
	height: 45px;
	line-height: 45px;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	padding: 0 20px;
	border: 0;
	outline: 0;
	text-transform: uppercase;
	border-radius: 0px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 0;
	opacity: 1;
}

.contact-block .form-group textarea.form-control {
	height: 150px;
	padding-top: 15px;
}

.submit-button .btn-common:hover {
	background-color: #111;
	opacity: 1;
}

.custom-select {
	height: 45px;
	font-size: 16px;
}

select.form-control:not([size]):not([multiple]) {
	height: calc(45px + 2px);
}

.help-block ul li {
	color: red;
}

.footer-box {
    background: #1f1f1f;
    padding: 50px 0;
}

.footer-box .footer-company-name {
	text-align: center;
	margin: 0px;
	color: #333;
	font-size: 13px;
	font-weight: 400;
	padding-top: 2px;
}

.footer-box .footer-company-name a {
	color: #333;
	text-decoration: underline !important;
}

.footer-box .footer-company-name a:hover {
  color: var(--primary-red, #e91327);
}


/*------------------------------------------------------------------ Subscribe -------------------------------------------------------------------*/

.subscribe-box {
	padding: 70px 0px;
  background: var(--primary-red, #e91327);
}

.subscribe-inner {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}

.subscribe-inner h2 {
	font-size: 80px;
	font-weight: 600;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	padding: 0;
}

.subscribe-inner p {
	color: #cccccc;
}

.subscribe-inner .form-group .form-control-1 {
	width: 100%;
	padding: 12px 15px;
	border-radius: 0px;
	border: none;
}

.subscribe-inner .form-group button {
	border-radius: 0;
	transition: .2s;
	padding: 10px 18px;
	background: #222;
	color: #ffffff;
	border: none;
	cursor: pointer;
	font-weight: 300;
	letter-spacing: 0.1px;
	border-radius: 0 15px 0 15px;
}

.about-main-info h2 img {
	margin-top: -10px;
}

p {
	margin-top: 5px;
	margin-bottom: 1rem;
	font-size: 16px;
	font-weight: 300;
	line-height: normal;
}

.text_align_center {
	text-align: center;
}

.red_bg {
  background: var(--primary-red, #e91327);
}

.white_fonts p,
.white_fonts h1,
.white_fonts h2,
.white_fonts h3,
.white_fonts h4,
.white_fonts h5,
.white_fonts h6,
.white_fonts ul,
.white_fonts ul li,
.white_fonts ul li a,
.white_fonts ul i,
.white_fonts .post_info i,
.white_fonts div,
.white_fonts a.read_more {
	color: #fff !important;
}

.red_bg .about-main-info a {
	background: #fff;
  color: var(--primary-red, #e91327);
}

.testimonial_img {
	text-align: center;
	width: 100%;
	display: flex;
	justify-content: center;
}

.mfp-figure figure .mfp-bottom-bar {
	display: none;
}

#client_slider .carousel-indicators {
	bottom: -45px;
}

#client_slider .carousel-indicators li {
	height: 15px;
	width: 15px;
	border-radius: 100%;
	background: #999;
}

#client_slider .carousel-indicators li.active {
  background: var(--primary-red, #e91327);
}

.layout_padding {
	padding-top: 75px;
	padding-bottom: 75px;
}

.heading_main h1 {
    font-size: 40px;
    letter-spacing: -0.5px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    font-family: var(--font-medium);
    text-transform: uppercase;
}

.heading_main h2 {
  font-size: 40px;
  letter-spacing: -0.5px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  font-family: var(--font-medium);
  text-transform: uppercase;
}

.heading_main p.large {
  font-family: var(--font-medium);
    font-size: 20px;
    color: #e7f5fb;
    position: relative;
    padding: 0;
    font-weight: 500;
    margin: 0;
}
.heading_main p.large2 {
  font-family: var(--font-medium);
  font-size: 20px;
  color: #00001b;
  position: relative;
  padding: 0;
  font-weight: 500;
  margin: 0;
}


.heading_main p {
  font-family: var(--font-medium);
}

.heading_main p.small_tag {
  font-family: var(--font-medium);
    font-size: 18px;
    text-transform: uppercase;
    line-height: normal;
    font-weight: 600;
    margin: 0;
}

.center {
	display: flex;
	justify-content: center;
}



.padding_0 {
	padding: 0;
}

.full {
	float: left;
	width: 100%;
}


.heading_main {
  float: left;
  display: flex;
}


@media (max-width: 768px) {
  .heading_main {
  flex-direction: column;
  gap: 50px;
  }
  }

.theme_bg {
  background: var(--primary-blue, #07528d);
}

h3.small_heading {
	font-size: 35px;
	font-weight: 600;
	line-height: normal;
}

.margin-top_20 {
	margin-top: 20px;
}

.margin-top_30 {
	margin-top: 30px;
}

.margin-bottom_30 {
	margin-bottom: 30px;
}

.carousel a.carousel-control-prev {
    background: #f43866;
    opacity: 1;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    top: 40%;
    left: -80px;
}

.carousel a.carousel-control-next {
	background: #f43866;
	opacity: 1;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	top: 40%;
	right: -80px;
}

#demo {
	margin-bottom: 20px;
}

ul.social_icon li a {
    width: 35px;
    height: 35px;
    background: var(--white, #fff);
    float: left;
    border-radius: 100%;
    text-align: center;
    font-size: 16px;
}

ul.social_icon li i {
	color: #000 !important;
	line-height: 35px;
}

ul.social_icon li {
	float: left;
	margin: 0 5px;
}

.inner_page .top-header {

    position: relative;

}

.inner_page .inner_page_header {

    background: #1f1f1f;
    padding: 40px 0;

}

.inner_page .inner_page_header h3 {

    color: var(--white, #fff);
    margin: 0;
    padding: 0;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;

}

.footer_bottom {
    background: #191919;
    padding: 15px 0;
}

.footer_bottom p.crp {
	float: left;
	margin: 0;
	color: #8d8d8c;
	font-size: 15px;
}

.footer_menu ul {
    list-style: none;
    width: 100%;
    float: left;
}

.footer_blog li a {
    font-size: 14px;
    font-weight: 300 !important;
    color: #acaba9 !important;
}

.recent_post_footer p {
    color: #acaba9 !important;
    font-size: 13px;
}

.footer_blog h3 {
    margin-bottom: 3px;
}

.newsletter_form input {
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    border-radius: var(--radius-small);
    margin-bottom: 3px;
}

.newsletter_form button {
    background: #f43866;
    color: var(--white, #fff);
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 25px;
    border-radius: var(--radius-small);
    cursor: pointer;
}

footer.footer-box p {
    font-size: 14px;
}

.footer_blog {
    float: left;
    width: 50%;
}

ul.bottom_menu li a {
	color: #ffffff;
}

ul.bottom_menu li {
	float: left;
	font-size: 14px;
	font-weight: 300;
	margin-left: 20px;
}

.bottom_menu {
	float: right;
}

.innerpage_banner {
	background-color: #f9f9f9;
	min-height: 150px;
	text-align: center;
	background-image: url("../images/slider-01.jpg");
	background-size: cover;
	background-position: center center;
}

.innerpage_banner h2 {
	margin: 55px 0 0;
	padding: 0;
	font-size: 30px;
	text-align: left;
	font-weight: 500;
	position: relative;
}

#demo .img-responsive {
	width: 100%;
}

.top-header.fixed-menu .search-btn {
	background: #111;
}

.top-header.fixed-menu .search-btn img {
    width: 25px;
}

.top-header.fixed-menu .search-box:hover .search-txt {
	width: 240px;
	padding: 0 10px;
	border: solid #000 1px;
	height: 41px;
}

.top-header.fixed-menu ul li:hover a,
.top-header.fixed-menu ul li:focus a {
	color: #0892fd !important;
}


  
/*---------------------
  Latest News section
-----------------------*/

.latest-news-section {
  font-size: 50px;
  font-family: var(--font-bold);
	overflow: hidden;
	display: block;
	clear: both;
	background: linear-gradient(to right , #fffb00  30%, #ffa600  70%);
  padding: 12px 0 0 0; /* 상단 24px, 오른쪽 0, 하단 0, 왼쪽 0 */
	position: relative;

}



.news-ticker-contant .nt-item {
	margin-right: 350px;
	color: #000000;
	display: inline-block;
  font-family: var(--font-bold);
}

.news-ticker-contant .nt-item span {
	margin-right: 35px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 500;
	color: #101010;
	padding: 4px 20px;
  font-family: var(--font-medium);
}



/*====================================================
                   SERVICE-HOME
======================================================*/

#service-h {
  padding: 120px 0 50px;
  background: var(--white, #ffffff);     
  font-family: var(--font-medium);
}

.service-h-desc {
  padding: 50px 10px 90px 60px;
}
.service-h-desc>h3 {

  color: var(--primary-dark, #101820);
  font-weight: 700;
  font-family: var(--font-medium);
}
.service-h-desc>h6 {
  color: var(--primary-dark, #101820);
  font-weight: 700;
  font-family: var(--font-medium);
}

.service-h-desc>p {
  color: var(--primary-dark, #101820);
  font-weight: 700;
  font-family: var(--font-medium);
}
.service-himg {
  background: var(--primary-dark, #101820);
  height: 475px;
  margin-top: 30px;
  width: 70%;
  font-family: var(--font-medium);
}

.service-himg iframe {
  height: 370px;
  width: 130%;
  margin: 50px -60px 70px 65px;
  box-shadow: 3px 3px 8px 1px #fffb00;
  border: 1px solid #fffb00;
}

.service-h-tab {
  position: relative;
  margin: 20px 0;
}

.service-h-tab .nav-tabs>a {
  border-radius: 0;
  width: 190px;
  text-align: center;
  height: 55px;
  line-height: 40px;
  border: 1px solid #fffb00;
}

.service-h-tab .nav-tabs>a.active {
  color: var(--primary-dark, #101820);
  border: 1px solid #fffb00;
  background: var(--primary-yellow, #fffb00);
}

.service-h-tab .tab-content .tab-pane {
  padding: 20px 20px 0px 10px;
}



@media (min-width: 768px) and (max-width: 1199px) {
  .service-himg {
      background: var(--primary-yellow, #fffb00);
      height: 475px;
      margin: auto;
  }

  #service-h .col-md-6 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%!important;
  }

  .service-himg iframe {
      height: 370px;
      width: 100%;
      margin: 50px auto 70px auto;
      box-shadow: 3px 3px 8px 1px #505050;
      border: 1px solid #fffb00;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  .service-himg iframe {
      height: 370px;
      width: 100%;
      box-shadow: 3px 3px 8px 1px #505050;
      border: 1px solid #fffb00;
  }
}

@media (max-width: 767px) {

  #service-h {
      padding: 30px 0 0px;
  }

  .service-himg {
      background: var(--primary-yellow, #fffb00);
      height: 315px;
      width: 100%;
  }
  .service-himg iframe {
      height: 270px;
      width: 100%;
      margin: 50px auto 70px auto;
      box-shadow: 3px 3px 8px 1px #505050;
      border: 1px solid #fffb00;
  }

  .service-h-tab .nav-tabs>a {
      border-radius: 0;
      width: 100%;
      text-align: center;
      height: 55px;
      line-height: 40px;
      border: 1px solid #ddd;
  }
}

@media (max-width: 420px) {
  .service-himg iframe {
      height: 200px;
      width: 100%;
      margin: 50px auto 70px auto;
      box-shadow: 3px 3px 8px 1px #505050;
      border: 1px solid #fffb00;
  }

  .service-h-desc {
      padding: 50px 10px 90px 10px;
  }
}



/*------------------------------------------------------------------ 21-06-24 -------------------------------------------------------------------*/




.wrap .chat {
  display: flex;
  align-items: flex-start;
  padding: 25px 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wrap .chat:hover {
  transform: translateY(-5px);
  filter: none;
}

.wrap .chat .textbox {
  position: relative;
  display: inline-block;
  max-width: calc(100% - 80px);
  padding: 20px 24px;
  margin-top: 2px;
  font-family: 'GmarketSans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.wrap .chat .textbox::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.wrap .ch1 .textbox {
  margin-left: 20px;
  background: rgba(64, 47, 181, 0.12);
  border: 1px solid rgba(64, 47, 181, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border-top-left-radius: 4px;
  color: #fff !important;
  filter: none;
}

.wrap .ch1 .textbox h3 {
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.wrap .ch1 .textbox::before {
  left: -8px;
  top: 15px;
  border-width: 0 8px 8px 0;
  border-color: transparent rgba(64, 47, 181, 0.3) transparent transparent;
}

.wrap .ch2 {
  flex-direction: row-reverse;
}

.wrap .ch2 .textbox {
  margin-right: 20px;
  background: rgba(207, 48, 170, 0.08);
  border: 1px solid rgba(207, 48, 170, 0.25);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border-top-right-radius: 4px;
  color: rgba(255, 255, 255, 0.9) !important;
  filter: none;
}

.wrap .ch2 .textbox::before {
  right: -8px;
  top: 15px;
  border-width: 8px 8px 0 0;
  border-color: rgba(207, 48, 170, 0.25) transparent transparent transparent;
}

.wrap .chat .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.wrap .ch1 .icon {
  background: rgba(64, 47, 181, 0.2);
  border: 1.5px solid rgba(64, 47, 181, 0.5);
  color: #a299d8 !important;
}

.wrap .ch2 .icon {
  background: rgba(207, 48, 170, 0.2);
  border: 1.5px solid rgba(207, 48, 170, 0.5);
  color: #dfa2da !important;
}

.wrap .chat:hover .textbox {
  box-shadow: 0 12px 40px 0 rgba(162, 0, 255, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.wrap .ch1:hover .textbox {
  border-color: rgba(64, 47, 181, 0.6);
  background: rgba(64, 47, 181, 0.18);
}

.wrap .ch2:hover .textbox {
  border-color: rgba(207, 48, 170, 0.45);
  background: rgba(207, 48, 170, 0.14);
}






/* -------------------2025-04-18-------------------------------------- */


/* 최신 글 섹션의 위아래 간격 */
.latest-posts-section {
  margin-top: 150px;
  margin-bottom: 50px;
}


/* 카드 스타일 */
.latest-posts-section .card {
  background-image: linear-gradient(to right  , #060056 20%, #03002b 80%);
  border: none;
  border-radius: 20px;
  box-shadow: 5px 5px 15px 5px #000000; 
  transition: transform 0.3s;
  align-items: center;
}




.latest-posts-section .card:hover {
  transform: translateY(-5px);
  transform: scale(1.06); /* 10% 확대 */
  box-shadow: -5px -5px 20px -5px #003cff, 2px 2px 20px 5px #ff00ea; 
}

/* 이미지 스타일 */
.latest-posts-section .card-img-top {
  margin-top: 20px;
  width: 100%;    /* 부모 너비를 꽉 채움 */
  height: 200px;   /* 비율 유지 */
  object-fit: cover;
  transition: transform 0.3s ease; /* 부드러운 줌인 애니메이션 */

}


/* 이미지 컨테이너에 오버플로우 숨김 */
.latest-posts-section .card-img-container {
  overflow: hidden; /* 확대 시 이미지 잘림 방지 */
  position: relative;
}

/* 카드 타이틀 스타일 */
.latest-posts-section .card-title a {
  color: var(--white, #ffffff);
  text-decoration: none;
  font-size: 1.2rem;

}


/* 카드 타이틀 스타일 */
.latest-posts-section .card-title p {
  color: #ffee00;
  text-decoration: none;
  font-size: 1rem;
}

.latest-posts-section .card-title a:hover {
  color: #ffbb00; /* 테마 색상과 일치 */
}

/* 모바일에서 중앙 정렬 */
.latest-posts-section .col-12 {
  display: flex;
  justify-content: center; /* 수평 중앙 정렬 */
  margin-bottom: 24px; /* 모바일에서 카드 간 위아래 간격 */
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .latest-posts-section {
    
    margin-top: 100px;
    margin-bottom: 30px;
  }
  .latest-posts-section .row {
    --bs-gutter-x: 20px; /* 모바일에서 간격 축소 */
    --bs-gutter-y: 30px; /* 모바일에서 위아래 간격 축소 */
  }
  .latest-posts-section .col-md-4 {
    margin-left: 0; /* 모바일에서 추가 마진 제거 */
    margin-right: 0;
  }
  .latest-posts-section .card {
    max-width: 80%; /* 모바일에서 너비 100% */
    min-height: 300px;
    margin: 0 auto; /* 중앙 정렬 */
  }
  .latest-posts-section .card-img-top {
    height: 150px;
  }
  .latest-posts-section .card-body {
    min-height: 100px;
  }
  .latest-posts-section .card-title a {
    font-size: 1rem;
  }
}



.btn-yellow-text {
  color: #fffb00 !important; /* !important를 사용하여 다른 스타일보다 우선 적용합니다 */
  font-weight: bold; /* 글씨를 조금 더 두껍게 (선택사항) */
}

/* 마우스를 올렸을 때의 색상 (선택사항) */
.btn-yellow-text:hover {
  color: var(--white) !important;
  background: var(--primary-yellow);
}

/* ========================================
   추가 유틸리티 클래스
   ======================================== */

/* 색상 유틸리티 */
.text-primary-dark { color: var(--primary-dark) !important; }
.text-primary-yellow { color: var(--primary-yellow) !important; }
.text-primary-orange { color: var(--primary-orange) !important; }
.text-primary-red { color: var(--primary-red) !important; }
.text-primary-blue { color: var(--primary-blue) !important; }
.text-white { color: var(--white) !important; }

/* 배경 유틸리티 */
.bg-primary-dark { background: var(--primary-dark) !important; }
.bg-primary-yellow { background: var(--primary-yellow) !important; }
.bg-primary-orange { background: var(--primary-orange) !important; }
.bg-primary-red { background: var(--primary-red) !important; }
.bg-primary-blue { background: var(--primary-blue) !important; }
.bg-white { background: var(--white) !important; }

/* 테두리 유틸리티 */
.border-primary-dark { border-color: var(--primary-dark) !important; }
.border-primary-yellow { border-color: var(--primary-yellow) !important; }
.border-primary-orange { border-color: var(--primary-orange) !important; }
.border-primary-red { border-color: var(--primary-red) !important; }
.border-primary-blue { border-color: var(--primary-blue) !important; }

/* 호버 효과 유틸리티 */
.hover-primary-dark:hover { color: var(--primary-dark) !important; }
.hover-primary-yellow:hover { color: var(--primary-yellow) !important; }
.hover-primary-orange:hover { color: var(--primary-orange) !important; }
.hover-primary-red:hover { color: var(--primary-red) !important; }
.hover-primary-blue:hover { color: var(--primary-blue) !important; }
.hover-white:hover { color: var(--white) !important; }

/* 배경 호버 효과 */
.hover-bg-primary-dark:hover { background: var(--primary-dark) !important; }
.hover-bg-primary-yellow:hover { background: var(--primary-yellow) !important; }
.hover-bg-primary-orange:hover { background: var(--primary-orange) !important; }
.hover-bg-primary-red:hover { background: var(--primary-red) !important; }
.hover-bg-primary-blue:hover { background: var(--primary-blue) !important; }
.hover-bg-white:hover { background: var(--white) !important; }
/* ========================================
   Cyberpunk Design System & Interactions
   ======================================== */
:root {
    --m-blue: #402fb5;
    --m-pink: #cf30aa;
    --m-white: #ffffff;
}

/* Standardized Section Numbers */
p.section_count, p.section_count2, p.section_count3 {
    background-image: linear-gradient(135deg, var(--m-blue), var(--m-pink)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    filter: drop-shadow(0px 10px 20px rgba(162, 0, 255, 0.4)) !important;
    font-weight: 900 !important;
    opacity: 0.9;
}

/* Cyberpunk Skills & Progress Bars */
.skills .progress {
    height: auto !important;
    background: none !important;
    margin-bottom: 35px !important;
    display: block !important;
}

.skills .progress2, .skills .progress3, .skills .progress4, .skills .progress5, .skills .progress6, .skills .progress7 {
    height: 36px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 30px !important;
    padding: 5px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8) !important;
    display: flex;
    align-items: center;
}

.skills .progress-bar2, .skills .progress-bar3, .skills .progress-bar4 {
    height: 100% !important;
    border-radius: 20px !important;
    background: linear-gradient(90deg, var(--m-blue), var(--m-pink)) !important;
    box-shadow: 0 0 15px rgba(64, 47, 181, 0.6), 0 0 15px rgba(207, 48, 170, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.skills .progress-bar5, .skills .progress-bar6, .skills .progress-bar7 {
    height: 100% !important;
    border-radius: 20px !important;
    background: linear-gradient(90deg, #333, #111) !important;
    color: rgba(255, 255, 255, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.8rem !important;
}

/* Marquee Cyberpunk Interaction */
.wrapper {
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 50px 0 !important;
    border-radius: 40px !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    margin-top: 80px !important;
}

.marquee svg {
    position: relative !important;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    filter: grayscale(1) brightness(0.8) opacity(0.5) !important;
}

.marquee svg:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(64, 47, 181, 0.6), 
        0 0 25px rgba(207, 48, 170, 0.6) !important;
    transform: scale(1.1) translateY(-10px) rotate(5deg) !important;
    z-index: 10 !important;
    filter: grayscale(0) brightness(1) opacity(1) !important;
}

.marquee svg use {
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    transform-origin: center !important;
}

.marquee svg:hover use {
    filter: drop-shadow(0 0 5px var(--m-blue)) drop-shadow(0 0 10px var(--m-pink)) !important;
    transform: scale(1.3) !important;
    opacity: 1 !important;
}


/* --- Portfolio Process Section Grid Fix (Overlap Prevention) --- */
.portfolio .row.margin-top_30 {
    display: flex !important;
    flex-wrap: wrap !important;
}

.portfolio .row.margin-top_30 > [class*="col-"] {
    display: flex !important;
    align-items: stretch !important;
    margin-bottom: 30px !important;
}

.portfolio .service_blog {
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
}

.portfolio .service_blog .full {
    float: none !important;
    width: 100% !important;
}


.portfolio .service_blog img,
.portfolio .service_icons img {
    max-width: 100% !important;
    height: auto !important;
}
