@charset "UTF-8";

@font-face {
  font-family: "Noto Sans KR";
  src: url(../fonts/noto/NotoSansKR-Thin.woff2) format("woff2"), url(../fonts/noto/NotoSansKR-Thin.woff) format("woff");
  font-display: swap;
  font-weight: 100;
  font-style: normal
}

@font-face {
  font-family: "Noto Sans KR";
  src: url(../fonts/noto/NotoSansKR-ExtraLight.woff2) format("woff2"), url(../fonts/noto/NotoSansKR-ExtraLight.woff) format("woff");
  font-display: swap;
  font-weight: 200;
  font-style: normal
}

@font-face {
  font-family: "Noto Sans KR";
  src: url(../fonts/noto/NotoSansKR-Light.woff2) format("woff2"), url(../fonts/noto/NotoSansKR-Light.woff) format("woff");
  font-display: swap;
  font-weight: 300;
  font-style: normal
}

@font-face {
  font-family: "Noto Sans KR";
  src: url(../fonts/noto/NotoSansKR-Regular.woff2) format("woff2"), url(../fonts/noto/NotoSansKR-Regular.woff) format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: "Noto Sans KR";
  src: url(../fonts/noto/NotoSansKR-Medium.woff2) format("woff2"), url(../fonts/noto/NotoSansKR-Medium.woff) format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal
}

@font-face {
  font-family: "Noto Sans KR";
  src: url(../fonts/noto/NotoSansKR-Semibold.woff2) format("woff2"), url(../fonts/noto/NotoSansKR-Semibold.woff) format("woff");
  font-display: swap;
  font-weight: 600;
  font-style: normal
}

@font-face {
  font-family: "Noto Sans KR";
  src: url(../fonts/noto/NotoSansKR-Bold.woff2) format("woff2"), url(../fonts/noto/NotoSansKR-Bold.woff) format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal
}

@font-face {
  font-family: "Noto Sans KR";
  src: url(../fonts/noto/NotoSansKR-ExtraBold.woff2) format("woff2"), url(../fonts/noto/NotoSansKR-ExtraBold.woff) format("woff");
  font-display: swap;
  font-weight: 800;
  font-style: normal
}

@font-face {
  font-family: "Noto Sans KR";
  src: url(../fonts/noto/NotoSansKR-Black.woff2) format("woff2"), url(../fonts/noto/NotoSansKR-Black.woff) format("woff");
  font-display: swap;
  font-weight: 900;
  font-style: normal
}

/*
|----------------------------------|
 PC- EN 공통관리 버전 v1.23 / 12.21
|----------------------------------|
*/
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print,
(prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}

/* Attention seekers  */
@-webkit-keyframes bounce {

  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

@keyframes bounce {

  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shakeX {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes shakeY {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}

.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}

.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}

.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}

.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}

.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}

@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}

.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}

@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}

.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}

@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}

.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}

@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}

.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}

.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}

.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*
|----------------------------------|
 v.0.1 주연 : 최초 작업 -- 2021.09.06
|----------------------------------|
*/
/* point */
/*common*/
/* text */
/* line */
/* icon */
/* bg */
/* pagination */
.bg-point-primary {
  background-color: #2E87EF;
}

.bg-point-secondary {
  background-color: #186BE8;
}

.bg-point-active {
  background-color: #E50050;
}

.bg-point-sub {
  background-color: #01BDB9;
}

.bg-black {
  background-color: #000000;
}

.bg-navy {
  background-color: #002163;
}

.bg-gray {
  background-color: #F7F7F7;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-light-blue {
  background-color: #F5F8FB;
}

.bg-gradation {
  background: linear-gradient(106.65deg, #00ADA9 9.33%, #377EF9 93.88%);
}

.color-point-primary {
  color: #2E87EF;
}

.color-point-secondary {
  color: #186BE8;
}

.color-point-active {
  color: #E50050;
}

.color-point-sub {
  color: #01BDB9;
}

.color-black {
  color: #000000;
}

.color-navy {
  color: #002163;
}

.color-gray {
  color: #F7F7F7;
}

.color-white {
  color: #FFFFFF;
}

/*
|----------------------------------|
 v.0.1 (선미) 최초 작업 -- 2021.08.26
 v.0.2 (주연) 수정 요청 사항 적용 -- 2021.09.01
 v.0.3 (선미) .pagination-wrap : margin 0 제거 -- 2021.09.29
 v.0.4 (선미) 미디어라이브러리 - 목록디자인 변경으로 인한 태그 수정및 .item 추가 -- 2021.10.22
|----------------------------------|
*/
.section_newsroom .btn-share-box {
  text-align: right;
}

/*21.10.22*/
.item .img-wrap>a {
  height: 260px;
  width: 100%;
}

.item .img-wrap .btn-box {
  width: 100%;
  height: 68px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.item .img-wrap .btn-box>a {
  color: #FFFFFF;
  font-weight: bold;
  display: inline-block;
  padding: 0 5px;
}

.item .img-wrap .btn-box>a.img-list {
  float: left;
}

.item .img-wrap .btn-box>a.img-list .num {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

.item .img-wrap .btn-box>a.download {
  float: right;
}

.modal .modal-dialog .modal-content.modal-slider {
  min-height: 790px;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body {
  padding: 0;
  overflow: hidden;
  background-color: #000000;
  position: relative;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper {
  margin: 80px auto 40px;
  position: relative;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-wrapper .swiper-slide .img {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  width: 1244px;
  margin: 0 auto 60px;
  height: 580px;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-wrapper .swiper-slide .img img {
  object-fit: contain;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-wrapper .swiper-slide .btn-box {
  width: 1244px;
  margin: 0 auto;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-wrapper .swiper-slide .btn-box .link {
  float: left;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-wrapper .swiper-slide .btn-box .link>span {
  margin-left: 11px;
  color: #ffffff;
  font-weight: bold;
  vertical-align: middle;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-wrapper .swiper-slide .btn-box .download {
  float: right;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-wrapper .swiper-slide .btn-box .download>span {
  margin-right: 11px;
  color: #ffffff;
  font-weight: bold;
  vertical-align: middle;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper_btn {
  border-radius: 100px;
  width: 45px;
  height: 45px;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-button-prev,
.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-container-rtl .swiper-button-next {
  left: 40px;
  background: url("../img/common/ico-arrow-left-md-white.svg") no-repeat center center;
  z-index: 10;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-button-next,
.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-container-rtl .swiper-button-prev {
  right: 40px;
  z-index: 10;
  background: url("../img/common/ico-arrow-right-md-white.svg") no-repeat center center;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-pagination {
  top: -40px;
  left: 60px;
  width: 53px;
  height: 28px;
  color: #fff;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .swiper .swiper-pagination:before {
  content: '';
  display: inline-block;
  background-image: url("../img/common/ico-list_box.png");
  width: 18px;
  height: 18px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .text-box {
  width: 100%;
  background-color: #FFFFFF;
  font-size: 26px;
  font-weight: bold;
  line-height: 40px;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .text-box .text {
  margin: 0 auto;
  padding: 60px 0;
  width: 1244px;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .text-box .text .date {
  color: #909090;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  display: block;
  padding-top: 30px;
  letter-spacing: 0.3px;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .btn-close {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  background: transparent url(../img/common/btn-popup-close.svg) no-repeat center center;
  opacity: 1;
  position: absolute;
  right: 36px;
  top: 36px;
}

.modal .modal-dialog .modal-content.modal-slider .modal-body .btn-close:hover {
  color: #FFFFFF;
  opacity: 1;
}

.modal .modal-dialog .modal-content.modal-slider .modal-footer {
  border-top: 1px solid #E9E9E9;
  display: block;
  padding: 13px;
}

/*
|----------------------------------|
 v.0.1 (태윤) 최초 작업 -- 2021.08.31
|----------------------------------|
*/
.section_agreement .main-title {
  padding: 100px 0;
  font-weight: bold;
}

.section_agreement .dropdown_area {
  display: flex;
  align-content: center;
  justify-content: flex-end;
}

.section_agreement .content_area p {
  line-height: 30px;
  color: #454545;
  word-break: keep-all;
}

.section_agreement .content_area p:first-of-type {
  padding-top: 100px;
}

.section_agreement .content_area p.desc {
  margin-bottom: 15px;
}

.section_agreement .content_area .terms.management li {
  padding-left: 0;
}

.section_agreement .content_area .terms.management li ul.content .sub-title {
  padding-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #000000;
}

.section_agreement .content_area .terms.management li ul.content .desc li {
  padding-left: 22px;
}

.section_agreement .content_area .terms.management li ul.content .desc+.sub-title {
  padding-top: 0;
}

.section_agreement .content_area .terms.management li ul.content>li {
  margin-bottom: 32px;
}

.section_agreement .content_area .terms.management li ul.content>li:nth-last-of-type(1) {
  margin-bottom: 0;
}

.section_agreement .content_area .terms .hyphen_list li {
  padding-left: 0;
}

.section_agreement .content_area .terms li {
  word-break: keep-all;
}

.section_agreement .content_area .terms li .title {
  color: #000000;
  margin-bottom: 25px;
}

.section_agreement .content_area .terms li .download {
  padding-top: 6px;
  margin-bottom: 15px;
}

.section_agreement .content_area .terms li .download .btn {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
  color: #000000;
  min-width: auto;
  height: auto;
}

.section_agreement .content_area .terms li .download i {
  margin-left: 15px;
}

.section_agreement .content_area .terms li .caption_bottom {
  padding-top: 20px;
}

.section_agreement .content_area .terms li ul>li {
  padding-left: 22px;
  position: relative;
}

.section_agreement .content_area .terms li ul>li:before {
  content: attr(data-bullet);
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  text-align: left;
}

.section_agreement .content_area .terms li ul>li .table {
  margin: 15px -22px 0;
}

.section_agreement .content_area .terms li ul>li>ol li {
  padding-left: 22px;
  position: relative;
}

.section_agreement .content_area .terms li ul>li>ol li:before {
  content: attr(data-bullet);
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  text-align: left;
}

.section_agreement .content_area .terms li ul .gray-box {
  width: calc(100% + 22px);
  margin-top: 15px;
  border-radius: 8px;
  background-color: #f7f7f7;
  padding: 36px 60px;
  margin-left: -22px;
}

.section_agreement .content_area .terms li ul .gray-box .list-circle-dot {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #454545;
}

.section_agreement .content_area .terms li ul .gray-box .list-circle-dot>li {
  display: flex;
  padding-left: 15px;
  margin-bottom: 6px;
}

.section_agreement .content_area .terms li ul .gray-box .list-circle-dot>li span:nth-of-type(1) {
  flex: 215px 0 0;
  margin-right: 30px;
}

.section_agreement .content_area .terms li ul .gray-box .list-circle-dot>li span:nth-of-type(2) {
  flex: 140px 0 0;
  margin-right: 30px;
}

.section_agreement .content_area .terms li ul .gray-box .list-circle-dot>li a {
  text-decoration: none;
  color: #454545;
}

.section_agreement .content_area .terms li ul .gray-box .list-circle-dot>li:before {
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  content: '';
  width: 5px;
  height: 5px;
  background-color: #454545;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}

.section_agreement .content_area .terms li ul .gray-box .list-circle-dot>li:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.section_agreement .content_area .table {
  margin: 15px -22px 0;
  width: calc(100% + 22px);
}

.section_agreement .content_area .table thead tr th {
  line-height: 50px;
}

.section_agreement .content_area .table thead tr th {
  padding: 15px 30px;
}

.section_agreement .content_area .table tbody tr td {
  line-height: 25px;
}

.section_agreement .content_area .table tbody tr td {
  padding: 15px 30px;
}

.section_agreement .content_area ul {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #454545;
}

/*
|----------------------------------|
 v.0.1 (태윤) 최초 작업 -- 2021.09.02
|----------------------------------|
*/
.en .wrap .full-bg.business_bg .frame .hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -0.03em;
  text-align: center;
}

.en .wrap .full-bg.business_bg .frame .slogan-sub {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.75px;
}

.en .wrap .full-bg.business_bg .frame.frameB {
  padding-bottom: 100px;
}

.business_bg {
  max-width: 1920px;
  width: 100%;
  background-size: 1920px 600px;
  background-position: top center;
  background-repeat: no-repeat;
  animation-duration: 2s;
  transition: 2s;
  animation-name: businessAnimation;
  background-attachment: fixed;
  /* background-image: url("../img/business/bg_banner_ngs.png"); */
  margin: 0 auto 140px !important;
  /*임상진단서비스*/
  /*헬스케어서비스*/
}

/*   .business_bg.bg-type2 {
    background-image: url("../img/business/bg_banner_cancer.png"); } */
.business_bg.bg-type3 {
  background-image: url("../img/business/bg_banner_pet.png");
}

/*   .business_bg.bg-type4 {
    background-image: url("../img/business/bg_banner_pet_dog.png"); } */

@keyframes businessAnimation {
  from {
    opacity: 0;
    background-size: 3840px 1200px;
  }

  to {
    opacity: 1;
    background-size: 1920px 600px;
  }
}

.business_bg .btn-service {
  position: absolute;
  bottom: 100px;
  right: 0;
  border: 2px solid #fff;
  height: 48px;
  padding: 9px 25px;
  border-radius: 24px;
}

.business_bg .btn-service span {
  font-weight: 700;
  color: #fff;
}

.business_bg .btn-service i {
  margin-left: 30px;
}

.section_business .img img {
  width: 100%;
  height: 100%;
}

.section_business .row-img {
	border:1px solid #E9E9E9;
	padding:45px;
	box-sizing:border-box;
}
.section_business .row-img ul {
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:24px;
}
.section_business .row-img ul + ul {
	margin-top:32px;
}

.section_business .subject-box {
  position: relative;
  padding-bottom: 120px;
  margin-bottom: 120px;
}

.section_business .subject-box .img-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section_business .subject-box .img-wrap .content {
  text-align: center;
}

.section_business .subject-box .img-wrap .content .img {
  margin-bottom: 35px;
}

.section_business .subject-box .img-wrap .content .desc {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.75px;
  text-align: center;
}

.section_business .subject-box .title {
  line-height: 64px;
  margin-bottom: 20px;
}

.section_business .subject-box .subject {
  font-size: 18px;
  line-height: 32px;
  color: #000;
  font-weight: 400;
  margin-bottom: 80px;
}

.section_business .subject-box .subject.info {
  margin-bottom: 0;
}

.section_business .subject-box .desc {
  word-break: keep-all;
  letter-spacing: -0.75px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #454545;
}

.section_business .subject-box .desc.caption {
  padding-top: 40px;
  margin-bottom: 50px;
}

.section_business .subject-box .img {
  margin-bottom: 60px;
}

.section_business .subject-box .img.caption_bottom {
  margin-bottom: 0px;
}

.section_business .subject-box.no-line {
  padding-bottom: 50px;
  margin: 0;
}

.section_business.microbiome .subject-box.no-line {
  padding-bottom: 0;
}

.section_business .subject-box.no-line:after {
  display: none;
}

.section_business .subject-box:after {
  content: '';
  display: inline-block;
  border-top: 12px solid #F3F3F3;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.section_business .tab-box {
  margin-bottom: 120px;
}

.model_animal .section_business .tab-box .tab-tit,
.oligo_sec .section_business .tab-box .tab-tit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.model_animal .section_business .tab-box .tab-tit .title,
.oligo_sec .section_business .tab-box .tab-tit .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.333%;
  height: 60px;
  margin: 0;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #bcbcbc;
  cursor: pointer;
  background-color: #f3f3f3;
  text-align: center;
  border: 1px solid #d0d0d0;
}
.model_animal .section_business .tab-box .tab-tit .title{letter-spacing: -2px;}

.section_business .tab-box .title {
  margin-bottom: 20px;
  line-height: 54px;
  font-size: 36px;
}

.model_animal .section_business .tab-box .tab-tit .title.active,
.oligo_sec .section_business .tab-box .tab-tit .title.active {
  color: #2e87ef;
  background-color: #fff;
  border: 1px solid #cbcbcb;
  border-bottom: 1px solid #fff;
}

.section_business .tab-box .tab-list {
  display: flex;
}

.section_business .tab-box .tab-list .tab {
  margin-right: 40px;
}

.section_business .tab-box .tab-list .tab a {
  color: #d9d9d9;
  position: relative;
  white-space: nowrap;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  height: 38px;
  padding-top: 6px;
}

.section_business .tab-box .tab-list .tab.active a {
  color: #2E87EF;
}

.section_business .tab-box .tab-list .tab.active a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2E87EF;
  bottom: 4px;
  left: 0;
}

.model_animal .section_business .info-box-wrap,
.oligo_sec .section_business .info-box-wrap {
  display: none;
}

.model_animal .section_business .info-box-wrap.active,
.oligo_sec .section_business .info-box-wrap.active {
  display: block;
}

.section_business .info-box-wrap.tab-content .info-box {
  display: none;
}

.section_business .info-box-wrap.tab-content .info-box.show {
  display: block;
}

/* 2024-04-18 추가 { */
.section_business .info-box-wrap.tab-content .info-box.show .img {
  position: relative;
}

.section_business .info-box-wrap.tab-content .info-box.show .float-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 590px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}

.section_business .info-box-wrap.tab-content .info-box.show .float-wrap .txt {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.section_business .info-box-wrap.tab-content .info-box.show .float-wrap .btn-wrap {
  display: flex;
  gap: 16px;
}

.section_business .info-box-wrap.tab-content .info-box.show .float-wrap .btn-wrap a {
  width: 256px;
}

/* } 2024-04-18 추가 */

.model_animal .section_business .slide-tab-wrap .swiper-container,
.oligo_sec .section_business .slide-tab-wrap .swiper-container {
  display: none;
}

.model_animal .section_business .slide-tab-wrap .swiper-container.on,
.oligo_sec .section_business .slide-tab-wrap .swiper-container.on {
  display: block;
}

.model_animal table.table tbody tr:first-of-type{border-top: 1px solid #000;}
.model_animal table.table tbody tr th{border-top: 0;}

.section_business .info-box {
  /*텍스트 관련*/
  /*리스트 관련*/
  /*디자인관련*/
  /*테이블 관련*/
  /*버튼*/
}

.section_business .info-box .main-title {
  line-height: 54px;
  margin: 0px 0px 60px;
}

.section_business .info-box .main-title.no-desc {
  margin: 0px 0px 80px;
}

.section_business .info-box .main-title a[data-single] {position:relative; background:none; color:inherit; display:block; padding-bottom:30px; border-bottom:2px solid #454545;}
.section_business .info-box .main-title a[data-single]:after {content:''; position:absolute; top:calc(50% - 10px); right:0px; display:block; width:31px; height:20px; background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-single.png) 0 0 no-repeat; transition:all .2s ease-in-out;}
.section_business .info-box .main-title a[data-single].on:after {transform: rotate(-180deg);}

.section_business .info-box .subject {
  line-height: 32px;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: -0.75px;
}

.section_business .info-box .subject.img_bottom {
  margin-bottom: 60px;
}

.section_business .info-box .subject+.img {
  padding-top: 20px;
}

.section_business.microbiome .info-box .img:first-of-type {
  margin-bottom: 120px;
}

.section_business.microbiome .info-box .img:nth-of-type(3) {
  margin-bottom: 60px;
}

.section_business.microbiome .info-box .sub-title {
  margin-bottom: 20px;
}

.section_business.microbiome .info-box .csinfo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.75px;
}

.en .wrap .full-bg.business_bg .frame .hero-title.microbiome_title {
  font-size: 62px;
}

.section_business.microbiome .list-circle-dot li>span {
  display: block;
  font-size: 16px;
  letter-spacing: -0.75;
  color: #707070;
}

.section_business.microbiome .info-box .subject+.img {
  padding-top: 0;
}

.section_business.microbiome .info-box .list-area {
  margin-bottom: 40px;
}

.section_business .info-box .sub-title {
  margin-bottom: 30px;
}

.section_business .info-box .sub-title.figure_bottom {
  margin-bottom: 25px;
}

.section_business .info-box .sub-title.graph_bottom {
  margin-bottom: 20px;
}

.section_business .info-box .img+.desc {
  padding-top: 40px;
}

.section_business .info-box .img+.table {
  margin-top: 80px;
}

.section_business .info-box .img+.list-area {
  padding-top: 80px;
}

.section_business .info-box .img+.box-gray-6 {
  padding-top: 80px;
}

.section_business .info-box .img+.list-area-group {
  padding-top: 80px;
}

.section_business .info-box .caption {
  padding-top: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.75px;
  color: #909090;
}

.section_business .info-box .caption.img-caption {
  padding-top: 20px;
  margin-bottom: 40px;
}

.section_business .info-box .desc {
  word-break: keep-all;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
}

.section_business .info-box .desc.img_bottom {
  margin-bottom: 40px;
}

.section_business .info-box .desc.list_bottom {
  margin-bottom: 60px;
}

.section_business .info-box .desc.data_bottom {
  margin-bottom: 60px;
}

.section_business .info-box .desc.figure_bottom {
  margin-bottom: 25px;
}

.section_business .info-box .desc+.sub-title {
  padding-top: 60px;
}

.section_business .info-box .list-area-group.figure_bottom {
  margin-bottom: 25px;
}

.section_business .info-box .list-area-group .list-area {
  margin-bottom: 60px;
}

.section_business .info-box .list-area-group .list-area:last-of-type {
  margin-bottom: 0;
}

.section_business .info-box .list-area-group+.main-title {
  padding-top: 60px;
}

.section_business .info-box .list-area-group+.sub-title {
  padding-top: 120px;
}

.section_business .info-box .list-area .sub-list-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 12px;
}

.section_business .info-box .list-area>.title {
  line-height: 27px;
  margin-bottom: 20px;
}

.section_business .info-box .list-area>.title.figure_bottom {
  margin-bottom: 25px;
}

.section_business .info-box .list-area>.title.img_bottom {
  margin-bottom: 35px;
}

.section_business .info-box .list-area.figure_bottom {
  margin-bottom: 25px;
}

.section_business .info-box .list-area .figure_bottom {
  margin-bottom: 25px;
}

.section_business .info-box .list-area-border {
  border: 1px solid #d9d9d9;
  margin-bottom: 60px;
}

.section_business .info-box .list-area-border+.sub-title {
  padding-top: 60px;
}

.section_business .info-box .list-area-border .list {
  padding: 40px;
  display: flex;
}

.section_business .info-box .list-area-border .list:nth-last-of-type(1) {
  border-top: 1px solid #d9d9d9;
}

.section_business .info-box .list-area-border .list .font-h8 {
  flex: 388px 0 0;
}

.section_business .info-box .list-area-border .list ul li {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.section_business .info-box .list-gallery .list .title {
  line-height: 52px;
  margin-bottom: 20px;
  /* 2024-04-18 수정 */
}

/* 2024-04-18 추가 { */
.section_business .info-box .list-gallery .list+.list {
  margin-top: 100px;
  padding-top: 100px;
  border-top: 1px solid #E9E9E9;
}

.section_business .info-box .list-gallery .list .description {
  color: #454545;
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.065em;
  margin-bottom: 40px;
}

.section_business .info-box .list-gallery .list .description .footnote {
  color: #909090;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.065em;
}

/* } 2024-04-18 추가 */
.section_business .info-box .list-gallery .list .content {
  display: flex;
  justify-content: space-between;
}

.section_business .info-box .list-gallery .list .content .picture {
  margin-right: 40px;
}

/* 2024-04-18 추가 { */
.section_business .info-box .list-gallery .list .content .cont {
  flex: 1;
}

/* } 2024-04-18 추가 */
.section_business .info-box .list-gallery .list .content .cont .desc {
  margin-bottom: 16px;
  /* 2024-04-18 수정 */
}

/* 2024-04-18 추가 { */
.section_business .info-box .list-gallery .list .content .cont .desc strong {
  font-size: 18px;
}

/* } 2024-04-18 추가 */
.section_business .info-box .list-gallery .list .content .cont .desc+.btn-wrap {
  padding-top: 20px;
}

.section_business .info-box .list-gallery .list .content .cont .caption {
  padding-top: 0;
  margin: -20px 0 30px;
}

.section_business .info-box .list-gallery .list .content .cont .list-circle-dot>li {
  color: #707070;
  margin-bottom: 6px;
}

/* 2024-04-18 추가 { */
.section_business .info-box .list-gallery .list .content .cont .list-circle-dot>li .txt-indent {
  padding-left: 15px;
}

/* } 2024-04-18 추가 */
.section_business .info-box .list-gallery .list .content .cont .list-circle-dot>li:last-of-type {
  margin-bottom: 0;
}

.section_business .info-box .list-gallery .list .content .cont .list_service {
  margin-top: 30px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
}

.section_business .info-box .list-gallery .list .content .cont .btn-wrap {
  padding-top: 50px;
}

.section_business .info-box .box-gray-6 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.section_business .info-box .box-gray-6>div {
  border: 1px solid #d9d9d9;
  width: 33.3%;
  padding: 40px;
}

.section_business .info-box .box-gray-6>div:nth-child(1) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .box-gray-6>div:nth-child(2) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .box-gray-6>div:nth-child(3) {
  border-bottom: none;
}

.section_business .info-box .box-gray-6>div:nth-child(4) {
  border-right: none;
}

.section_business .info-box .box-gray-6>div:nth-child(5) {
  border-right: none;
}

.section_business .info-box .box-gray-6>div .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 14px;
}

.section_business .info-box .box-gray-6>div .desc {
  color: #666666;
  font-size: 16px;
  word-break: keep-all;
}

.section_business .info-box .border-gray-box-wrap {
  padding-top: 120px;
}

.section_business .info-box .border-gray-box {
  border: 1px solid #e9e9e9;
}

.section_business .info-box .border-gray-box img {
  width: 100%;
  height: 100%;
}

.section_business .info-box .border-gray-box+.list-area {
  padding-top: 80px;
}

.section_business .info-box .border-gray-box+.border-gray-box {
  margin-top: 40px;
}

.section_business .info-box .border-gray-box+.no-caption {
  margin-top: 80px;
}

.section_business .info-box .divider {
  margin: 100px 0px;
}
.section_business .info-box .divider.mini {
  margin: 40px 0px;
  background:unset;
}

.section_business .info-box .kit-area {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.section_business .info-box .kit-area li {
  text-align: center;
  width: 155.5px;
  border: 1px solid #E9E9E9;
  padding: 20px 30px;
}

.section_business .info-box .kit-area:last-of-type {
  margin-bottom: 0;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(1) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(2) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(3) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(4) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(5) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(6) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(7) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(8) {
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(9) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(10) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(11) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(12) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(13) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(14) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(15) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(16) {
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(17) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(18) {
  border-right: none;
  border-bottom: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(19) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(20) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(21) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(22) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(23) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-25 li:nth-of-type(25) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-8 li:nth-of-type(1) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-8 li:nth-of-type(2) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-8 li:nth-of-type(3) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-8 li:nth-of-type(4) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-8 li:nth-of-type(5) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-8 li:nth-of-type(6) {
  border-right: none;
}

.section_business .info-box .kit-area.kit-area-8 li:nth-of-type(7) {
  border-right: none;
}

.section_business .info-box .file-download {
  margin-bottom: -20px;
}

.section_business .info-box .table-wrap {
  display: flex;
}

.section_business .info-box .table-wrap .table-title-box {
  width: calc(50% - 10px);
}

.section_business .info-box .table-wrap .table-title-box:nth-of-type(1) {
  margin-right: 10px;
}

.section_business .info-box .table-wrap .table-title-box:nth-of-type(2) {
  margin-left: 10px;
}

.section_business .info-box .table-wrap .table-title-box .sub-title {
  margin-bottom: 25px;
}

.section_business .info-box .table-wrap .table:nth-of-type(1) {
  margin-right: 10px;
}

.section_business .info-box .table-wrap .table:nth-of-type(2) {
  margin-left: 10px;
}

.section_business .info-box .table-wrap .table thead th {
  padding: 15px;
}

.section_business .info-box .table-wrap .table tbody td {
  padding: 15px;
}

.section_business .info-box .table {
  margin-bottom: 0;
}

.en .section_business .info-box.info-covid19 .table {
  border-top: 1px solid #000;
}

.en .section_business .info-box.info-covid19 .table tbody tr th {
  color: #666;
  border-top: 0;
}

.section_business .info-box .table thead th {
  padding: 15px 30px;
}

.section_business .info-box .table tbody td {
  padding: 15px 30px;
}

.section_business .info-box .table+.sub-title {
  padding-top: 60px;
}

.section_business .info-box .table+.sub-title.font-h5 {
  padding-top: 120px;
}

.section_business .info-box .table+.list-area-group {
  padding-top: 60px;
}

.section_business .info-box .btn-area {
  display: flex;
  justify-content: center;
  padding-top: 140px;
}

.section_business .info-box .btn-area+.divider {
  margin: 140px auto 80px;
}

.section_business .notice-text {
  padding-top: 100px;
  line-height: 32px;
}

.section_business .notice-text i {
  margin-right: 7px;
}

.section_business .notice-text span {
  vertical-align: middle;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.75px;
  color: #909090;
}

.list-circle-dot {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #454545;
}

.list-circle-dot>li {
  margin-bottom: 10px;
}

.list-circle-dot>li:before {
  display: inline-block;
  content: '';
  width: 5px;
  height: 5px;
  background-color: #454545;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}

.list-circle-dot>li:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.list-circle-dot .list-hypen {
  padding-top: 8px;
  margin-left: 15px;
}

.list-circle-dot .list-hypen li {
  font-size: 14px;
  color: #707070;
  line-height: 28px;
  margin-bottom: 8px;
}

.list-circle-dot .list-hypen li:nth-last-of-type(1) {
  margin-bottom: 0;
}

.slide-tab-wrap {
  position: relative;
}

.slide-tab-wrap .tab-modal {
  display: none;
  position: absolute;
  min-width: 291px;
  border: 1px solid #222222;
  border-radius: 10px;
  padding: 10px 10px 30px 30px;
  right: 0;
  top: 0;
  z-index: 5;
  background-color: #fff;
}

.slide-tab-wrap .tab-modal .tab-modal-header {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.slide-tab-wrap .tab-modal .tab-modal-header .close-btn {
  background-color: #f7f7f7;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 6px;
}

.slide-tab-wrap .tab-modal .tab-modal-header .close-btn span {
  position: absolute;
  border: 1px solid #222222;
  top: 50%;
  left: 50%;
  display: inline-block;
}

.slide-tab-wrap .tab-modal .tab-modal-header .close-btn span:nth-of-type(1) {
  height: 12px;
  transform: translate(-50%, -50%) rotate(135deg);
}

.slide-tab-wrap .tab-modal .tab-modal-header .close-btn span:nth-of-type(2) {
  height: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.slide-tab-wrap .tab-modal .tab-modal-body {
  display: inline-block;
}

.slide-tab-wrap .tab-modal .tab-modal-body li {
  margin-bottom: 20px;
}

.slide-tab-wrap .tab-modal .tab-modal-body li:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.slide-tab-wrap .tab-modal .tab-modal-body li a {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #454545;
  text-align: left;
}

.slide-tab-wrap .tab-modal .tab-modal-body li a:hover {
  color: #E50050;
  font-weight: 700;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .slide-tab-wrap::after {
    content: '';
    clear: both;
    display: block;
  }

  .slide-tab-wrap .swiper-container {
    float: left;
    width: calc(100% - 134px);
  }

  .slide-tab-wrap .btn-box {
    display: block;
    width: 134px;
    float: left;
  }

  .slide-tab-wrap .btn-box .btn {
    float: left;
    margin-right: 6px;
  }
}

/*
|----------------------------------|
 v.0.1 (주연) 최초 작업 -- 2021.09.01
|----------------------------------|
*/
/* 공통 */
.modal .btn-close:focus {
  box-shadow: none;
}

.macrogen {
  /* s 공통 */
  /* e 공통 */
}

.macrogen .badge {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  letter-spacing: -0.75px;
  color: #909090;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  margin-left: 15px;
}

.macrogen .color-white {
  color: #FFFFFF !important;
}

.macrogen.full-bg {
  position: relative;
  /* background-image: url(../img/@temp/macrogen/macrogen_bg_1.png); */
  background-size: 1920px 600px;
  background-position: top center;
  background-repeat: no-repeat;
  animation-duration: 2s;
  transition: 2s;
  animation-name: subAnimation;
  background-attachment: fixed;
  /*인터렉션추가로 인한 css 수정*/
  /*.scroll-wrap {
      position: absolute;
      bottom: 100px;
      left: 0;

      .scroll {
        position: absolute;
        width: 2px;
        height: 100px;
        background-color: rgba(255, 255, 255, 0.2);

        .bar {
          position: absolute;
          width: 2px;
          height: 60px;
          background-color: #fff;
          bottom: 0;
          left: 0;
        }

        &::after {
          content: '';
          position: absolute;
          top: -14px;
          left: -1px;
          width: 4px;
          height: 4px;
          border-radius: 50%;
          background-color: #fff;
        }
      }
    }*/
  /* 수정 요청사항으로 인한 딤드 제거
     &::before {
         content: '';
         position: absolute;
         left: 0;
         top: 0;
         width: 100%;
         height: 100%;
         background-color: rgba(14, 22, 33, 0.45);
       }*/
}

.macrogen.full-bg .frame {
  position: relative;
  height: calc(100% - 124px);
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.macrogen.full-bg .frame .hero-title {
  margin-bottom: 130px;
  line-height: 58px;
  letter-spacing: -2px;
}

.macrogen.full-bg .frame .hero-title.en {
  /*line-height: 75px;
          letter-spacing: -0.5px;*/
  margin-bottom: 0;
}

.macrogen.full-bg .frame .slogan.ko {
  font-size: 80px;
  line-height: 98px;
  letter-spacing: -6px;
}

.macrogen.full-bg .frame .slogan-sub {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.75px;
}

.macrogen.full-bg .frame.frameC {
  height: auto;
}

.macrogen.full-bg .scroll-wrap {
  display: none;
  z-index: 11;
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.macrogen.full-bg .scroll-wrap:before {
  content: '';
  width: 4px;
  height: 4px;
  background: #FFFFFF;
  position: absolute;
  top: -14px;
  left: -1px;
  border-radius: 2px;
}

.macrogen.full-bg .scroll-wrap .scroll {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  width: 1px;
  position: relative;
  height: 100px;
  overflow: hidden;
}

.macrogen.full-bg .scroll-wrap .scroll:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-left: 2px solid #ffffff;
  opacity: 0.2;
}

.macrogen.full-bg .scroll-wrap .scroll:after {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  border-left: 2px solid #ffffff;
  -webkit-animation: scrollMove 1.5s ease-in infinite;
  animation: scrollMove 1.5s ease-in infinite;
}

@keyframes scrollMove {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

.macrogen.full-bg.no-bg {
  background-image: none;
  animation: none;
}

.macrogen.full-bg.no-bg::before {
  content: none;
}

.macrogen.company-overview .section-info {
  padding-top: 180px;
  margin-bottom: 152px;
}

.macrogen.company-overview .section-info .title {
  width: 1244px;
  font-weight: 700;
  font-size: 92px;
  line-height: 86px;
  align-items: center;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-left: 337px;
}

.macrogen.company-overview .section-info .title-sm {
  width: 1244px;
  font-size: 26px;
  line-height: 38px;
  letter-spacing: -0.75px;
  margin: 0 0 100px;
  padding-left: 337px;
}

.macrogen.company-overview .section-info .text-box {
  width: 1244px;
  margin: 0 0 108px;
  padding-left: 428px;
}

.macrogen.company-overview .section-info .text-box .font-body-h {
  display: inline-block;
  font-weight: 400;
  text-align: left;
  color: #454545;
}

.macrogen.company-overview .section-info .img-box {
  word-break: keep-all;
  width: 100%;
  height: 602px;
  margin-bottom: 152px;
  overflow: hidden;
  padding-left: 428px;
  padding-right: 239px;
}

.macrogen.company-overview .section-info .img-box .inner {
  position: relative;
  width: 100%;
  height: 602px;
  min-width: 1920px;
}

.macrogen.company-overview .section-info .img-box .inner .img {
  width: 1370px;
  text-align: right;
}

.macrogen.company-overview .section-info .img-box .inner .list {
  position: absolute;
  left: 12.1167%;
  top: 23.089%;
}

.macrogen.company-overview .section-info .img-box .inner .list li {
  position: relative;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.macrogen.company-overview .section-info .img-box .inner .list li::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #FFFFFF;
  left: -48px;
  top: 22px;
}

.macrogen.company-overview .section-info .img-box .inner .list li:last-child {
  margin-bottom: 0;
}

.macrogen.company-overview .section-overview {
  width: 100%;
  height: 1375px;
  background-color: #F7F7F7;
  padding-top: 150px;
}

.macrogen.company-overview .section-overview .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.company-overview .section-overview .title-sm {
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: -1px;
  margin-bottom: 50px;
}

.macrogen.company-overview .section-overview .year {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 110px;
  line-height: 112px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.macrogen.company-overview .section-overview .year::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 6px;
  background-color: #000000;
  right: -89px;
  bottom: 8px;
}

.macrogen.company-overview .section-overview .desc {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  margin-bottom: 100px;
}

.macrogen.company-overview .section-overview .overview-list {
  padding-left: 217px;
}

.en .macrogen.company-overview .section-overview .overview-list ul {
  margin-bottom: 46px;
  width: 100%;
  height: 776px;
}

.macrogen.company-overview .section-overview .overview-list .footnote {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.75px;
  color: #666;
}




.macrogen.company-overview .section-overview .overview-list .item {
  float: left;
  width: 200px;
  margin-right: 74px;
  text-align: center;
}

.macrogen.company-overview .section-overview .overview-list .item:nth-child(2) .desc {
  margin-left: -15px;
}

.macrogen.company-overview .section-overview .overview-list .item:nth-child(5) .desc {
  margin-left: -30px;
}

.macrogen.company-overview .section-overview .overview-list .item:nth-child(6) .desc {
  margin-left: -10px;
}

.macrogen.company-overview .section-overview .overview-list .item:nth-child(8) .desc {
  margin-left: -35px;
}

.macrogen.company-overview .section-overview .overview-list .item .img {
  display: block;
  width: 100%;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 22px;
}

.macrogen.company-overview .section-overview .overview-list .item .img img {
  width: 100%;
  height: 100%;
}

.macrogen.company-overview .section-overview .overview-list .item .val {
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
  font-size: 44px;
  line-height: 54px;
  white-space: nowrap;
  font-family: "Noto Sans KR", sans-serif;
}

.macrogen.company-overview .section-overview .overview-list .item .val span {
  font-size: 36px;
}

.macrogen.company-overview .section-overview .overview-list .item .desc {
  display: block;
  white-space: nowrap;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  letter-spacing: -0.75px;
}

.macrogen.company-overview .section-overview .overview-list .item:nth-child(4n) {
  margin-right: 0;
}

.macrogen.company-overview .section-business {
  position: relative;
  width: 100%;
  height: 920px;
  background-image: url("../img/macrogen/macrogen_thumb_lg_2.png");
  background-size: cover;
  background-size: 1920px 920px;
  background-repeat: no-repeat;
  padding-top: 150px;
}

.macrogen.company-overview .section-business::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  background-image: url("../img/@temp/macrogen/macrogen_thumb02.png");
  background-size: cover;
}

.macrogen.company-overview .section-business .swiper-container {
  position: relative;
  width: 1244px;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}

.macrogen.company-overview .section-business .swiper-container .pagination-wrap {
  position: absolute;
  width: 100%;
  height: 45px;
  bottom: 118px;
  right: 0;
  z-index: 2;
}

.macrogen.company-overview .section-business .swiper-container .pagination-wrap .navigation {
  position: static;
  top: auto;
  left: auto;
  text-align: right;
}

.macrogen.company-overview .section-business .swiper-container .pagination-wrap .navigation .page-item {
  position: static;
}

.macrogen.company-overview .section-business .swiper-container .pagination-wrap .navigation .page-item.prev {
  margin-right: 8px;
}

.macrogen.company-overview .section-business .swiper-container .pagination-wrap .navigation .page-item.prev .page-link {
  background-image: url(../img/macrogen/btn-nav-prev.svg);
}

.macrogen.company-overview .section-business .swiper-container .pagination-wrap .navigation .page-item.next .page-link {
  background-image: url(../img/macrogen/btn-nav-next.svg);
}

.macrogen.company-overview .section-business .swiper-container .swiper-pagination {
  bottom: auto;
  top: 55px;
  right: 0;
  text-align: right;
}

.macrogen.company-overview .section-business .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 0 7.5px;
}

.macrogen.company-overview .section-business .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}

.macrogen.company-overview .section-business .inner {
  position: relative;
  width: 1244px;
  margin: 0 auto;
  z-index: 1;
}

.macrogen.company-overview .section-business .title-sm {
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 50px;
}

.macrogen.company-overview .section-business .title {
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -3px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.macrogen.company-overview .section-business .desc {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #FFFFFF;
  margin-bottom: 80px;
}

.macrogen.company-overview .section-business .category-list li {
  position: relative;
  float: left;
  width: 206px;
  height: 145px;
  text-align: center;
  padding: 0 8px;
}

.macrogen.company-overview .section-business .category-list li::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 145px;
  right: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.macrogen.company-overview .section-business .category-list li .img {
  width: 86px;
  height: 86px;
  margin: 0 auto 32px;
}

.macrogen.company-overview .section-business .category-list li .img img {
  width: 100%;
  height: 100%;
}

.macrogen.company-overview .section-business .category-list li .tit {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.macrogen.company-overview .section-business .category-list li:first-child {
  padding-left: 0;
}

.macrogen.company-overview .section-business .category-list li:last-child {
  padding-right: 0;
}

.macrogen.company-overview .section-business .category-list li:last-child::after {
  content: none;
}

.macrogen.company-overview .section-business .category-list.category-list-lg li {
  width: 274px;
  padding: 0 40px;
}

.macrogen.company-overview .section-business-detail {
  position: relative;
  width: 1210px;
  height: 1858px;
  margin: -163px auto 150px;
}

.macrogen.company-overview .section-business-detail .item {
  position: absolute;
  width: 560px;
}

.macrogen.company-overview .section-business-detail .item .img {
  position: relative;
  width: 535px;
  height: 560px;
  margin-bottom: 40px;
}

.macrogen.company-overview .section-business-detail .item .img::after {
  content: '';
  position: absolute;
  width: 435px;
  height: 1px;
  left: 50px;
  bottom: 156px;
  background-color: rgba(255, 255, 255, 0.2);
}

.macrogen.company-overview .section-business-detail .item .img img {
  width: 100%;
  height: 100%;
}

.macrogen.company-overview .section-business-detail .item .img .title-sm {
  position: absolute;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  bottom: 104px;
  left: 52px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.macrogen.company-overview .section-business-detail .item .img .title {
  position: absolute;
  font-weight: 700;
  font-size: 28px;
  line-height: 64px;
  /* letter-spacing: -2px; */
  color: #FFFFFF;
  bottom: 40px;
  left: 50px;
}

.macrogen.company-overview .section-business-detail .item .desc {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: -0.75px;
  margin-bottom: 20px;
}

.macrogen.company-overview .section-business-detail .item .desc-sm {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
}

.macrogen.company-overview .section-business-detail .item.item-1 {
  top: 0;
  left: 0;
}

.macrogen.company-overview .section-business-detail .item.item-2 {
  right: 0;
  top: 243px;
}

.macrogen.company-overview .section-business-detail .item.item-3 {
  top: 903px;
  left: 0;
}

.macrogen.company-overview .section-business-detail .item.item-4 {
  right: 0;
  top: 1116px;
}







/* s vision */
.macrogen.company-overview .section-vision {position:relative;}
.macrogen.company-overview .section-vision .visual-box {width:100%; height:560px; display:flex; justify-content:center; align-items:center; background:url(/publishing/pc-ko/dist/img/macrogen/bg-overview-vision.jpg) 0 0 no-repeat;}
.macrogen.company-overview .section-vision .visual-box .txt {min-width:1120px; text-align:left; font-size:56px; font-weight:700; line-height:81px; letter-spacing:-1.68px; color:#fff;}

.macrogen.company-overview .section-vision .inner {padding:150px 0 0; max-width:1244px; margin:0 auto; box-sizing:border-box;}
.macrogen.company-overview .section-vision .inner .title-sm {font-weight: 700; font-size: 32px; line-height: 39px; letter-spacing: 0.5px; margin-bottom: 5px;}
.macrogen.company-overview .section-vision .inner > .tit {margin-top:30px; color: #000;  font-size: 22px; font-style: normal; font-weight: 700; line-height: 32px; /* 145.455% */letter-spacing: -0.165px;}
.macrogen.company-overview .section-vision .inner > .txt {margin-top:32px; font-size:18px; font-weight:400; line-height:32px; line-height:32px; color:#454545;}
.macrogen.company-overview .section-vision .inner .img-box {margin:30px 0 0 91px; }
.macrogen.company-overview .section-vision .inner .img-box .img {width:100%;}
.macrogen.company-overview .section-vision .inner .img-box .img img {width:100%;}
.macrogen.company-overview .section-vision .inner .img-box .txt {
	margin-top:2px;
	text-align:center; color: #222;
	text-align: center;
	font-family: "Noto Sans KR";
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px; /* 177.778% */
	letter-spacing: -0.54px;
}

.macrogen.company-overview .section-ci-page {position:relative; width:100%; padding-top:180px;}
.macrogen.company-overview .section-ci-page .inner {max-width:1244px; margin:0 auto;;}
.macrogen.company-overview .section-ci-page .inner > .title {
	color: #000;
	font-family: "Noto Sans KR";
	font-size: 56px;
	font-style: normal;
	font-weight: 800;
	line-height: 70px; /* 125% */
	letter-spacing: -0.56px;
	/* text-transform: uppercase; */
}
.macrogen.company-overview .section-ci-page .inner > .title + .text {
	margin-top:20px;
	color: #454545;
	font-family: "Noto Sans KR";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; /* 166.667% */
	letter-spacing: -0.54px;
	/* text-transform: uppercase; */
}

.macrogen.company-overview .section-ci-page .symbol {max-width:1062px; margin:100px auto 0;} 
.macrogen.company-overview .section-ci-page .symbol .desc {margin-bottom: 70px;}
.macrogen.company-overview .section-ci-page .symbol .desc + .desc {margin-bottom:150px;}
.macrogen.company-overview .section-ci-page .symbol .desc .bg-logo {
	width: 100%;
    height: 475px;
    background: url(../img/macrogen/box-logo.png) 0 0 repeat;
    border: 1px solid #D9D9D9;
	display:flex;
	justify-content:center;
	align-items:center;
    margin-bottom: 70px;
}
.macrogen.company-overview .section-ci-page .symbol .desc .content {
	color: #454545;
	font-family: "Noto Sans KR";
	font-size: 18px;
	font-style: normal;
	font-weight: 350;
	line-height: 32px; /* 177.778% */
	letter-spacing: -0.75px;
}




.macrogen.company-overview .section-ci-page .desc .color-list {
  margin-bottom: 40px;
  overflow: hidden;
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap:70px;
}

.macrogen.company-overview .section-ci-page .desc .color-list li {
  
  flex:1;
  height: 270px;
}

.macrogen.company-overview .section-ci-page .desc .color-list li .color {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.macrogen.company-overview .section-ci-page .desc .color-list li .color.color-1 {
  background-color: #001E62;
}

.macrogen.company-overview .section-ci-page .desc .color-list li .color.color-2 {
  background-color: #00BFB2;
}

.macrogen.company-overview .section-ci-page .desc .color-list li .color.color-3 {
  background-color: #84BD00;
}

.macrogen.company-overview .section-ci-page .desc .color-list li .color.color-4 {
  background-color: #E50050;
}

.macrogen.company-overview .section-ci-page .desc .color-list li .value {
  padding-left: 19px;
}

.macrogen.company-overview .section-ci-page .desc .color-list li .value span:first-child {
  display: inline-block;
  width: 49px;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  color: #454545;
  margin-right: 30px;
}

.macrogen.company-overview .section-ci-page .desc .color-list li .value span:nth-child(2) {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: #454545;
}

.macrogen.company-overview .section-ci-page .desc .download-area {
	display:flex;
	justify-content:center;
	align-items: center;
}
.macrogen.company-overview .section-ci-page .desc .download-area .btn-download {
  display: block;
}

.macrogen.company-overview .section-ci-page .desc .download-area .btn-download span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}

.macrogen.company-overview .section-ci-page .desc .download-area .btn-download span:first-child {
  margin-right: 15px;
}

.macrogen.company-overview .section-ci-page {position:relative;}
.macrogen.company-overview .section-ci-page .visual-box {width:100%; height:560px; display:flex; justify-content:center; align-items:center; background:url(/publishing/pc-ko/dist/img/macrogen/bg-ci-vision.jpg) 0 0 no-repeat;}
.macrogen.company-overview .section-ci-page .visual-box .txt {min-width:1120px; text-align:left; font-size:56px; font-weight:700; line-height:81px; letter-spacing:-1.68px; color:#fff;}







.macrogen.company-overview .section-ci {
  position: relative;
  height: 560px;
  background-size: 1920px 560px;
  background-repeat: no-repeat;
  padding-top: 150px;
}

.macrogen.company-overview .section-ci::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 560px;
  background-image: url("../img/@temp/macrogen/macrogen_thumb03.png");
  background-size: cover;
}

.macrogen.company-overview .section-ci .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.company-overview .section-ci .title-sm {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.macrogen.company-overview .section-ci .text {
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -3px;
  color: #FFFFFF;
}

.macrogen.company-overview .section-symbol {
  margin-top: 120px;
}

.macrogen.company-overview .section-symbol .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.company-overview .section-symbol .item {
  overflow: hidden;
}

.macrogen.company-overview .section-symbol .item:first-child {
  margin-bottom: 90px;
}

.macrogen.company-overview .section-symbol .item:nth-child(2) {
  margin-bottom: 150px;
}

.macrogen.company-overview .section-symbol .item:last-child {
  margin-bottom: 0;
}

.macrogen.company-overview .section-symbol .item .title {
  float: left;
  width: 318px;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.5px;
}

.macrogen.company-overview .section-symbol .item .desc {
  float: left;
  width: calc(100% - 318px);
}

.macrogen.company-overview .section-symbol .item .desc .bg-logo {
  width: 923px;
  height: 475px;
  background-image: url("../img/macrogen/box-logo.png");
  background-size: cover;
  border: 1px solid #D9D9D9;
  padding-top: 110px;
  padding-left: 127px;
  margin-bottom: 40px;
}

.macrogen.company-overview .section-symbol .item .desc .bg-logo img {
  width: 673px;
  height: 252px;
}

.macrogen.company-overview .section-symbol .item .desc .content {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #454545;
}

.macrogen.company-overview .section-symbol .item .desc .download-area .btn-download {
  display: inline-block;
}

.macrogen.company-overview .section-symbol .item .desc .download-area .btn-download span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}

.macrogen.company-overview .section-symbol .item .desc .download-area .btn-download span:first-child {
  margin-right: 15px;
}

.macrogen.company-overview .section-symbol .item .desc .color-list {
  margin-bottom: 59px;
  overflow: hidden;
}

.macrogen.company-overview .section-symbol .item .desc .color-list li {
  float: left;
  width: 212px;
  height: 270px;
}

.macrogen.company-overview .section-symbol .item .desc .color-list li .color {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.macrogen.company-overview .section-symbol .item .desc .color-list li .color.color-1 {
  background-color: #001E62;
}

.macrogen.company-overview .section-symbol .item .desc .color-list li .color.color-2 {
  background-color: #00BFB2;
}

.macrogen.company-overview .section-symbol .item .desc .color-list li .color.color-3 {
  background-color: #84BD00;
}

.macrogen.company-overview .section-symbol .item .desc .color-list li .color.color-4 {
  background-color: #E50050;
}

.macrogen.company-overview .section-symbol .item .desc .color-list li .value {
  padding-left: 19px;
}

.macrogen.company-overview .section-symbol .item .desc .color-list li .value span:first-child {
  display: inline-block;
  width: 49px;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  color: #454545;
  margin-right: 30px;
}

.macrogen.company-overview .section-symbol .item .desc .color-list li .value span:nth-child(2) {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: #454545;
}

.macrogen.company-overview .section-symbol .item .desc .brochure_img {
  margin-bottom: 49px;
}

.macrogen.company-overview .section-symbol .item .desc .brochure_img img {
  box-shadow: 5px 5px 8px 0px #00000026;
}

.macrogen.macrogen-authorization .slide-tab-wrap {
  margin-top: 153px;
  margin-bottom: 139px;
}

.macrogen.macrogen-authorization .section {
  padding-top: 80px;
}

.macrogen.macrogen-authorization .section#qualityManagementSystem {
  padding-top: 0;
  margin-top: 0;
}

.macrogen.macrogen-authorization .section#qualityManagementSystem>.title {
  border-top: none;
}

.macrogen.macrogen-authorization .section .btn-sm {
  padding: 7px 25px 5px;
  min-width: 124px;
}

.macrogen.macrogen-authorization .section>.title {
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -3px;
  color: #000000;
  border-top: 10px solid #f5f5f5;
  padding-top: 120px;
}

.macrogen.macrogen-authorization .section>.title .tooltip-box {
  display: inline-block;
  vertical-align: text-bottom;
}

.macrogen.macrogen-authorization .section>.title .tooltip-box .text-box {
  top: 74px;
}

.macrogen.macrogen-authorization .section .title-sm {
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 16px;
}

.macrogen.macrogen-authorization .section .title-sm span {
  display: inline-block;
  vertical-align: middle;
}

.macrogen.macrogen-authorization .section .title-sm>div {
  display: inline-block;
  vertical-align: middle;
}

.macrogen.macrogen-authorization .section .desc {
  display: block;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
  margin-bottom: 30px;
}

.macrogen.macrogen-authorization .section .desc.with-date {
  margin-bottom: 10px;
}

.macrogen.macrogen-authorization .section .date {
  display: block;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.75px;
  color: #909090;
  margin-bottom: 30px;
}

.macrogen.macrogen-authorization .section .img-wrap {
  padding-top: 30px;
  overflow: hidden;
}

.macrogen.macrogen-authorization .section .img-wrap .img {
  float: left;
  width: 381px;
  height: auto;
  text-align: center;
  margin-right: 43px;
  margin-bottom: 0;
}

.macrogen.macrogen-authorization .section .img-wrap .img:first-child,
.macrogen.macrogen-authorization .section .img-wrap .img:nth-child(2),
.macrogen.macrogen-authorization .section .img-wrap .img:nth-child(3) {
  margin-bottom: 70px;
}

.macrogen.macrogen-authorization .section .img-wrap .img:first-child .tit,
.macrogen.macrogen-authorization .section .img-wrap .img:nth-child(2) .tit,
.macrogen.macrogen-authorization .section .img-wrap .img:nth-child(3) .tit {
  padding-top: 30px;
}

.macrogen.macrogen-authorization .section .img-wrap .img .tit {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.75px;
  color: #000000;
  text-align: left;
  margin-bottom: 20px;
}

.macrogen.macrogen-authorization .section .img-wrap .img img {
  display: block;
  width: 100%;
  height: 233px;
  margin-bottom: 23px;
}

.macrogen.macrogen-authorization .section .img-wrap .img:nth-child(3n) {
  margin-right: 0;
}

.macrogen.macrogen-authorization .section .img {
  width: 381px;
  height: 233px;
}

.macrogen.macrogen-authorization .section .img img {
  width: 100%;
  height: 100%;
}

.macrogen.macrogen-authorization .section>.box {
  padding: 80px 0;
  border-bottom: 1px solid #E9E9E9;
}

.macrogen.macrogen-authorization .section>.box:last-of-type {
  padding-bottom: 0;
}

.macrogen.macrogen-authorization .section>.box::after {
  content: '';
  display: block;
  clear: both;
}

.macrogen.macrogen-authorization .section>.box:last-child {
  border-bottom: 0;
}

.macrogen.macrogen-authorization .section>.box.box-full-sm {
  margin-top: 20px;
}

.macrogen.macrogen-authorization .section>.box.box-full-sm.box-full {
  padding-bottom: 120px;
}

.macrogen.macrogen-authorization .section>.box.box-full-sm .desc {
  margin-bottom: 0;
}

.macrogen.macrogen-authorization .section>.box.box-full {
  padding-bottom: 80px;
}

.macrogen.macrogen-authorization .section>.box.box-full .left {
  float: none;
  width: 100%;
  margin-right: 0;
}

.macrogen.macrogen-authorization .section>.box .left {
  float: left;
  width: 816px;
  margin-right: 44px;
}

.macrogen.macrogen-authorization .section>.box .right {
  float: left;
  width: calc(100% - 816px - 44px);
}

.macrogen.macrogen-authorization .tooltip-box .text-box {
  top: 52px;
}

.macrogen.recruitment-info .section {
  padding-bottom: 100px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 100px;
}

.macrogen.recruitment-info .section .btn-sm {
  padding: 7px 25px 5px;
  min-width: 124px;
}

.macrogen.recruitment-info .section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.macrogen.recruitment-info .section>.title {
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #000000;
}

.macrogen.recruitment-info .section>.desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #707070;
  margin-top: 15px;
  margin-bottom: 60px;
}

.macrogen.recruitment-info .section .select-box {
  margin: 60px 0 30px 20px;
  border-bottom: 0;
  padding-left: 10px;
}

.macrogen.recruitment-info .section .select-box .select_default {
  width: 135px;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
}

.macrogen.recruitment-info .section .img-recruitment-info {
  margin-top: 60px;
  width: 1244px;
  height: 317px;
}

.macrogen.recruitment-info .section .img-recruitment-info img {
  width: 100%;
  height: 100%;
}

.macrogen.recruitment-info .section .file-download {
  padding-bottom: 20px;
}

.macrogen.recruitment-info .section .file-download .item .title {
  color: #454545;
}

.macrogen.recruitment-info .section .file-download .icon {
  margin-right: 40px;
}

.macrogen.recruitment-info .section .attachment-box {
  position: relative;
  padding: 30px 30px 26px 144px;
  background-color: #F7F7F7;
}

.macrogen.recruitment-info .section .attachment-box .file {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #454545;
  margin-right: 40px;
  max-width: 1060px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.macrogen.recruitment-info .section .attachment-box::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 21px;
  left: 104px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E9E9E9;
}

.macrogen.recruitment-info .section .attachment-box::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/macrogen/ic-attach.svg");
  background-size: cover;
}

.macrogen.recruitment-info .section .board .detail .heading .department {
  font-weight: 700;
  font-size: 26px;
  line-height: 38px;
  letter-spacing: -0.75px;
  color: #000000;
  margin-bottom: 6px;
}

.macrogen.recruitment-info .section .board .detail .heading.with-badge {
  position: relative;
}

.macrogen.recruitment-info .section .board .detail .heading.with-badge .title {
  width: calc(100% - 110px);
}

.macrogen.recruitment-info .section .board .detail .heading.with-badge .badge-recruit {
  top: 0;
  right: 0;
  transform: none;
}

.macrogen.recruitment-info .section .board .list .item:hover .tit-sub {
  color: #E50050;
}

.macrogen.recruitment-info .section .board .list .item:hover .tit {
  color: #E50050;
}

.macrogen.recruitment-info .section .board .list .item:hover .date {
  color: #E50050;
}

.macrogen.global-macrogen .section-map {
  padding-top: 151px;
  margin-bottom: 150px;
}

.macrogen.global-macrogen .section-map>.title {
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 21px;
}

.macrogen.global-macrogen .section-map>.desc {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #000000;
  margin-bottom: 120px;
}

.macrogen.global-macrogen .section-map .map {
  position: relative;
  width: 1244px;
  height: 764px;
  background-image: url("../img/macrogen/bg-map.png");
  background-size: cover;
}

.macrogen.global-macrogen .section-map .map .pin {
  position: absolute;
  padding: 0 16px 0 40px;
  height: 38px;
  line-height: 36px;
  background-color: #FFFFFF;
  border: 1px solid #C9C9C9;
  box-sizing: border-box;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
  background-image: url(../img/macrogen/ic-pin.svg);
  background-size: 16px 16px;
  background-position: left 16px center;
  background-repeat: no-repeat;
}

.macrogen.global-macrogen .section-map .map .pin:hover,
.macrogen.global-macrogen .section-map .map .pin.active {
  background-color: #E50050;
  border-color: #E50050;
  box-shadow: 0 25px 20px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  background-image: url(../img/macrogen/ic-pin-foc.svg);
}

.macrogen.global-macrogen .section-map .map .pin.poland {
  top: 18px;
  left: 247px;
}

.macrogen.global-macrogen .section-map .map .pin.amsterdam {
  top: 63px;
  left: 70px;
}

.macrogen.global-macrogen .section-map .map .pin.leuven {
  top: 108px;
  left: 103px;
}

.macrogen.global-macrogen .section-map .map .pin.paris {
  top: 150px;
  left: 69px;
}

.macrogen.global-macrogen .section-map .map .pin.basel {
  top: 150px;
  left: 226px;
}

.macrogen.global-macrogen .section-map .map .pin.milan {
  top: 242px;
  left: 165px;
}

.macrogen.global-macrogen .section-map .map .pin.madrid {
  top: 210px;
  left: 4px;
}

.macrogen.global-macrogen .section-map .map .pin.seoul {
  top: 42.24px;
  left: 602px;
}

.macrogen.global-macrogen .section-map .map .pin.songdo {
  top: 84.08px;
  left: 576px;
}

.macrogen.global-macrogen .section-map .map .pin.daejeon {
  top: 136.38px;
  left: 612px;
}

.macrogen.global-macrogen .section-map .map .pin.tokyo {
  top: 205.47px;
  left: 570px;
}

.macrogen.global-macrogen .section-map .map .pin.biopolis {
  top: 340.08px;
  left: 471px;
}

.macrogen.global-macrogen .section-map .map .pin.boston {
  top: 54.21px;
  left: 1087px;
}

.macrogen.global-macrogen .section-map .map .pin.newyork {
  top: 111.74px;
  left: 1029px;
}

.macrogen.global-macrogen .section-map .map .pin.rockville {
  top: 175.55px;
  left: 970px;
}

.macrogen.global-macrogen .section-map .map .pin.virginia {
  top: 228.89px;
  left: 939px;
}

.macrogen.global-macrogen .section-map .map .pin.manchester {
  top: 18px;
  left: 70px;
}

.macrogen.global-macrogen .section-map .map .pin.berlin {
  top: 63px;
  left: 316px;
}

.macrogen.global-macrogen .section-map .map .pin.santiago {
  top: 513.35px;
  left: 995px;
}

.macrogen.global-macrogen .section-map-detail .box {
  position: relative;
  margin-bottom: 280px;
}

.macrogen.global-macrogen .section-map-detail .box:last-of-type:before {
  background-color: transparent;
}

.macrogen.global-macrogen .section-map-detail .box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #E9E9E9;
  bottom: -140px;
  left: 0;
}

.macrogen.global-macrogen .section-map-detail .box::after {
  content: '';
  display: block;
  clear: both;
}

.macrogen.global-macrogen .section-map-detail .box:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.macrogen.global-macrogen .section-map-detail .box>.title {
  float: left;
  width: 281px;
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -3px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail {
  float: left;
  width: calc(100% - 281px);
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item {
  margin-bottom: 120px;
  /*  scroll-margin-top: 200px;*/
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item.height_fix {
  margin-top: -200px;
  padding-top: 200px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item:last-child {
  margin-bottom: 0;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .name {
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .name .badge {
  font-weight: 500;
  line-height: 25px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .img {
  width: 923px;
  height: 420px;
  margin-bottom: 30px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .img img {
  width: 100%;
  height: 100%;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info ul {
  margin-bottom: 20px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info ul li {
  margin-bottom: 8px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info ul li:last-child {
  margin-bottom: 0;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info ul li span {
  display: inline-block;
  vertical-align: middle;
  line-height: 32px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info ul li span:first-child {
  position: relative;
  vertical-align: middle;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.75px;
  padding-left: 13px;
  margin-right: 15px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info ul li span:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000000;
  vertical-align: middle;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info ul li span:nth-child(2) {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info .address {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #707070;
  margin-bottom: 8px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info .address span {
  font-weight: 700;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info .tel span {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  color: #707070;
  margin-right: 8px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info .tel span:nth-child(3)::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 16px;
  left: -21px;
  top: 1px;
  background-color: #e9e9e9;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info .tel a {
  font-size: 16px;
  line-height: 30px;
  color: #707070;
  margin-right: 41px;
}

.macrogen.global-macrogen .section-map-detail .box>.detail .item .info .tel a:last-child {
  margin-right: 0;
}

.macrogen.ethical-management .btn-sm {
  padding: 7px 25px 5px;
  min-width: 124px;
}

.macrogen.ethical-management .section-description {
  padding: 150px 0;
}

.macrogen.ethical-management .section-description:last-child {
  padding-bottom: 0;
}

.macrogen.ethical-management .section-description .inner {
  position: relative;
  width: 1244px;
  margin: 0 auto;
  z-index: 1;
}

.macrogen.ethical-management .section-description .text-lg {
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -3px;
  color: #000000;
  margin-bottom: 28px;
}

.macrogen.ethical-management .section-description .desc {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #000000;
}

.macrogen.ethical-management .section-bg {
  padding: 150px 0;
  position: relative;
  width: 100%;
  height: 1180px;
  background-image: url("../img/macrogen/bg-sub-ethical-management.png");
  background-size: cover;
  background-size: 1920px 1180px;
  background-repeat: no-repeat;
  /* 딤드제거
       &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(180deg, rgba(100, 109, 118, 0.35) 0%, rgba(42, 76, 83, 0.7) 100%);
        }*/
}

.macrogen.ethical-management .section-bg .inner {
  position: relative;
  width: 1244px;
  margin: 0 auto;
  z-index: 1;
}

.macrogen.ethical-management .section-bg .text-lg {
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -3px;
  color: #000000;
  margin-bottom: 20px;
}

.macrogen.ethical-management .section-bg .content {
  margin-top: 150px;
  width: 1137px;
}

.macrogen.ethical-management .section-bg .content li {
  float: left;
  width: 281px;
  height: 186px;
  margin-right: 147px;
  margin-bottom: 100px;
}

.macrogen.ethical-management .section-bg .content li:nth-child(3n) {
  margin-right: 0;
}

.macrogen.ethical-management .section-bg .content li .tit {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: -1px;
  color: #FFFFFF;
}

.macrogen.ethical-management .section-bg .content li .desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #FFFFFF;
}

.macrogen.ethical-management .section-tip {
  padding: 150px 0;
}

.macrogen.ethical-management .section-tip:last-child {
  padding-bottom: 0;
}

.macrogen.ethical-management .section-tip .inner {
  position: relative;
  width: 1244px;
  margin: 0 auto;
  z-index: 1;
}

.macrogen.ethical-management .section-tip .row {
  margin-left: 0;
  padding-right: 0;
  margin-bottom: 10px;
}

.macrogen.ethical-management .section-tip .row>* {
  padding-left: 5px;
  padding-right: 5px;
}

.macrogen.ethical-management .section-tip .text-md {
  font-weight: 700;
  font-size: 44px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #000000;
  margin-bottom: 20px;
}

.macrogen.ethical-management .section-tip .desc {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #000000;
}

.macrogen.ethical-management .section-tip .subject-to-report {
  padding-bottom: 120px;
  margin-top: 120px;
  margin-bottom: 120px;
  border-bottom: 1px solid #E9E9E9;
}

.macrogen.ethical-management .section-tip .subject-to-report .tit {
  position: relative;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 40px;
}

.macrogen.ethical-management .section-tip .subject-to-report .row {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
}

.macrogen.ethical-management .section-tip .subject-to-report .row:last-child {
  margin-bottom: 0;
}

.macrogen.ethical-management .section-tip .subject-to-report .col {
  padding-left: 10px;
  padding-right: 10px;
}

.macrogen.ethical-management .section-tip .subject-to-report .col .desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #666666;
}

.macrogen.ethical-management .section-tip .subject-to-report .col .item {
  background-color: #F7F7F7;
  height: 160px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
  padding: 40px 0 40px 40px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item {
  display: flex;
  height: 261px;
  margin-bottom: 120px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item:last-child {
  margin-bottom: 0;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item:last-child .img:after {
  border: none;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .img {
  position: relative;
  width: 261px;
  height: 261px;
  border-radius: 50%;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .img:after {
  content: '';
  display: inline-block;
  border-right: 1px dashed #909090;
  width: 1px;
  height: 80px;
  position: absolute;
  left: 50%;
  bottom: -100px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .img .label {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 41px;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #000000;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .img .tit {
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  letter-spacing: -1px;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info {
  display: flex;
  width: calc(100% - 261px);
  height: 261px;
  justify-content: center;
  flex-direction: column;
  padding-left: 60px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info .desc {
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: -2px;
  margin-bottom: 0;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info .tip {
  position: relative;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #909090;
  padding-left: 27px;
  margin-top: 21px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info .tip::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../img/macrogen/ic-tip.svg");
  background-size: cover;
  left: 0;
  top: 8px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info .link {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: #2E87EF;
  margin-top: 40px;
  text-decoration: underline;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info .desc-sm {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.75px;
  color: #2E87EF;
  margin-top: 40px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info .desc-xs {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
  margin-top: 10px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info ul {
  margin-top: 40px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info ul li {
  margin-bottom: 10px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info ul li:last-child {
  margin-bottom: 0;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info ul li span {
  display: inline-block;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info ul li span:first-child {
  position: relative;
  width: 174px;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #000000;
  padding-left: 15px;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info ul li span:first-child::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: 11px;
  background-color: #000000;
  border-radius: 50%;
}

.macrogen.ethical-management .section-tip .subject-to-report-step .item .info ul li span:nth-child(2) {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
}

.macrogen.ethical-management .section-banner {
  width: 100%;
  height: 560px;
  background-image: url("../img/macrogen/bg-ethical-banner-1.png");
  background-size: cover;
  background-size: 1920px 560px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 240px;
}

.macrogen.ethical-management .section-banner .inner {
  position: relative;
  width: 1244px;
  margin: 0 auto;
  z-index: 1;
}

.macrogen.ethical-management .section-banner .font-slogan {
  line-height: 98px;
  margin-bottom: 30px;
}

.macrogen.ethical-management .section-banner .desc {
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
}

.macrogen.ethical-management .section-reward {
  padding-top: 120px;
  padding-bottom: 150px;
}

.macrogen.ethical-management .section-reward .inner {
  position: relative;
  width: 1244px;
  margin: 0 auto;
  z-index: 1;
}

.macrogen.ethical-management .section-reward .list .item {
  padding: 100px 0;
  border-bottom: 1px solid #E9E9E9;
}

.macrogen.ethical-management .section-reward .list .item::after {
  content: '';
  display: block;
  clear: both;
}

.macrogen.ethical-management .section-reward .list .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.macrogen.ethical-management .section-reward .list .item:first-child {
  padding-top: 0;
}

.macrogen.ethical-management .section-reward .list .item .list-header {
  float: left;
  width: calc(100% - 816px);
}

.macrogen.ethical-management .section-reward .list .item .list-header .title {
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -3px;
  color: #000000;
  margin-bottom: 40px;
}

.macrogen.ethical-management .section-reward .list .item .list-body {
  float: left;
  width: 816px;
  overflow: hidden;
}

.macrogen.ethical-management .section-reward .list .item .list-body .pagination-wrap {
  margin: 20px 0 0;
}

.macrogen.ethical-management .section-reward .list .item .list-body .pagination-wrap .navigation {
  position: static;
}

.macrogen.ethical-management .section-reward .list .item .list-body .pagination-wrap .navigation .page-item {
  position: static;
  margin-right: 8px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .pagination-wrap .navigation .page-item:focus {
  outline: none;
  box-shadow: none;
}

.macrogen.ethical-management .section-reward .list .item .list-body .pagination-wrap .navigation .page-item:last-child {
  margin-right: 0;
}

.macrogen.ethical-management .section-reward .list .item .list-body .desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
  margin-bottom: 50px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward {
  width: 816px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide {
  width: 816px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box {
  padding: 40px;
  background-color: #F7F7F7;
  overflow: hidden;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .img {
  float: left;
  width: 280px;
  height: 346px;
  margin-right: 40px;
  position: relative;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .img:after {
  content: '';
  display: inline-block;
  width: 61px;
  height: 54px;
  background-image: url("../img/macrogen/img-trophy.png");
  background-size: cover;
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .img img {
  width: 100%;
  height: 100%;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info {
  float: left;
  width: calc(100% - 280px - 40px);
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info .sub {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.75px;
  color: #2E87EF;
  margin-bottom: 15px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info .name {
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 6px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info .job {
  position: relative;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.75px;
  color: #707070;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info .job::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 416px;
  height: 1px;
  background-image: url("../img/macrogen/bg-line.png");
  background-size: cover;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info .career {
  margin-bottom: 50px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info .career .tit {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.75px;
  margin-bottom: 10px;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info .career ul li {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
  padding-left: 15px;
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info .career ul li:last-child {
  margin-bottom: 0;
}

.macrogen.ethical-management .section-reward .list .item .list-body .reward .swiper-slide .box .info .career ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #454545;
  vertical-align: middle;
}

.section-header .inner {
  max-width: 1582px;
  min-width: 1244px;
  margin: 150px 0 150px auto;
}

.section-header .inner .text-lg {
  font-weight: 700;
  font-size: 56px;
}

.section-greenhouse .inner {
  display: flex;
  align-items: center;
  max-width: 1582px;
  min-width: 1244px;
  margin: 150px auto 150px 0;
}

.section-greenhouse .item:nth-child(odd) .inner {
  justify-content: flex-end;
  margin: 150px 0 150px auto;
}

.section-greenhouse .item:nth-child(odd) .cont-item {
  padding-right: 40px;
}

.section-greenhouse .item:nth-child(even) .cont-item {
  padding-left: 147px;
}

.section-greenhouse .item .cont-item {
  width: 642px;
}

.section-greenhouse .item .cont-item .title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 56px;
}

.section-greenhouse .item .cont-item .comment {
  font-weight: 400;
  font-size: 20px;
  color: #454545;
  letter-spacing: -0.75px;
}

.section-greenhouse .item .inner>img {
  max-width: 940px;
  min-width: 50%;
}

.section-greenhouse .item .tit-item {
  display: flex;
  align-items: flex-end;
  max-width: 1582px;
  min-width: 1244px;
  margin: 150px 0 50px auto;
  font-weight: 700;
  font-size: 32px;
}

.section-greenhouse .inner-tbl,
.section-greenhouse .inner-graph {
  max-width: 1582px;
  min-width: 1244px;
  margin: 50px 0 120px auto;
}
.section-greenhouse .txt {
	margin-top:30px;
	font-size:14px;
	font-weight:500;
	color:#909090;
}

.section-greenhouse .inner-tbl table {
  width: 1244px;
}

.section-greenhouse .inner-tbl .txt-grade,
.section-greenhouse .inner-tbl .txt-comment {
  width: 1244px;
  font-size: 14px;
  color: #909090;
  line-height: 40px;
}

.section-greenhouse .inner-tbl .txt-grade {
  margin-top: -40px;
  text-align: right;
}

.section-greenhouse .inner-graph .info-ksa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 1244px;
  margin-top: 80px;
  padding: 70px;
  font-size: 16px;
  color: #454545;
  background-color: #F7F7F7;
}

.section-greenhouse .inner-graph .info-ksa>img {
  flex: none;
}

.section-greenhouse .inner-graph .info-ksa .info {
  display: flex;
  flex-direction: column;
}

.section-greenhouse .inner-graph .info-ksa strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 22px;
  color: #000000;
}

.section-greenhouse .inner-graph .info-ksa .btn-certification {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 45px 0 0;
  font-weight: 700;
  font-size: 18px;
  color: #2E87EF;
  border: 0;
  background: none;
}

.section-greenhouse .inner-graph .info-ksa .btn-certification:before {
  flex: none;
  display: block;
  content: '';
  width: 41px;
  height: 41px;
  background: url('../img/esg/icon-view.png') no-repeat 50% 50%;
}

.section-greenhouse .inner-graph .info-ksa .info .section-greenhouse .table {
  width: 1244px;
  margin: 0;
}

.section-greenhouse table.table tr th {
  padding: 25px 30px;
}

.section-greenhouse table.table tbody tr td {
  padding: 10px 30px;
}

.item .tit-item:after {
  display: block;
  content: '';
  width: 50px;
  height: 3px;
  margin: 0 0 8px 8px;
  background-color: #000000;
}

.macrogen.ethical-management .section-activity {
  padding: 150px 0 30px;
}

.macrogen.ethical-management .section-activity .main-img {
  width: 100%;
  height: 610px;
  background-image: url(../img/macrogen/ethical-activity-thumb-1.png);
  background-size: 1582px 610px;
  background-position: 323px 0;
  background-repeat: no-repeat;
  margin-bottom: 120px;
  overflow: hidden;
}

.macrogen.ethical-management .section-activity .box {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 1244px;
}

.macrogen.ethical-management .section-activity .box>.title {
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -3px;
  color: #000000;
  margin-bottom: 20px;
}

.macrogen.ethical-management .section-activity .box>.desc {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #454545;
  margin-bottom: 80px;
}

.macrogen.ethical-management .section-activity .box .multi-stage {
  width: 100%;
}

.macrogen.ethical-management .section-activity .box .multi-stage .row {
  display: block;
  flex: none;
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}

.macrogen.ethical-management .section-activity .box .multi-stage .row .col {
  display: block;
  width: 580px;
  float: left;
  flex: none;
  padding: 0;
}

.macrogen.ethical-management .section-activity .box .multi-stage .row .col:first-child {
  margin-right: 84px;
}

.macrogen.ethical-management .section-activity .box .multi-stage .row .col:first-child .item.item-img {
  margin-top: 80px;
  margin-bottom: 0;
}

.macrogen.ethical-management .section-activity .box .multi-stage .row .col .item .tit {
  font-weight: 700;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: -0.75px;
  color: #000000;
  margin-bottom: 20px;
}

.macrogen.ethical-management .section-activity .box .multi-stage .row .col .item .desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
}

.macrogen.ethical-management .section-activity .box .multi-stage .row .col .item.item-img {
  margin-bottom: 80px;
}

.macrogen.macrogen-talent .section-description {
  padding: 150px 0 120px;
}

.macrogen.macrogen-talent .section-description .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.macrogen-talent .section-description .underline {
  display: inline-block;
  width: 60px;
  height: 5px;
  background-color: #000000;
  margin-left: 12px;
}

.macrogen.macrogen-talent .section-description .text-lg {
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -3px;
  color: #000000;
  margin-bottom: 28px;
}

.macrogen.macrogen-talent .section-description .desc {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #000000;
}

.macrogen.macrogen-talent .section-bg {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url(../img/macrogen/bg-talent-banner.png);
  background-size: 1820px 600px;
  background-position: 50px 0;
  background-repeat: no-repeat;
}

.macrogen.macrogen-talent .section-core-talent {
  position: relative;
  width: 100%;
  height: calc(2268px - 150px);
  padding-top: 180px;
  padding-bottom: 2px;
  overflow: hidden;
}

.macrogen.macrogen-talent .section-core-talent .inner {
  position: relative;
  width: 1244px;
  margin: 0 auto;
}

.macrogen.macrogen-talent .section-core-talent .font-h6 {
  margin-bottom: 30px;
}

.macrogen.macrogen-talent .section-core-talent .list .item {
  width: 100%;
  height: 540px;
  overflow: hidden;
  margin-bottom: 120px;
}

.macrogen.macrogen-talent .section-core-talent .list .item:nth-child(2) .img {
  margin-right: 100px;
}

.macrogen.macrogen-talent .section-core-talent .list .item:nth-child(2) .desc-area {
  width: calc(100% - 540px - 100px);
}

.macrogen.macrogen-talent .section-core-talent .list .item .desc-area {
  float: left;
  display: flex;
  width: calc(100% - 540px);
  height: 100%;
  justify-content: center;
  flex-direction: column;
}

.macrogen.macrogen-talent .section-core-talent .list .item .desc-area .font-h3 {
  margin-bottom: 60px;
}

.macrogen.macrogen-talent .section-core-talent .list .item .desc-area .font-body-h {
  color: #2E87EF;
  margin-bottom: 20px;
}

.macrogen.macrogen-talent .section-core-talent .list .item .desc-area .font-8 {
  font-weight: normal;
}

.macrogen.macrogen-talent .section-core-talent .list .item .img {
  float: left;
  width: 540px;
  height: 540px;
}

.macrogen.macrogen-talent .section-core-talent .list .item .img img {
  width: 100%;
  height: 100%;
}

.macrogen.macrogen-talent .DNA {
  position: absolute;
  background-size: contain;
}

.macrogen.macrogen-talent .DNA.DNA-1 {
  width: 732px;
  height: 777px;
  background-image: url("../img/macrogen/img-DNA.png");
  background-size: cover;
  top: 1000px;
  left: 30%;
}

.macrogen.macrogen-talent .DNA.DNA-2 {
  width: 732px;
  height: 777px;
  background-image: url("../img/macrogen/img-DNA2.png");
  background-size: cover;
  bottom: -1700px;
  left: 30%;
}

@media (max-width: 1440px) {
  .macrogen.macrogen-talent .DNA {
    display: none;
  }
}

.macrogen.macrogen-management .section-chairman {
  position: relative;
  padding-top: 150px;
  margin-bottom: 180px;
  overflow: hidden;
  padding-left: 323px;
}

.macrogen.macrogen-management .section-chairman .inner .font-h3 {
  margin-bottom: 100px;
}

.en .macrogen.macrogen-management .section-chairman .inner .chairman-info {
  padding-bottom: 100px;
  overflow: hidden;
  background-image: url(../img/macrogen/img-chairman.png);
  background-size: 1360px 1270px;
  background-position: 642px 0;
  background-repeat: no-repeat;
}

.macrogen.macrogen-management .section-chairman .inner .chairman-info .info {
  float: left;
  width: 582px;
  margin-right: 60px;
}

.en .macrogen.macrogen-management .section-chairman .inner .chairman-info .info .font-h7 {
  margin-bottom: 60px;
  line-height: 40px;
  word-break: keep-all;
  letter-spacing: -0.5px;
  line-height: 35px;
}

.en .macrogen.macrogen-management .section-chairman .inner .chairman-info .info .font-body {
  font-weight: normal;
  color: #454545;
  margin-bottom: 10%;
  word-break: keep-all;
  letter-spacing: -0.5px;
}

.macrogen.macrogen-management .section-chairman .inner .chairman-info .info .sign {
  text-align: right;
  height: 46px;
}

.macrogen.macrogen-management .section-chairman .inner .chairman-info .info .sign .font-body-h {
  font-weight: normal;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
}

.macrogen.macrogen-management .section-chairman .inner .chairman-info .info .sign .font-h6 {
  display: inline-block;
  vertical-align: bottom;
}

.macrogen.macrogen-management .section-chairman .inner .chairman-info .img {
  float: left;
  width: 940px;
}

.macrogen.macrogen-management .section-chairman .inner .chairman-info .img img {
  width: 100%;
  height: auto;
}

/* s : 2023리뉴얼 leader */
.macrogen.macrogen-management .section-leader {
  width: 1244px;
  margin: 0 auto;
  padding: 150px 0 0;
}

.macrogen.macrogen-management .section-leader .title {
  font-weight: bold;
  font-size: 60px;
  line-height: 75px;
  letter-spacing: 12px;
  text-transform: uppercase;
}

.macrogen.macrogen-management .section-leader .title span {
  display: block;
}

.macrogen.macrogen-management .section-leader .title span:last-of-type {
  position: relative;
  display: inline-block;
}

.macrogen.macrogen-management .section-leader .title span:last-of-type:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 85px;
  height: 6px;
  right: -100px;
  bottom: 13px;
  background: #000000;
}

.macrogen.macrogen-management .section-leader .thumbnail .item {
  width: 535px;
  opacity: 0;
}

.macrogen.macrogen-management .section-leader .thumbnail .item+.item {
  margin-top: 140px;
}

.macrogen.macrogen-management .section-leader .thumbnail .item .img {
  position: relative;
}

.macrogen.macrogen-management .section-leader .thumbnail .item .img .name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 247px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 40px 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  color: #FFFFFF;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.macrogen.macrogen-management .section-leader .thumbnail .item .img .name::before {
  content: "";
  display: block;
  margin-bottom: 16px;
  border-top: 1px solid #fff;
  opacity: 0.3;
}

.macrogen.macrogen-management .section-leader .thumbnail .item .img .name strong {
  display: block;
  margin-top: 3px;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 39px;
}

.macrogen.macrogen-management .section-leader .thumbnail .item .txt {
  margin-top: 30px;
}

.macrogen.macrogen-management .section-leader .thumbnail .item .txt li {
  position: relative;
  padding: 0 0 0 10px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
}

.macrogen.macrogen-management .section-leader .thumbnail .item .txt li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #454545;
}

.macrogen.macrogen-management .section-leader .thumbnail .item.first {
  margin-top: 271px;
}

/* e : 2023리뉴얼 leader */


.macrogen.macrogen-management .section-ceo {
  padding-top: 100px;
  width: 1920px;
  height: 1107px;
  background-image: url("../img/macrogen/bg-ceo-career.png");
  background-size: cover;
  width: auto;
  background-position: center;
  margin: 150px auto 0;
}

.macrogen.macrogen-management .section-ceo .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.macrogen-management .section-ceo .inner .item {
  overflow: hidden;
  margin-bottom: 60px;
}

.macrogen.macrogen-management .section-ceo .inner .item:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .title {
  font-weight: 700;
  /* font-size: 36px; */
  font-size: 34px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom:25px;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .title span {
  position: relative;
  display: inline-block;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .title span::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  right: -58px;
  bottom: 12px;
  background: #000;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list {
  /* padding-top: 37px; */
  color: #000;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list .row {
  padding: 0;
  margin: 0;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list .row .col {
  padding: 0;
  margin: 0;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list li {
  overflow: hidden;
  width: auto;
  margin-bottom: 10px;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list li:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list li span {
  float: left;
  /* white-space: nowrap; */
  display: inline-block;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list li span em {
  font-style: normal;
  letter-spacing: -0.75px;
  font-size: 18px;
  font-weight: 700;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list li span:first-child {
  position: relative;
  /* width: 155px; */
  font-weight: 700;
  /* font-size: 22px; */
  /* line-height: 28px; */
  letter-spacing: 0.5px;
  color: #000;
  padding-left: 20px;
  margin-right: 20px;

  font-size: 18px;
  line-height: 30px;
  width: 200px;
  margin-right: 0;
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list li span:first-child::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.macrogen.macrogen-management .section-ceo-career .inner .item .list li span:nth-child(2) {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -1.3px;
  color: #000;

  width: calc(100% - 200px);
  vertical-align: top;

}

.macrogen.macrogen-management .section-chairman-career {
  padding-top: 70px;
  width: 1920px;
  height: 1009px;
  background-image: url("../img/macrogen/bg-chairman-career.png");
  background-size: cover;
  width: auto;
  background-position: center;
  margin: 0 auto;
}

.macrogen.macrogen-management .section-chairman-career .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.macrogen-management .section-chairman-career .inner .item {
  overflow: hidden;
  margin-bottom: 30px;
}

.macrogen.macrogen-management .section-chairman-career .inner .item:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .title {
  float: left;
  position: relative;
  width: 214px;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #FFFFFF;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .title span {
  position: relative;
  display: inline-block;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list {
  float: left;
  width: calc(100% - 214px);
  padding-top: 35px;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list .row {
  padding: 0;
  margin: 0;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list .row .col {
  padding: 0;
  margin: 0;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list li {
  overflow: hidden;
  width: 500px;
  margin-bottom: 10px;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list li:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list li span {
  float: left;
  display: inline-block;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list li span em {
  font-style: normal;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list li span:first-child {
  position: relative;
  width: 180px;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  padding-left: 20px;
  margin-right: 20px;
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list li span:first-child::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #FFFFFF;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.macrogen.macrogen-management .section-chairman-career .inner .item .list li span:nth-child(2) {
  display: inline-block;
  width: 300px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -1.3px;
  color: #FFFFFF;
}

.macrogen.macrogen-management .section-ceo-career {
  padding-top: 150px;
  padding-right: 0;
  max-width:1244px;
  margin:0 auto;
}

.macrogen.macrogen-management .section-ceo-career .inner .sign {
  padding-left: 21.3248%;
  padding-bottom: 78px;
}

.macrogen.macrogen-management .section-ceo-career .inner .sign .font-h7 {
  display: block;
  line-height:1;
  font-size:24px;
}

/* .macrogen.macrogen-management .section-ceo-career .inner .item {
  height: 640px;
  margin-bottom: 180px;
  background-position: -10% center;
  background-repeat: no-repeat;
}

.macrogen.macrogen-management .section-ceo-career .inner .item.item1 {
  background-image: url(../img/macrogen/img-ceo1.png);
}

.macrogen.macrogen-management .section-ceo-career .inner .item.item2 {
  background-image: url(../img/macrogen/img-ceo2.png);
} */


.macrogen.macrogen-management .section-ceo-career .inner .item {display:flex; justify-content:space-between; align-items:flex-start; gap:40px;}
.macrogen.macrogen-management .section-ceo-career .inner .item .photo {width:660px; font-size:0px;}
.macrogen.macrogen-management .section-ceo-career .inner .item + .item {margin-top:155px;}

.macrogen.macrogen-management .section-ceo-career .inner .item .txt {
  /* padding-top: 60px; */
  min-height:100%;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  flex-flow:column;
  gap:50px;

  /* width: 480px;
  position: absolute;
  left: 1000px; */
}

.macrogen.macrogen-management .section-ceo-career .inner .item .sign {
  padding-left: 0;
  padding-bottom: 0;
}

.macrogen.macrogen-management .section-ceo-career .inner {
  /* width: 1244px;
         margin: 0 auto;
      padding-left: 21.3248%;*/
}

.macrogen.macrogen-management .section-ceo-career .inner .font-h3 {
  margin-bottom: 80px;
  /* font-size:58px; */
  font-size:44px;
}

.macrogen.macrogen-management .section-ceo-career .inner .info .item {
  margin-bottom: 80px;
  overflow: hidden;
}

.macrogen.macrogen-management .section-ceo .inner .font-h3 {
  color: #fff;
  margin-bottom: 80px;
}

.macrogen.macrogen-management .section-ceo .inner .info .font-h7 {
  float: left;
  width: 37.6904%;
  margin-right: 4.8115%;
  /*60px / 1247px*/
  word-break: keep-all;
  color: #fff;
}

.macrogen.macrogen-management .section-ceo .inner .info .font-body {
  word-break: keep-all;
  float: left;
  width: 56.8564%;
  font-weight: normal;
  color: #454545;
  letter-spacing: -0.85px;
  color: #fff;
}

.macrogen.macrogen-management .section-ceo .inner .sign {
  margin-top: 20px;
  text-align: right;
  height: 46px;
  color: #fff;
}

.macrogen.macrogen-management .section-ceo .inner .sign .font-body-h {
  font-weight: normal;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
}

.macrogen.macrogen-management .section-ceo .inner .sign .font-h6 {
  display: inline-block;
  vertical-align: bottom;
}

.macrogen.macrogen-history .slide-tab-wrap {
  width: 1244px;
  margin: 0 auto;
  padding-top: 140px;
}

.macrogen.macrogen-history .section-wrap {
  overflow: hidden;
}

.macrogen.macrogen-history .section {
  padding: 140px 0 0;
}

.macrogen.macrogen-history .section .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.macrogen-history .section .inner .year {
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.macrogen.macrogen-history .section .inner .title {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 64px;
  line-height: 93px;
  letter-spacing: -3px;
  color: #2E87EF;
  margin-bottom: 68px;
}

.macrogen.macrogen-history .section .inner .title::before {
  content: '';
  display: block;
}

.macrogen.macrogen-history .section .inner .title::after {
  content: '';
  display: block;
  position: absolute;
  width: 60px;
  height: 5px;
  background-color: #2E87EF;
  right: -70px;
  bottom: 20px;
}

.macrogen.macrogen-history .section .history-slider {
  position: relative;
  width: 100%;
  height: 740px;
}

.macrogen.macrogen-history .section .history-slider .inner {
  position: absolute;
  width: 1244px;
  height: 740px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.macrogen.macrogen-history .section .history-slider .inner .year {
  position: absolute;
  font-weight: 700;
  font-size: 150px;
  line-height: 183px;
  letter-spacing: -2px;
  color: #FFFFFF;
  bottom: 102px;
  left: 0;
  margin-bottom: 0;
}

.macrogen.macrogen-history .section .history-slider .inner .desc {
  position: absolute;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.75px;
  color: #FFFFFF;
  bottom: 80px;
  left: 0;
}

.macrogen.macrogen-history .section .history-slider .swiper-container {
  text-align: center;
}

.macrogen.macrogen-history .section .history-slider .swiper-container .swiper-slide {
  position: relative;
}

.macrogen.macrogen-history .section .history-slider .swiper-container .swiper-slide::after {
  content: '';
  display: block;
  position: absolute;
  width: 1260px;
  height: 600px;
  background-image: url("../img/macrogen/bg-history-circle.png");
  background-size: cover;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.macrogen.macrogen-history .section .history-slider .pagination-wrap {
  position: absolute;
  width: 100%;
  height: 45px;
  bottom: 80px;
  right: 0;
}

.macrogen.macrogen-history .section .history-slider .pagination-wrap .navigation {
  position: static;
  top: auto;
  left: auto;
  text-align: right;
}

.macrogen.macrogen-history .section .history-slider .pagination-wrap .navigation .page-item {
  position: static;
}

.macrogen.macrogen-history .section .history-slider .pagination-wrap .navigation .page-item.prev {
  margin-right: 8px;
}

.macrogen.macrogen-history .section .history-slider .pagination-wrap .navigation .page-item.prev .page-link {
  background-image: url(../img/macrogen/btn-nav-prev.svg);
}

.macrogen.macrogen-history .section .history-slider .pagination-wrap .navigation .page-item.next .page-link {
  background-image: url(../img/macrogen/btn-nav-next.svg);
}

.macrogen.macrogen-history .section .history-slider .swiper-pagination {
  bottom: auto;
  top: 55px;
  right: 0;
  text-align: right;
}

.macrogen.macrogen-history .section .history-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 0 7.5px;
}

.macrogen.macrogen-history .section .history-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}

.macrogen.macrogen-history .section .history-list {
  position: relative;
  padding-top: 123px;
  overflow: hidden;
}

.macrogen.macrogen-history .section .history-list .year-info {
  position: absolute;
  width: 428px;
}

.macrogen.macrogen-history .section .history-list .year-info li {
  position: relative;
  padding-left: 107px;
  margin-bottom: 40px;
}

.macrogen.macrogen-history .section .history-list .year-info li:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-history .section .history-list .year-info li span {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 23px;
  line-height: 39px;
  letter-spacing: 0.5px;
  color: #D9D9D9;
}

.macrogen.macrogen-history .section .history-list .year-info li span::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #000000;
  left: -99px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.macrogen.macrogen-history .section .history-list .year-info li span::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 50px;
  background-image: url("../img/macrogen/bg-history-line.svg");
  background-size: cover;
  left: -97px;
  bottom: -49px;
}

.macrogen.macrogen-history .section .history-list .year-info li.active span {
  font-size: 58px;
  /*line-height: 71px;*/
  line-height: 1;
  color: #000000;
}

.macrogen.macrogen-history .section .history-list .year-info li.active span::before {
  content: '';
  position: absolute;
  left: -107px;
  background-color: transparent;
  width: 23px;
  height: 23px;
  background-image: url("../img/macrogen/bg-history-dot.svg");
  background-size: cover;
}

.macrogen.macrogen-history .section .history-list .year-info li.active span::after {
  bottom: -41px;
}

.macrogen.macrogen-history .section .history-list .year-info li:first-child::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 50px;
  background-image: url("../img/macrogen/bg-history-line.svg");
  background-size: cover;
  left: 10px;
  top: -41px;
}

.macrogen.macrogen-history .section .history-list .year-info li:first-child::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #909090;
  border-radius: 50%;
  left: 8px;
  top: -62px;
}

.macrogen.macrogen-history .section .history-list .year-info li:last-child span::after {
  content: none;
}

.macrogen.macrogen-history .section .history-list .desc-info {
  padding-left: 428px;
}

.macrogen.macrogen-history .section .history-list .desc-info ul {
  margin-bottom: 100px;
}

.macrogen.macrogen-history .section .history-list .desc-info ul:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-history .section .history-list .desc-info ul li {
  margin-bottom: 22px;
  overflow: hidden;
}

.macrogen.macrogen-history .section .history-list .desc-info ul li:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-history .section .history-list .desc-info ul li .num {
  float: left;
  display: inline-block;
  width: 67px;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
}

.macrogen.macrogen-history .section .history-list .desc-info ul li .desc {
  float: left;
  display: inline-block;
  width: calc(100% - 67px);
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.75px;
  color: #454545;
}

.macrogen.macrogen-history .section .history-list .desc-info ul li .desc.desc-lg {
  line-height: 30px;
}

.macrogen.macrogen-history .section:last-child {
  padding-bottom: 0;
}

.macrogen.macrogen-human-resource .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.macrogen-human-resource .section-management {
  padding-top: 150px;
  padding-bottom: 179px;
}

.macrogen.macrogen-human-resource .section-management .font-h7 {
  line-height: 38px;
  margin-bottom: 60px;
}

.macrogen.macrogen-human-resource .section-management .font-h3 {
  line-height: 81px;
  margin-bottom: 154px;
}

.macrogen.macrogen-human-resource .section-management .step .row .col .item {
  width: 388px;
  height: 580px;
  background-image: url("../img/macrogen/thumb-human-resource-1.png");
  background-size: cover;
  padding: 50px;
}

.macrogen.macrogen-human-resource .section-management .step .row .col .item .tit {
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.macrogen.macrogen-human-resource .section-management .step .row .col .item .desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
}

.macrogen.macrogen-human-resource .section-management .step .row .col .item.item-2 {
  margin-top: -50px;
  background-image: url(../img/macrogen/thumb-human-resource-2.png);
}

.macrogen.macrogen-human-resource .section-management .step .row .col .item.item-3 {
  margin-top: -100px;
  background-image: url(../img/macrogen/thumb-human-resource-3.png);
}

.macrogen.macrogen-human-resource .section-rank-system {
  width: 1821px;
  height: 1100px;
  background-image: url("../img/macrogen/bg-human-resource-2.png");
  background-size: cover;
  width: auto;
  padding: 170px 50px 0;
}

.macrogen.macrogen-human-resource .section-rank-system .font-h7 {
  line-height: 38px;
  margin-bottom: 60px;
  color: #FFFFFF;
}

.macrogen.macrogen-human-resource .section-rank-system .font-h3 {
  line-height: 81px;
  margin-bottom: 120px;
  color: #FFFFFF;
}

.macrogen.macrogen-human-resource .section-rank-system .flow-bg {
  width: 1244px;
  height: 333px;
  background-image: url("../img/macrogen/human-resource-flow.png");
  background-size: cover;
}

.macrogen.macrogen-human-resource .section-welfare {
  padding: 150px 50px 0;
}

.macrogen.macrogen-human-resource .section-welfare .inner {
  position: relative;
  height: 338px;
  margin-bottom: 120px;
}

.macrogen.macrogen-human-resource .section-welfare .font-h7 {
  line-height: 38px;
  margin-bottom: 60px;
}

.macrogen.macrogen-human-resource .section-welfare .font-h3 {
  line-height: 81px;
  margin-bottom: 198px;
}

.macrogen.macrogen-human-resource .section-welfare .click-area {
  position: absolute;
  width: 380px;
  bottom: 0;
  right: 0;
}

.macrogen.macrogen-human-resource .section-welfare .click-area .font-body-h {
  font-weight: normal;
  margin-bottom: 60px;
}

.macrogen.macrogen-human-resource .section-welfare .item {
  width: 1821px;
  height: 580px;
  background-image: url("../img/macrogen/banner-human-resource-1.png");
  background-size: cover;
  width: auto;
  padding: 140px 50px 0;
  margin-bottom: 80px;
}

.macrogen.macrogen-human-resource .section-welfare .item:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-human-resource .section-welfare .item .font-h5 {
  margin-bottom: 138px;
  color: #FFFFFF;
}

.macrogen.macrogen-human-resource .section-welfare .item li {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 150px;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  letter-spacing: -0.75px;
  color: #000000;
  width: 230px;
  height: 150px;
  background-image: url("../img/macrogen/bg-human-resource-rect.png");
  background-size: cover;
  margin-right: 22px;
  border-radius: 5px;
}

.macrogen.macrogen-human-resource .section-welfare .item li:last-child {
  margin-right: 0;
}

.macrogen.macrogen-human-resource .section-welfare .item.item-2 {
  background-image: url(../img/macrogen/banner-human-resource-2.png);
}

.macrogen.macrogen-human-resource .section-welfare .item.item-3 {
  background-image: url(../img/macrogen/banner-human-resource-3.png);
}

.macrogen.macrogen-vision {
  position: relative;
}

.macrogen.macrogen-vision .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.macrogen-vision .section-vision {
  padding: 150px 0;
}

.macrogen.macrogen-vision .section-vision .inner {
  position: relative;
  z-index: 3;
}

.macrogen.macrogen-vision .section-vision .title {
  font-size: 130px;
  line-height: 144px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.macrogen.macrogen-vision .section-vision .diagram {
  text-align: right;
}

.macrogen.macrogen-vision .section-vision .diagram .img {
  display: inline-block;
  width: 1030px;
  height: 384px;
}

.macrogen.macrogen-vision .section-vision .diagram .img img {
  width: 100%;
  height: 100%;
}

.macrogen.macrogen-vision .section-vision .diagram .txt {
  display: inline-block;
  width: 1030px;
}

.macrogen.macrogen-vision .section-vision .diagram .txt .row {
  margin-left: 0;
  margin-right: 0;
}

.macrogen.macrogen-vision .section-vision .diagram .txt .col {
  text-align: left;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  padding-left: 0;
  padding-right: 0;
}

.macrogen.macrogen-vision .section-vision .diagram .txt .col:first-child {
  margin-right: 40px;
}

.macrogen.macrogen-vision .section-slogan {
  padding: 0 50px;
  min-width: 1244px;
}

.macrogen.macrogen-vision .section-slogan .bg {
  position: relative;
  width: 1820px;
  height: 1200px;
  background-image: url("../img/macrogen/bg-humanizing-genomics.png");
  background-size: cover;
  background-position: center;
  width: auto;
  margin: 0 auto;
}

.macrogen.macrogen-vision .section-slogan .bg .inner {
  position: relative;
  z-index: 5;
  padding-top: 180px;
  color: #FFFFFF;
  width: 62.85%;
}

.macrogen.macrogen-vision .section-slogan .bg .inner .font-h7 {
  position: relative;
  display: inline-block;
  line-height: 38px;
  margin-bottom: 220px;
}

.macrogen.macrogen-vision .section-slogan .bg .inner .font-h7::after {
  content: '';
  position: absolute;
  width: 45px;
  height: 3px;
  right: -55px;
  bottom: 12px;
  background-color: #FFFFFF;
}

.macrogen.macrogen-vision .section-slogan .bg .inner .title {
  position: relative;
  font-weight: 700;
  font-size: 120px;
  line-height: 108px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
  z-index: 1;
}

.macrogen.macrogen-vision .section-slogan .bg .inner .font-body-h {
  font-weight: normal;
  line-height: 32px;
}

.macrogen.macrogen-vision .section-slogan .bg .img {
  position: absolute;
  opacity: 1 !important;
  z-index: 3;
}

.macrogen.macrogen-vision .section-slogan .bg .img.img-1 {
  right: 13.8461%;
  top: 300px;
}

.macrogen.macrogen-vision .section-slogan .bg .img.img-2 {
  right: 17.5824%;
  top: 500px;
}

.macrogen.macrogen-vision .section-slogan .bg .img.img-3 {
  right: 16.3736%;
  top: 800px;
}

.macrogen.macrogen-vision .section-management-philosophy {
  overflow: hidden;
  padding-top: 100px;
  width: 100%;
  height: 980px;
  background-image: url(../img/macrogen/img-management-philosophy.png);
  background-size: 960px 799px;
  background-position: 0 0;
  background-repeat: no-repeat;
  padding-left: 1087px;
  margin-top: 180px;
}

.macrogen.macrogen-vision .section-management-philosophy .info .font-h7 {
  line-height: 38px;
  margin-bottom: 120px;
  white-space: nowrap;
}

.macrogen.macrogen-vision .section-management-philosophy .info .font-h4 {
  line-height: 60px;
  margin-bottom: 60px;
  white-space: nowrap;
}

.macrogen.macrogen-vision .section-management-philosophy .info .font-body {
  font-weight: normal;
  color: #454545;
  white-space: nowrap;
}

.macrogen.macrogen-vision .section-core-values {
  padding-top: 180px;
}

.macrogen.macrogen-vision .section-core-values .font-h7 {
  line-height: 38px;
  margin-bottom: 120px;
}

.macrogen.macrogen-vision .section-core-values .values::after {
  content: '';
  display: block;
  clear: both;
}

.macrogen.macrogen-vision .section-core-values .values .item {
  float: left;
  width: 360px;
  margin-right: 82px;
}

.macrogen.macrogen-vision .section-core-values .values .item:nth-child(2) {
  margin-top: -50px;
}

.macrogen.macrogen-vision .section-core-values .values .item:last-child {
  margin-right: 0;
  margin-top: -100px;
}

.macrogen.macrogen-vision .section-core-values .values .item .img {
  width: 360px;
  height: 360px;
  margin-bottom: 30px;
}

.macrogen.macrogen-vision .section-core-values .values .item .img img {
  width: 100%;
  height: 100%;
}

.macrogen.macrogen-vision .section-core-values .values .item .font-h5 {
  margin-bottom: 15px;
  line-height: 52px;
}

.macrogen.macrogen-vision .section-core-values .values .item .font-body {
  font-weight: normal;
  color: #454545;
}

.macrogen.macrogen-vision .parallax-DNA {
  position: absolute;
  width: 732px;
  height: 777px;
  background-image: url("../img/macrogen/img-vision-DNA.png?v2");
  background-size: cover;
  top: 1300px;
  left: -120px;
  z-index: 2;
}

.macrogen.macrogen-vision .parallax-DNA.DNA-2 {
  background-image: url(../img/macrogen/img-vision-DNA-2.png?v2);
  left: auto;
  right: 0;
  top: 3450px;
  z-index: 7;
}

.macrogen.macrogen-vision .parallax-DNA.DNA-3 {
  background-image: url(../img/macrogen/img-vision-DNA-3.png?v2);
  z-index: -1;
  top: 1700px;
}

@media (max-width: 1440px) {
  .macrogen.macrogen-vision .parallax-DNA {
    display: none;
  }
}

.macrogen.macrogen-contact-us {
  padding-top: 100px;
  /* 아이콘 */
}

.macrogen.macrogen-contact-us .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.macrogen-contact-us .ic-mail {
  display: inline-block;
  width: 16px;
  height: 30px;
  background: url("../img/macrogen/ic-mail.svg") 0 center no-repeat;
  background-size: 16px 16px;
  margin-right: 10px;
  transform: translateY(1px);
  vertical-align: middle;
}

.macrogen.macrogen-contact-us .ic-fax {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../img/macrogen/ic-fax.svg");
  background-size: cover;
  margin-right: 10px;
  transform: translateY(4px);
}

.macrogen.macrogen-contact-us .ic-call {
  display: inline-block;
  width: 16px;
  height: 30px;
  background: url(../img/macrogen/ic-call.svg) 0 center no-repeat;
  background-size: 16px 16px;
  margin-right: 10px;
  transform: translateY(3px);
  vertical-align: middle;
}

.macrogen.macrogen-contact-us .font-h3 {
  /* font-size: 58px; */
  /* margin-bottom: 20px;	 */
  line-height: 76px;
}

.macrogen.macrogen-contact-us .font-h7 {
  margin-bottom: 40px;
  /* color: #454545;	 */
}

.macrogen.macrogen-contact-us .font-h5 {
  margin-bottom: 60px;
}

.macrogen.macrogen-contact-us .map-wrap .info {
  margin-bottom: 46px;
}

.macrogen.macrogen-contact-us .map-wrap .info::after {
  content: '';
  display: block;
  clear: both;
}

.macrogen.macrogen-contact-us .map-wrap .info .item {
  position: relative;
  width: 50%;
  float: left;
}

/* .macrogen.macrogen-contact-us .map-wrap .info .item:last-child {
          padding-left: 126px; }*/
.macrogen.macrogen-contact-us .map-wrap .info .item:last-child::after {
  content: none;
}

.macrogen.macrogen-contact-us .map-wrap .info .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100px;
  right: 0;
  top: 0;
  background: #E9E9E9;
}

.macrogen.macrogen-contact-us .map-wrap .info .item .tit {
  float: left;
  display: inline-block;
  width: 174px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 26px;
  line-height: 38px;
  letter-spacing: -0.75px;
  margin-right: 40px;
}

.macrogen.macrogen-contact-us .map-wrap .info .item .desc {
  float: left;
  width: calc(100% - 174px - 40px);
}

.macrogen.macrogen-contact-us .map-wrap .info .item .desc li {
  margin-bottom: 10px;
}

.macrogen.macrogen-contact-us .map-wrap .info .item .desc li:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-contact-us .map-wrap .info .item .desc li a {
  display: inline-block;
  vertical-align: middle;
  line-height: 32px;
  font-weight: 500;
  font-size: 18px;
  color: #454545;
}

.macrogen.macrogen-contact-us .map-wrap .info .item .desc li span {
  display: inline-block;
  vertical-align: middle;
  line-height: 32px;
  font-size: 18px;
  font-weight: 700;
  color: #454545;
  margin-right: 4px;
}

.macrogen.macrogen-contact-us .map-wrap .map-info {
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 120px;
}

.macrogen.macrogen-contact-us .map-wrap .map-info .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.macrogen.macrogen-contact-us .map-wrap .map-info .address-wrap {
  padding: 52px 0;
}

.macrogen.macrogen-contact-us .map-wrap .map-info .address-wrap .pin {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-image: url("../img/macrogen/ic-pin.svg");
  background-size: cover;
  margin-right: 6px;
  transform: translateY(2px);
}

.macrogen.macrogen-contact-us .map-wrap .map-info .address-wrap .tit {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  margin-right: 20px;
}

.macrogen.macrogen-contact-us .map-wrap .map-info .address-wrap .address {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #454545;
}

.macrogen.macrogen-contact-us .map-wrap .map-info .pin-btn-wrap .google-pin {
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 17px;
  background-image: url("../img/macrogen/ic-pin-google.svg");
  background-size: cover;
  margin-right: 8px;
}

.macrogen.macrogen-contact-us .map-wrap .map-info .pin-btn-wrap span {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.75px;
  color: #000000;
  padding-top: 2px;
}

.macrogen.macrogen-contact-us .btn-wrap {
  display: flex;
  justify-content: flex-end;
}

/* s add common 2023.04.12 */
.toggle-btn .arrow {
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.toggle-btn .arrow.closetoggle {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.toggle-btn .arrow .close {
  width: 100%;
  height: 100%;
  background: url('../img/common/ico-arrow-bottom.png') no-repeat center center;
}

.essential span::after {
  content: '*';
  color: #2E87EF;
  margin-left: 5px;
}

.select_default span::after,
.select_list span::after,
.input-group-email span::after {
  content: '';
}

.input-group-email {
  display: flex;
  width: calc(100% - 174px - 40px);
}

.input-group-email em {
  color: #d9d9d9;
  font-style: inherit;
  line-height: 50px;
  font-size: 18px;
}

.input-group-email .email {
  width: 50%;
}

.input-group-email .select-box {
  width: 50%;
  line-height: 50px;
  padding-left: 10px;
}

.input-group-email .input_email {
  outline: none;
}

/*2023-04-19 추가*/
.select-box.full {
  flex: 1;
}

.select-box.full .select_default {
  display: flex;
  flex: 1;
  align-items: center;
  height: 100%;
}

.input-group .full .select_default>span {
  color: #d9d9d9;
  font-weight: 400;
}

.input-group .full .select_default>span.active {
  color: #000;
}

.input-group .security {
  width: 160px;
  height: 60px;
  background: #E9E9E9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 32px;
  margin-right: 15px;
}

.privacy_box .input-group-box {
  display: none;
}

.notice-text02 {
  display: flex;
  align-items: flex-start;
  color: #909090;
  font-size: 18px;
  line-height: 32px;
}

.notice-text02 .icon {
  margin-right: 10px;
}

.notice-text02 .icon-attention {
  margin-top: 6px;
}

/* e add common 2023.04.12 */
/* s add contactUS 2023.04.12 */
.macrogen.macrogen-contact-us .category {
  margin-bottom: 100px;
  border-top: 1px solid #E9E9E9;
  border-left: 1px solid #E9E9E9;
}

.macrogen.macrogen-contact-us .category .item {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 50%;
  padding: 50px;
  border-bottom: 1px solid #E9E9E9;
  border-right: 1px solid #E9E9E9;
  overflow: hidden;
}

.macrogen.macrogen-contact-us .category>ul {
  display: flex;
  flex-wrap: wrap;
}

.macrogen.macrogen-contact-us .category .item .title {
  width: 198px;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: -0.75px;
}

.macrogen.macrogen-contact-us .category .item .desc {
  flex: 1;
}

.macrogen.macrogen-contact-us .category .item .desc .name {
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.75px;
  color: #000000;
  margin-bottom: 20px;
}

.macrogen.macrogen-contact-us .category .item .desc .name~ul,
.macrogen.macrogen-contact-us .category .item .desc ul~.name {
  margin-top: 20px;
}

.macrogen.macrogen-contact-us .category .item .desc li {
  margin-bottom: 2px;
}

.macrogen.macrogen-contact-us .category .item .desc li:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-contact-us .category .item .desc li span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  color: #454545;
  margin-right: 8px;
}

.macrogen.macrogen-contact-us .category .item .desc li a {
  font-size: 16px;
  line-height: 30px;
  color: #454545;
  display: inline-block;
  vertical-align: middle;
}

.macrogen.macrogen-contact-us .inner .sub-copy {
  padding-bottom: 120px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  padding-top: 20px;
}

/*2023-04-21 수정*/
.macrogen.macrogen-contact-us .map-wrap .contact_map {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('../img/macrogen/contactus_map.png') no-repeat center center / contain;
}

.section .map-wrap .contact_map .map_pins .pin {
  position: absolute;
  cursor: pointer;
}

.section .map-wrap .map_pins .pin i {
  width: 12px;
  height: 16px;
  display: inline-block;
  background-image: url('../img/main/ico-pin-black_big.png');
  background-size: 12px 16px;
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.section .map-wrap .map_pins .pin i:hover {
  width: 12px;
  height: 16px;
  display: inline-block;
  background-image: url('../img/main/ico-pin-pink_big.png');
  background-size: 12px 16px;
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.section .map-wrap .map_pins .pin .ic-call {
  display: inline-block;
  width: 16px;
  height: 30px;
  background: url('../img/macrogen/ic-call.svg') 0 center no-repeat;
  background-size: 16px 16px;
  margin-right: 5px;
  margin-top: -5px;
  transform: translateY(3px);
  vertical-align: middle;
}

.section .map-wrap .map_pins .popup_info strong {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
}

.section .map-wrap .map_pins .popup_info p {
  height: 29px;
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #000000;
  margin-top: 5px;
}

.section .map-wrap .map_pins .popup_info {
  display: none;
}

.section .map-wrap .map_pins .popup_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  padding: 30px;
  line-height: 30px;
  gap: 5px;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.08);
  z-index: 1;
  color: #000;
  font-size: 18px;
}

.section .map-wrap .map_pins .poland .popup_inner {
  top: -119px;
  left: -20px;
  width: 396px;
  height: 121px;
}

.section .map-wrap .map_pins .amsterdam .popup_inner {
  top: -161px;
  left: -20px;
  width: 441px;
  height: 163px;
}

.section .map-wrap .map_pins .leuven .popup_inner {
  top: -182px;
  left: -20px;
  width: 593px;
  height: 185px;
}

.section .map-wrap .map_pins .paris .popup_inner {
  top: -160px;
  left: -20px;
  width: 489px;
  height: 163px;
}

.section .map-wrap .map_pins .basel .popup_inner {
  top: -160px;
  left: -20px;
  width: 489px;
  height: 163px;
}

.section .map-wrap .map_pins .madrid .popup_inner {
  top: -162px;
  left: -20px;
  width: 470px;
  height: 163px;
}

.section .map-wrap .map_pins .milan .popup_inner {
  top: -161px;
  left: -20px;
  width: 395px;
  height: 163px;
}

.section .map-wrap .map_pins .seoul .popup_inner {
  top: -224px;
  left: 22px;
  width: 457px;
  /*height: 400px;*/
}

.section .map-wrap .map_pins .seoul .popup_inner .border_bottom {
  width: 391px;
  border-bottom: 1px solid #e9e9e9;
  margin: 30px auto;
}

.section .map-wrap .map_pins .tokyo .popup_inner {
  top: -161px;
  left: -20px;
  width: 617px;
  height: 163px;
}

.section .map-wrap .map_pins .biopolis .popup_inner {
  top: -163px;
  left: -20px;
  width: 565px;
  height: 163px;
}

.section .map-wrap .map_pins .boston .popup_inner {
  top: -163px;
  right: -20px;
  width: 524px;
  height: 163px;
}

.section .map-wrap .map_pins .newyork .popup_inner {
  top: -163px;
  right: -20px;
  width: 524px;
  height: 163px;
}

.section .map-wrap .map_pins .rockville .popup_inner {
  top: -163px;
  right: -20px;
  width: 524px;
  height: 163px;
}

.section .map-wrap .map_pins .virginia .popup_inner {
  top: -163px;
  right: -20px;
  width: 524px;
  height: 163px;
}

.section .map-wrap .map_pins .santiago .popup_inner {
  top: -122px;
  right: -20px;
  width: 515px;
  height: 121px;
}

.section .map-wrap .map_pins .poland {
  top: 223px;
  left: 170px;
}

.section .map-wrap .map_pins .amsterdam {
  top: 235px;
  left: 100px;
}

.section .map-wrap .map_pins .leuven {
  top: 255px;
  left: 95px;
}

.section .map-wrap .map_pins .paris {
  top: 268px;
  left: 85px;
}

.section .map-wrap .map_pins .basel {
  top: 268px;
  left: 107px;
}

.section .map-wrap .map_pins .madrid {
  top: 285px;
  left: 75px;
}

.section .map-wrap .map_pins .milan {
  top: 280px;
  left: 123px;
}

.section .map-wrap .map_pins .seoul {
  top: 300px;
  left: 495px;
}

.section .map-wrap .map_pins .tokyo {
  top: 297px;
  left: 535px;
}

.section .map-wrap .map_pins .biopolis {
  top: 420px;
  left: 410px;
}

.section .map-wrap .map_pins .boston {
  top: 260px;
  left: 1050px;
}

.section .map-wrap .map_pins .newyork {
  top: 285px;
  left: 1030px;
}

.section .map-wrap .map_pins .rockville {
  top: 295px;
  left: 1010px;
}

.section .map-wrap .map_pins .virginia {
  top: 315px;
  left: 1005px;
}

.section .map-wrap .map_pins .santiago {
  top: 540px;
  left: 1042px;
}

.macrogen.macrogen-contact-us .section_IR .privacy_box .accordion-title {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.macrogen.macrogen-contact-us .section_IR .privacy_box .arrow-wrapper {
  margin-left: 7px;
}

.macrogen.macrogen-contact-us .section_IR .privacy_box {
  margin-top: 100px;
}

.macrogen.macrogen-contact-us .divider {
  margin: 120px 0;
}

.macrogen.macrogen-contact-us .form-control::placeholder {
  font-weight: 400;
}

.macrogen.macrogen-contact-us .section_IR .btn-box {
  padding-top: 94px;
}

.macrogen.macrogen-contact-us .section_IR .privacy_box .toggle-btn {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 14px;
}

.macrogen.macrogen-contact-us .section_IR .privacy_box .toggle-btn .font-h5 {
  margin-bottom: 0;
}

/* e add contactUS 2023.04.12 */




/*220418 sitemap*/

.en .macrogen.macrogen-sitemap {
  width: 1244px;
  margin: 0 auto;
  border-top: 10px solid #f5f5f5;
}

.en .macrogen.macrogen-sitemap .section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
  padding: 100px 0 0 360px;
  border-bottom: 1px solid #e9e9e9;
}

/* .en .macrogen.macrogen-sitemap .section:first-child{padding: 100px 0 100px 0; } */
/* .en .macrogen.macrogen-sitemap .section > div {display: inline-block;vertical-align: top; } */
.en .macrogen.macrogen-sitemap .section .font-h6 {
  position: absolute;
  left: 0;
  top: 90px;
  width: 369px;
}

.en .macrogen.macrogen-sitemap .section .item {
  width: 220px;
  padding-bottom: 100px;
}

.en .macrogen.macrogen-sitemap .section .item.wide {
  width: 260px;
}

.en .macrogen.macrogen-sitemap .section .item .title,
.en .macrogen.macrogen-sitemap .section .item li {
  margin-bottom: 20px;
}

.en .macrogen.macrogen-sitemap .section .item li:last-child {
  margin-bottom: 0;
}

.en .macrogen.macrogen-sitemap .section .item .title a {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  line-height: 32px;
}

.en .macrogen.macrogen-sitemap .section .item a {
  font-size: 18px;
  letter-spacing: -0.75px;
  color: #454545;
}

.en .macrogen.macrogen-sitemap .section.biz>div.item:nth-of-type(4) {
  width: 213px;
}

.en .macrogen.macrogen-sitemap .section.rd>div.item:nth-of-type(4) {
  width: 140px;
}

.en .macrogen.macrogen-sitemap .section.rd>div.item:nth-of-type(5) {
  width: 101px;
  margin-right: 0;
}

.en .macrogen.macrogen-sitemap .section.rd .item {
  margin-bottom: 100px;
}

.en .macrogen.macrogen-sitemap .section.rd>div.item:nth-of-type(7),
.en .macrogen.macrogen-sitemap .section.rd>div.item:nth-of-type(8) {
  margin-bottom: 0;
}

.en .macrogen.macrogen-sitemap .section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.macrogen.macrogen-esg .inner {
  width: 1244px;
  margin: 0 auto;
}

.macrogen.macrogen-esg .section-phrase {
  padding-top: 150px;
  padding-bottom: 120px;
}

.macrogen.macrogen-esg .section-phrase .font-h3 {
  line-height: 81px;
}

.macrogen.macrogen-esg .section-banner {
  padding: 0 50px;
}

.macrogen.macrogen-esg .section-banner .banner {
  width: 1920px;
  height: 820px;
  background-image: url("../img/macrogen/bg-esg-thumb-1.png");
  background-size: cover;
  width: auto;
  padding-top: 150px;
}

.macrogen.macrogen-esg .section-banner .banner .font-h6 {
  display: inline-block;
  position: relative;
  line-height: 39px;
  color: #FFFFFF;
  margin-bottom: 80px;
}

.macrogen.macrogen-esg .section-banner .banner .font-h6::after {
  content: '';
  position: absolute;
  right: -58px;
  bottom: 12px;
  width: 50px;
  height: 3px;
  background-color: #FFFFFF;
}

.macrogen.macrogen-esg .section-banner .banner .font-h4 {
  color: #FFFFFF;
  line-height: 63px;
}

.macrogen.macrogen-esg .section-banner .banner.banner-1 {
  margin-bottom: 50px;
}

.macrogen.macrogen-esg .section-banner .banner.banner-2 {
  background-image: url(../img/macrogen/bg-esg-thumb-2.png);
}

.macrogen.macrogen-esg .section-management-goals {
  padding-top: 150px;
}

.macrogen.macrogen-esg .section-management-goals.table .font-h6 {
  margin-bottom: 40px;
}

.macrogen.macrogen-esg .section-management-goals .font-h6 {
  display: inline-block;
  position: relative;
  line-height: 46px;
  margin-bottom: 150px;
}

.macrogen.macrogen-esg .section-management-goals .font-h6::after {
  content: '';
  position: absolute;
  right: -58px;
  bottom: 12px;
  width: 50px;
  height: 3px;
  background-color: #000000;
}

.macrogen.macrogen-esg .section-management-goals .list-goals {
  overflow: hidden;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal {
  width: 100%;
  margin-bottom: 150px;
  height: 600px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal:first-child {
  background-image: url(../img/macrogen/bg-esg-thumb-sm-1.png);
  background-size: 940px 640px;
  background-position: 965px 0;
  background-repeat: no-repeat;
  padding-left: 338px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal:nth-child(2) {
  background-image: url(../img/macrogen/bg-esg-thumb-sm-2.png);
  background-size: 940px 640px;
  background-position: 0 0;
  background-repeat: no-repeat;
  padding-left: 1107px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal:nth-child(3) {
  background-image: url(../img/macrogen/bg-esg-thumb-sm-3.png);
  background-size: 940px 640px;
  background-position: 965px 0;
  background-repeat: no-repeat;
  padding-left: 338px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal:nth-child(4) {
  background-image: url(../img/macrogen/bg-esg-thumb-sm-4.png);
  background-size: 940px 640px;
  background-position: 0 0;
  background-repeat: no-repeat;
  padding-left: 1107px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .box {
  display: inline-block;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal:nth-child(2n) {
  text-align: left;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal:last-child {
  margin-bottom: 0;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal::after {
  content: '';
  display: block;
  clear: both;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item {
  float: left;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item:first-child.text {
  margin-right: 40px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item:nth-child(2).text {
  margin-left: 147px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item.text {
  width: 495px;
  padding-top: 100px;
  text-align: left;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item.text .font-h7 {
  line-height: 38px;
  color: #2E87EF;
  margin-bottom: 60px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item.text .font-h3 {
  line-height: 81px;
  margin-bottom: 40px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item.text .font-body-h ul li {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  padding-left: 30px;
  line-height: 40px;
  color: #454545;
  white-space: nowrap;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item.text .font-body-h ul li::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: #454545;
  top: 18px;
  left: 0;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item.bg {
  width: 940px;
  height: 600px;
}

.macrogen.macrogen-esg .section-management-goals .list-goals .goal .item.bg img {
  width: 100%;
  height: 100%;
}



.macrogen.macrogen-esg .section-management-goals .ungc-txt {width:100%;}
.macrogen.macrogen-esg .section-management-goals .ungc-txt > dl {padding:0px; width:100%; display:flex; justify-content:flex-start; align-items:center; gap:30px;}
.macrogen.macrogen-esg .section-management-goals .ungc-txt > dl > dt {padding:0 13px;}
.macrogen.macrogen-esg .section-management-goals .ungc-txt > dl > dd {margin:0; font-size:16px; line-height:30px; color:#454545;}

.macrogen.macrogen-esg .section-management-goals .ungc-tit {margin-top:60px; font-size:30px; font-weight:700;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl {margin-top:30px; width:100%; border-top:1px solid #000;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl {margin:15px 0; padding:0; display:flex; justify-content:flex-start; align-items:center; gap:90px;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl:last-child {padding-bottom:15px; margin-bottom:0; border-bottom:1px solid #DEDEDE;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl + dl {border-top:1px solid #DEDEDE; padding-top:15px;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl > dt {flex-basis:420px; min-height:160px; background:#f7f7f7; display:flex; justify-content:center; align-items:center; flex-flow:column;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl > dt p {font-size:28px; color:#000; line-height:1.2; font-weight:700;}
/* .macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl > dt p + p  {margin-top:10px;} */
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl > dt p span {font-size:16px; font-weight:400;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl > dd {flex:1; min-height:160px; margin:0; display:flex; justify-content:center; align-items:flex-start; flex-flow:column; gap:10px;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl > dd > dl {display:flex; justify-content:flex-start; align-items:center; gap:30px;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl > dd > dl > dt {flex-basis:120px; font-size:20px; font-weight:700;}
.macrogen.macrogen-esg .section-management-goals .ungc-tbl > dl > dd > dl > dd {flex:1; margin:0; font-size:18px; font-weight:400;}




.macrogen .modal-dialog .modal-content .modal-body .list-of-winners>.title {
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 60px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li {
  float: left;
  width: 220px;
  padding: 0 20px;
  margin-bottom: 58px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li:nth-child(5),
.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li:nth-child(6),
.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li:nth-child(7),
.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li:nth-child(8) {
  margin-bottom: 0;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li .img {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li .img img {
  width: 100%;
  height: 100%;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li .name {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  letter-spacing: -0.75px;
  margin-bottom: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000000;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li .name>a {
  color: #000000;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners ul li .desc {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  letter-spacing: -0.75px;
  color: #666666;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header {
  padding: 50px 0 62px;
  overflow: hidden;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 60px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .img {
  float: left;
  width: 220px;
  height: 272px;
  margin-right: 50px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .img img {
  width: 100%;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info {
  float: left;
  width: calc(100% - 220px - 50px);
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info .sub {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.75px;
  color: #2E87EF;
  margin-bottom: 20px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info .name {
  font-weight: 700;
  font-size: 44px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #000000;
  margin-bottom: 4px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info .name a {
  color: #000000;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info .job {
  position: relative;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.75px;
  color: #707070;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info .job::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #909090;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info .career .tit {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.75px;
  margin-bottom: 10px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info .career ul li {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
  padding-left: 15px;
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info .career ul li:last-child {
  margin-bottom: 0;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-header .info .career ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #454545;
  vertical-align: middle;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-body .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.75px;
  margin-bottom: 30px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-body .desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
  margin-bottom: 30px;
}

.macrogen .modal-dialog .modal-content .modal-body .list-of-winners-detail .list-body .desc:last-of-type {
  margin-bottom: 0;
}

.macrogen .modal-dialog .modal-content .modal-footer {
  display: block;
  padding: 24px 60px 25px;
}

.macrogen .modal-dialog .modal-content .modal-footer .board {
  margin: 0;
}

.macrogen .modal-dialog .modal-content .modal-footer .board .navigation .content .item {
  padding: 0;
}

.macrogen .modal-dialog .modal-content .modal-footer .board .navigation .content .item::before {
  width: 12px;
  height: 25px;
  background-size: 12px 25px;
  background-repeat: no-repeat;
}

.macrogen .modal-dialog .modal-content .modal-footer .board .navigation .content .item.prev {
  padding-left: 36px;
}

.macrogen .modal-dialog .modal-content .modal-footer .board .navigation .content .item.prev .title {
  text-align: left;
}

.macrogen .modal-dialog .modal-content .modal-footer .board .navigation .content .item.next {
  padding-right: 36px;
}

.macrogen .modal-dialog .modal-content .modal-footer .board .navigation .content .item.next .title {
  text-align: right;
}

.macrogen .modal-dialog .modal-content .modal-footer .board .navigation .content .title {
  display: block;
  width: 354px;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.75px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@keyframes subAnimation {
  from {
    opacity: 0;
    background-size: 3840px 1200px;
  }

  to {
    opacity: 1;
    background-size: 1920px 600px;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

  /* 공통 */
  .slide-tab-wrap .swiper-container .swiper-slide {
    width: auto;
  }

  .btn.btn-text {
    text-align: left;
  }

  .btn.btn-circle {
    min-width: auto;
  }

  /* macrogen */
  .macrogen.macrogen-authorization .section .title-sm>div {
    transform: translateY(-2px);
  }

  .macrogen.macrogen-vision .parallax-DNA.DNA-3 {
    bottom: 0;
    top: auto;
  }
}

/* 영문 */
.en {
  /* 공통 */
  /* 기업개요 */
  /* 경영진 */
  /* 사회공헌 */
  /* esg 경영 */
  /* 인증 */
}

.en .wrap .full-bg .frame .slogan {
  text-transform: none;
}

.en .macrogen.company-overview .section-business-detail .item .img .title::after {
  bottom: auto;
  top: -30px;
}

.en .macrogen.company-overview .section-overview {
  padding-bottom: 150px;
  height: auto;
  overflow: hidden;
}

.en .macrogen.company-overview .section-overview .inner>div>.desc {
  margin-bottom: 100px;
}

/* .en .macrogen.company-overview .section-overview .overview-list .item {
  height: 393px;
} */

.en .macrogen.company-overview .section-overview .overview-list .item .val {
  font-size: 32px;
  line-height: 39px;
  letter-spacing: 0.5px;
}

.en .macrogen.company-overview .section-overview .desc {
  margin-bottom: 40px;
}

.en .macrogen.company-overview .section-overview .overview-list .item:nth-child(2) .desc {
  margin-left: 0;
}

.en .macrogen.company-overview .section-overview .overview-list .item:nth-child(5) .desc {
  margin-left: 0;
}

.en .macrogen.company-overview .section-overview .overview-list .item:nth-child(6) .desc {
  margin-left: 0;
}

.en .macrogen.company-overview .section-overview .overview-list .item:nth-child(6) .val {
  margin-left: 0;
}

.en .macrogen.company-overview .section-overview .overview-list .item:nth-child(8) .desc {
  margin-left: 0;
}

.en .macrogen.macrogen-management .section-chairman-career {
  padding-top: 130px;
  height: 1394px;
}

.en .macrogen.macrogen-management .section-chairman-career .inner .item .list li span:first-child {
  font-size: 18px;
  line-height: 30px;
  padding-left: 15px;
}

.en .macrogen.macrogen-management .section-chairman-career .inner .item .list li span:nth-child(2) {
  font-size: 16px;
  line-height: 30px;
}

.en .macrogen.ethical-management .section-tip .subject-to-report .col .item {
  height: 290px;
  padding: 40px;
}

.en .macrogen.ethical-management .section-tip .subject-to-report-step .item .info ul li span:first-child {
  font-size: 18px;
  line-height: 30px;
  width: 172px;
  margin-right: 0;
}

.en .macrogen.ethical-management .section-tip .subject-to-report-step .item .info ul li span:nth-child(2) {
  width: calc(100% - 172px);
  vertical-align: top;
  font-size: 16px;
  line-height: 30px;
}

.en .macrogen.macrogen-management .section-ceo-career .inner .item .list li {
  width: 100%;
}

.en .macrogen.macrogen-management .section-ceo-career .inner .item .title span::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  right: -58px;
  bottom: 12px;
  background: #000;
}

.en .macrogen.ethical-management .section-tip .subject-to-report-step .item:first-child .img .label,
.en .macrogen.ethical-management .section-tip .subject-to-report-step .item:nth-child(2) .img .label {
  top: 55px;
}

.en .macrogen.ethical-management .section-tip .subject-to-report-step .item:first-child .img .tit,
.en .macrogen.ethical-management .section-tip .subject-to-report-step .item:nth-child(2) .img .tit {
  top: 110px;
}

.en .macrogen.ethical-management .section-reward .list .item .list-header .title {
  letter-spacing: -1px;
  padding-right: 20px;
}

.en .macrogen.macrogen-esg .section-management-goals .list-goals .goal .item.text .font-body-h ul li:last-child {
  white-space: normal;
}

.en .macrogen.macrogen-authorization .section#clinicalDiagnosisQualityManagementSystem {
  position: relative;
  z-index: 3;
}

.en .macrogen.macrogen-authorization .section#informationSecurityManagementSystem {
  position: relative;
  z-index: 2;
}

.en .macrogen.macrogen-authorization .section#qualityManagementSystem {
  position: relative;
  z-index: 4;
}

.en .macrogen.macrogen-authorization .section#CSPCertificationProgram .btn-tooltip {
  transform: translateY(8px);
}

.en .macrogen.macrogen-authorization .section#CSPCertificationProgram .text-box {
  transform: translateY(8px);
}

.main-wrap .container {
  padding: 0 !important;
}

.main-wrap .bg-DNA {
  position: absolute;
  z-index: 9;
  display: inline-block;
  width: 721px;
  height: 777px;
  transform: rotate(-15deg);
  right: 160px;
  top: -300px;
  background: url("../img/main/img-vision-DNA.png?v2") no-repeat center center/contain;
  opacity: 0.7;
  animation: DNA-down 2s 1s forwards;
}

@keyframes DNA-down {
  0% {
    top: -300px;
    opacity: 0.7;
  }

  100% {
    top: -206px;
    opacity: 1;
  }
}

.main-wrap .bg-DNA.DNA-move {
  top: -206px;
  transform: rotate(-15deg);
  opacity: 1;
  animation: background 7s infinite;
}

@keyframes background {
  0% {
    transform: rotate(-15deg);
    top: -206px;
  }

  20% {
    top: -180px;
  }

  25% {
    transform: rotate(-10deg);
  }

  40% {
    top: -200px;
  }

  50% {
    transform: rotate(-13deg);
  }

  60% {
    top: -180px;
  }

  75% {
    transform: rotate(-10deg);
  }

  90% {
    top: -200px;
  }
}

@media (max-width: 1440px) {
  .main-wrap .bg-DNA {
    display: none;
  }
}

.main-wrap .main-bg {
  position: relative;
  z-index: 10;
  /*totop 으로 인해 추가*/
}

.main-wrap .main-bg .header-main {
  background: transparent;
  position: absolute;
}

.main-wrap .main-bg .header-main.header-sm {
  background-color: #ffffff !important;
}

.main-wrap .main-bg .intro {
  position: absolute;
  max-width: 1920px;
  max-height: 980px;
  width: 100%;
  height: 100%;
}

.main-wrap .main-bg .intro .box {
  position: absolute;
  left: 336px;
  top: 375px;
  /*   .text-gradient {
          position: relative;
          line-height: 1;
          background: #55ffaa;
          background: -webkit-linear-gradient(left, #00ADA9, #377EF9);
          background: -moz-linear-gradient(right, #00ADA9, #377EF9);
          background: -o-linear-gradient(right, #00ADA9, #377EF9);
          background: linear-gradient(to right, #00ADA9, #377EF9);
          -webkit-background-clip: text;
          color: transparent;

          &:before {
            content: '';
            display: inline-block;
            position: absolute;
            right: -97px;
            bottom: 14px;
            width: 75px;
            height: 5px;
            background-color: #1c81f9;
          }

          &:after {
            content: '';
            display: inline-block;
            position: absolute;
            right: -112px;
            bottom: 12px;
            width: 9px;
            height: 9px;
            background-color: #1c81f9;
            border-radius: 50%;


          }
        }*/
}

.main-wrap .main-bg .intro .box .text {
  font-size: 76px;
  line-height: 100px;
  letter-spacing: -0.05em;
  color: #000000;
  font-weight: bold;
}

.main-wrap .main-bg .intro .box .text img {
  width: 854px;
  backface-visibility: hidden;
  /*이미지 깨짐 방지*/
}

.main-wrap .main-bg .swiper-container {
  max-width: 1920px;
  min-width: 1366px;
  max-height: 980px;
  min-height: 938px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: unset;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper {
  position: absolute;
  bottom: 0;
  overflow: hidden;
  height: 100%;
}

@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* s yt 영상 2023.03.30*/
.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide iframe {
  transition: opacity 500ms ease-in-out;
  transition-delay: 250ms;
}

/* 메인 로딩 이미지 수정 2023.04.18 */
.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .video-background {
  background: url(/publishing/pc-en/dist/img/main/img-main_loading.png) no-repeat center center / cover !important;
}

/* 영상 불려오는 동안 배경이미지 css 임의 지정 */


.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .visual {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
}

/*.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide.visual_00 .visual {
        background: url("../img/main/img-main_00.png") no-repeat center bottom; }*/
.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .visual .text-box {
  position: absolute;
  top: 413px;
  left: 333px;
  width: 100%;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .visual .text-box .slogan-sub {
  font-family: 'Proxima Nova';
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 107%;
  font-feature-settings: 'kern' off;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .visual .text-box .desc {
  margin-top: 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: -0.02em;
  font-feature-settings: 'kern' off;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box .btns {
  display: flex;
  justify-content: left;
  margin-top: 37px;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box .btns button {
  width: 170px;
  height: 38px;
  margin: 0 5px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Proxima Nova';
  color: #fff;
  line-height: 18px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
}

/*.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .visual_01 {
        background: url("../img/main/img-main_01.png") no-repeat center bottom; }
        .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide.visual_01 .text-gradient img {
          width: 612px; }
      .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .visual_02 {
        background: url("../img/main/img-main_02.png") no-repeat center center; }
        .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide.visual_02 .text-gradient img {
          width: 611px; }
      .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .visual_03 {
        background: url("../img/main/img-main_03.png") no-repeat center center; }
        .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .visual_03 .text-gradient img {
          width: 532px; }
      .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .visual_04 {
        background: url("../img/main/img-main_04.png") no-repeat center center; }*/
.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box {
  display: none;
  position: absolute;
  left: 335px;
  top: 413px;
  /* .text-gradient {
              background: linear-gradient(to right, #00ADA9, #377EF9);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
            }*/
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box p {
  font-weight: 700;
  font-size: 48px;
  line-height: 106%;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box p.desc {
  margin-top: 25px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box.phrase {
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  display: inline-block;
  text-align: center;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box.phrase p {
  font-size: 46px;
  line-height: 154px;
  letter-spacing: -0.06em;
  margin: 0 30px;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box.phrase>.name {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: normal;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box.phrase>.name:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -30px;
  top: 50%;
  width: 25px;
  height: 1px;
  background-color: #FFFFFF;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box.phrase>.name:after {
  content: '';
  display: inline-block;
  position: absolute;
  right: -30px;
  top: 50%;
  width: 25px;
  height: 1px;
  background-color: #FFFFFF;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box.phrase>.name span {
  margin-left: 10px;
  font-size: 22px;
  font-weight: bold;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box.phrase:before {
  content: '[';
  font-size: 200px;
  display: inline-block;
  line-height: 1;
  margin: 0 auto;
  position: absolute;
  left: -52px;
  top: -50px;
}

.main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box.phrase:after {
  content: ']';
  font-size: 200px;
  display: inline-block;
  line-height: 1;
  margin: 0 auto;
  position: absolute;
  right: -52px;
  top: -50px;
}

.main-wrap .main-bg .swiper-container .scroll-wrap {
  display: none;
  z-index: 11;
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  position: absolute;
  left: 340px;
  bottom: 0;
}

.main-wrap .main-bg .swiper-container .scroll-wrap:before {
  content: '';
  width: 4px;
  height: 4px;
  background: #FFFFFF;
  position: absolute;
  top: -14px;
  left: -1px;
  border-radius: 2px;
}

.main-wrap .main-bg .swiper-container .scroll-wrap .scroll {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  width: 1px;
  position: relative;
  height: 100px;
  overflow: hidden;
}

.main-wrap .main-bg .swiper-container .scroll-wrap .scroll:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-left: 2px solid #ffffff;
  opacity: 0.2;
}

.main-wrap .main-bg .swiper-container .scroll-wrap .scroll:after {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  border-left: 2px solid #ffffff;
  -webkit-animation: scrollMove 1.5s ease-in infinite;
  animation: scrollMove 1.5s ease-in infinite;
}

@keyframes scrollMove {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

.main-wrap .main-bg .swiper-container .swiper-pagination {
  top: 28.877%;
  left: 335px;
  height: 50px;
  width: 500px;
  text-align: left;
}

.main-wrap .main-bg .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  width: 50px !important;
  height: 50px !important;
  margin-right: 0 !important;
}

.main-wrap .main-bg .swiper-container .swiper-pagination .swiper-pagination-bullet .path {
  display: none;
}

.main-wrap .main-bg .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .path {
  display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash linear 42000ms;
  animation-iteration-count: unset;
}

.main-wrap .main-bg .swiper-container .swiper-pagination .fp-arc-loader {
  transform: rotate(-90deg);
}

.main-wrap .main-bg .swiper-container #key-swiper-pagination {
  display: none;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.main-wrap .main-bg .swiper-container .swiper_btn {
  display: none;
  border-radius: 100px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
  position: absolute;
  right: 50px;
  left: auto;
  top: auto;
}

.main-wrap .main-bg .swiper-container .swiper_btn:after {
  color: #ffffff;
  font-size: 15px;
}

.main-wrap .main-bg .swiper-container .swiper-button-prev,
.main-wrap .main-bg .swiper-container .swiper-container-rtl .swiper-button-next {
  bottom: 40px;
  background: rgba(255, 255, 255, 0.1) url("../img/common/ico-arrow-left-md-white.svg") no-repeat center center;
  z-index: 10;
}

.main-wrap .main-bg .swiper-container .swiper-button-next,
.main-wrap .main-bg .swiper-container .swiper-container-rtl .swiper-button-prev {
  z-index: 10;
  bottom: 93px;
  background: rgba(255, 255, 255, 0.1) url("../img/common/ico-arrow-right-md-white.svg") no-repeat center center;
}

.main-wrap .main-bg .stock_information {
  display: none;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
}

.main-wrap .main-bg .stock_information .stock_cont {
  width: 0;
  overflow: hidden;
  transition: width 1s;
}

.main-wrap .main-bg .stock_information .stock_cont.active {
  width: 100vw;
  transition: width 1s;
  overflow-y: hidden;
}

.main-wrap .main-bg .stock_information .stock_cont .stock_box {
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  position: relative;
  padding: 180px 290px;
}

.main-wrap .main-bg .stock_information .stock_cont .stock_box .title {
  font-size: 60px;
  line-height: 72px;
  font-weight: bold;
  margin-bottom: 70px;
}

.main-wrap .main-bg .stock_information .stock_cont .stock_box .content {
  width: 1070px;
  height: 432px;
}

.main-wrap .main-bg .stock_information .close_btn {
  width: 37px;
  height: 100%;
  position: absolute;
  left: -37px;
  background: url("../img/main/img-slideBar.png") no-repeat left center/cover;
  cursor: pointer;
  display: inline-block;
  z-index: 20;
  opacity: 0.3;
}

.main-wrap .main-bg .stock_information .close_btn.active.close_btn {
  left: 0;
  transform: rotate(-180deg);
}

.main-wrap .main-page {
  overflow-x: hidden;
  overflow-y: hidden;
  /*공통폰트*/
}

.main-wrap .main-page .info-box {
  width: 1244px;
}

.main-wrap .main-page .info-box .title {
  font-weight: bold;
  font-size: 50px;
  line-height: 72px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.main-wrap .main-page .info-box .desc {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -1px;
  color: #454545;
}

.main-wrap .main-page .section-define .info-box {
  width: 1244px;
  margin: 0 auto;
  padding: 145px 0 120px;
  display: flex;
}

.main-wrap .main-page .section-define .info-box .title {
  font-weight: bold;
  font-size: 60px;
  line-height: 75px;
  letter-spacing: 12px;
  text-transform: uppercase;
  display: inline-block;
}

.main-wrap .main-page .section-define .info-box .title span {
  display: inline-block;
}

.main-wrap .main-page .section-define .info-box .title span:last-of-type {
  position: relative;
}

.main-wrap .main-page .section-define .info-box .title span:last-of-type:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 85px;
  height: 6px;
  right: -100px;
  bottom: 13px;
  background: #000000;
}

.main-wrap .main-page .section-define .info-box .text-box {
  display: inline-block;
  width: 50%;
  margin: 85px 70px 0 0;
}

.main-wrap .main-page .section-define .info-box .text-box .text {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -1px;
  color: #000000;
  margin-bottom: 25px;
}

.main-wrap .main-page .section-define .shortcuts-box {
  height: 506px;
  position: relative;
  overflow: hidden;
  margin: 0 50px;
}

.main-wrap .main-page .section-define .shortcuts-box .btn-list {
  display: flex;
  height: 100%;
  width: 1244px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.main-wrap .main-page .section-define .shortcuts-box .btn-list li {
  height: 100%;
  width: 100%;
}

.main-wrap .main-page .section-define .shortcuts-box .btn-list li:hover a p.sub-text {
  display: block;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.5px;
  margin: 20px auto 35px;
  font-weight: normal;
}

.main-wrap .main-page .section-define .shortcuts-box .btn-list li:hover a p.btn-circle {
  display: block;
}

.main-wrap .main-page .section-define .shortcuts-box .btn-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.main-wrap .main-page .section-define .shortcuts-box .btn-list li a:first-of-type {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.main-wrap .main-page .section-define .shortcuts-box .btn-list li a p {
  font-weight: bold;
  font-size: 32px;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
}

.main-wrap .main-page .section-define .shortcuts-box .btn-list li a p.sub-text,
.main-wrap .main-page .section-define .shortcuts-box .btn-list li a p.btn-circle {
  display: none;
}

.main-wrap .main-page .section-define .shortcuts-box .bg_section {
  position: absolute;
  height: 506px;
  width: 100%;
  top: 0;
  transform: translateY(510px);
}

.main-wrap .main-page .section-define .shortcuts-box .bg_section.active {
  animation: slideup 0.6s ease-in forwards;
}

@keyframes slideup {
  0% {
    transform: translateY(510px);
    opacity: 0;
    transition-delay: 0s;
  }

  70% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.main-wrap .main-page .section-define .shortcuts-box .bg_section.bg0 {
  background: #080428;
  transform: translateY(0) !important;
}

.main-wrap .main-page .section-define .shortcuts-box .bg_section.bg1 {
  background-image: url("../img/main/img-shortcuts_01.png");
}

.main-wrap .main-page .section-define .shortcuts-box .bg_section.bg2 {
  background-image: url("../img/main/img-shortcuts_02.png");
}

.main-wrap .main-page .section-define .shortcuts-box .bg_section.bg3 {
  background-image: url("../img/main/img-shortcuts_03.png");
}

.main-wrap .main-page .section-business {
  position: relative;
}

.main-wrap .main-page .section-business .info-box {
  margin: 145px auto 100px;
}

.main-wrap .main-page .section-business .info-box .title {
  margin-bottom: 27px;
  text-align: left;
}

.main-wrap .main-page .section-business .info-box .desc {
  margin-left: 215px;
}

.main-wrap .main-page .section-business .business {
  /*  cursor: url('../img/main/img-cursor.cur') 60 60 , auto;*/
  cursor: url("../img/main/img-cursor.cur"), auto;
}

.main-wrap .main-page .section-business .business .slider .swiper-slide {
  /*padding-top: 370px;
              padding-left: 100px;*/
  width: 1030px;
  margin: 0 10px;
  /* s business 내부 text slide */
  /* e business 내부 text slide */
}

.business .slider .swiper-container .swiper-wrapper .swiper-slide .title {
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}

/*.main-wrap .main-page .section-business .business .slider .swiper-slide.swiper-slide-active .text-area {
                position: absolute;
                left: 60px;
                bottom: 50px;
              }*/


.main-wrap .main-page .section-business .business .slider .swiper-slide.swiper-slide-prev .text-area,
.main-wrap .main-page .section-business .business .slider .swiper-slide.swiper-slide-next .text-area {
  transform: translate3d(100px, 0, 0);
  opacity: 0;
  transition-duration: 0s;
}

.main-wrap .main-page .section-business .business .slider .swiper-slide.swiper-slide-active .text-area {
  position: absolute;
  left: 60px;
  bottom: 50px;
  transform: translateZ(0);
  opacity: 1;
  transition-timing-function: ease;
  transition-duration: .7s;
}

.main-wrap .main-page .section-business .business .slider .swiper-slide:nth-of-type(1) {
  background: url("../img/main/img-business_01.png") no-repeat center center;
}

.main-wrap .main-page .section-business .business .slider .swiper-slide:nth-of-type(2) {
  background: url("../img/main/img-business_02.png") no-repeat center center;
}

.main-wrap .main-page .section-business .business .slider .swiper-slide:nth-of-type(3) {
  background: url("../img/main/img-business_03.png") no-repeat center center;
}

.main-wrap .main-page .section-business .business .slider .swiper-slide:nth-of-type(4) {
  background: url("../img/main/img-business_04.png") no-repeat center center;
}


.en .main-wrap .main-page .section-business .business .slider .swiper-slide.swiper-slide-active .text-area .title {
  font-size: 50px;
}

.business .slider .swiper-container .swiper-wrapper .swiper-slide {
  width: 1130px;
  height: 620px;
  padding-top: 379px !important;
  padding-left: 100px !important;
}


.business .slider .swiper-container .swiper-wrapper .swiper-slide .title>a .btn {

  transform: translate(-50%, -50%);
}

/*2023리뉴얼*/
.main-wrap .main-page .section-partners {
  padding-bottom: 114px;
  border-bottom: 11px solid #F5F5F5;
}

.main-wrap .main-page .section-partners .info-box {
  margin: 90px auto 76px;
  text-align: center;
}

.main-wrap .main-page .section-partners .info-box .title {
  margin-bottom: 20px;
  line-height: 52px;
}

.main-wrap .main-page .section-partners .info-box .desc {
  margin-top: 21px;
  letter-spacing: -0.5px;
  color: #000;
  white-space: nowrap;
}

.main-wrap .main-page .section-partners .partners-list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  width: 1244px;
  margin: -82px auto 0;
}

.main-wrap .main-page .section-partners .partners-list li {
  width: 25%;
  margin-top: 82px;
}

.main-wrap .main-page .section-people .info-box {
  margin: 140px auto 57px;
  text-align: center;
}

.main-wrap .main-page .section-people .info-box .title {
  margin-bottom: 10px;
}

.main-wrap .main-page .section-people .list {
  display: flex;
  justify-content: space-between;
  width: 1244px;
  margin: 0 auto;
}

.main-wrap .main-page .section-people .list li {
  width: 281px;
}

.main-wrap .main-page .section-people .list li .info {
  letter-spacing: -0.5px;
  color: initial;
}

.main-wrap .main-page .section-people .list li .info strong {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}

.main-wrap .main-page .section-people .list li .content {
  margin-top: 25px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #fff
}

.people_swiper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 524px;
}

.people_swiper.sm {
  width: 1468px;
  margin: 0 auto;
}

.people_swiper .resize .swiper-wrapper {
  margin-left: 0;
}

.people_swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  margin-left: -61px;
}

.people_swiper .swiper-slide {
  position: relative;
  width: 402px !important;
  min-width: 402px;
  height: 402px;
  margin: 0 35px;
  border-radius: 100%;
  transition: 0.5s;
}

.people_swiper .swiper-slide.bg01 {
  background-color: #ABDFFD;
}

.people_swiper .swiper-slide.bg02 {
  background-color: #DDE0FD;
}

.people_swiper .swiper-slide.bg03 {
  background-color: #DEFBD1;
}

.people_swiper .swiper-slide.bg04 {
  background-color: #D1FBF6;
}

.people_swiper .swiper-slide.bg05 {
  background-color: #F7FDDD;
}

.people_swiper .flip {
  position: relative;
  width: 100%;
  height: 100%;
}

.people_swiper .flip .front,
.people_swiper .flip .back {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  cursor: pointer;
}

.people_swiper .flip .front {
  overflow: hidden;
  border-radius: 100%;
}

.people_swiper .flip .front .img {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 383px;
  height: 333px;
  margin-right: 0;
  transform: translateX(50%);
  transition: all .5s;
}

.people_swiper .flip .front .img img {
  display: block;
  width: 100%;
  height: 100%;
}

.people_swiper .flip .front .info-area {
  opacity: 0;
  transition: 0.5s;
}

.people_swiper .flip .front .name {
  position: absolute;
  top: 162px;
  left: 68px;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
}

.people_swiper .flip .front .name strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

.people_swiper .flip .front .btn-text {
  position: absolute;
  top: 347px;
  left: 68px;
}

.people_swiper .flip .back {
  padding: 70px 70px 0;
  text-align: center;
  opacity: 0;
}

.people_swiper .flip .back .name {
  position: relative;
  display: block;
  padding-bottom: 13px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 30px;
}

.people_swiper .flip .back .name::after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  border-top: 4px solid #000;
  width: 50px;
  margin-left: -25px;
}

.people_swiper .flip .back .name strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
}

.people_swiper .flip .back .name p {
  line-height: 20px;
}

/*2023.04.06 수정*/
.people_swiper .flip .back .txt {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}

.people_swiper .swiper-slide.swiper-slide-active {
  min-width: 524px;
  width: 524px;
  height: 524px;
}

.people_swiper .swiper-slide.swiper-slide-active .flip {
  width: 100%;
  height: 100%;
}

.people_swiper .swiper-slide.swiper-slide-active .flip .front {
  justify-content: right;
}

.people_swiper .swiper-slide.swiper-slide-active .flip .front .info-area {
  opacity: 1;
}

.people_swiper .swiper-slide.swiper-slide-active .flip .front .img {
  right: 0;
  bottom: 50px;
  transform: scale(1.3);
}

.people_swiper .swiper-slide[class*="active"].rotate .flip .front,
.people_swiper .swiper-slide[class*="active"].rotate .flip .front * {
  opacity: 0 !important;
}

.people_swiper .swiper-slide[class*="active"].rotate .flip .back,
.people_swiper .swiper-slide[class*="active"].rotate .flip .back * {
  opacity: 1 !important;
}


/*//2023리뉴얼*/


/* s media*/

.main-wrap .main-page .section-news .info-box {
  width: 1244px;
  margin: 145px auto 60px;
  padding-left: 210px;
}

.main-wrap .main-page .section-news .info-box .title {
  margin-bottom: 25px;
}

.main-wrap .main-page .section-news .board {
  width: 1244px;
  margin: 0 auto 145px;
}

.main-wrap .main-page .section-news .board .list-border .item {
  padding: 49px 150px 53px 0;
}

.main-wrap .main-page .section-news .board .list-border .item:hover .date,
.main-wrap .main-page .section-news .board .list-border .item:hover .tit {
  color: #E50050;
}

.main-wrap .main-page .section-news .board .list-border .item .date {
  display: inline-block;
  width: 135px;
  font-size: 22px;
  line-height: 40px;
  color: #000000;
  margin-right: 70px;
  vertical-align: middle;
  font-weight: bold;
}

.main-wrap .main-page .section-news .board .list-border .item .tit {
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 210px);
  letter-spacing: -1px;
  color: #000000;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.main-wrap .main-page .section-news .board .list-border .item .arrow .icon-arrow-right-short {
  right: 10px;
}

.main-wrap .main-page .section-news .board .btn-text {
  padding-top: 65px;
  padding-left: 212px;
  line-height: 2;
  position: relative;
}

.main-wrap .main-page .section-news .video-box {
  width: 100%;
  height: 720px;
  background: url("../img/main/img-research.png") no-repeat center center/cover;
  position: relative;
  /* more 영역 제거
         .btn-text{
           position: absolute;
           right: 340px;
           bottom: 80px;
           color: #ffffff;
         }*/
}

.main-wrap .main-page .section-news .video-box .info-box {
  text-align: center;
  padding-left: 0;
  padding-top: 213px;
  position: relative;
}

.main-wrap .main-page .section-news .video-box .info-box .title {
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.main-wrap .main-page .section-news .video-box .info-box .desc {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -1px;
  color: #FFFFFF;
}

.main-wrap .main-page .section-news .video-box .info-box .btn_play {
  position: absolute;
  bottom: -129px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 35px;
  font-size: 18px;
  padding: 17.5px 30px;
  height: 70px;
}

.main-wrap .main-page .section-news .video-box .info-box .btn_play .icon_youtube {
  background: url("../img/main/ico-youtube.png") no-repeat center center/cover;
  width: 26px;
  height: 18px;
}

.main-wrap .main-page .section-news .video-box .info-box .btn_play .icon-arrow-right-short {
  margin-left: 20px;
}

.main-wrap .main-page .section-media {
  margin-bottom: 150px;
}

.main-wrap .main-page .section-media .info-box {
  width: 1244px;
  margin: 140px auto 57px;
}

.main-wrap .main-page .section-media .info-box .title {
  margin-bottom: 20px;
  text-align: center;
}

.main-wrap .main-page .section-media .media {
  width: 1244px;
  margin: 0 auto;
}

.main-wrap .main-page .section-media .media .slider {
  position: relative;
  width: unset;
  margin: 0 auto;
}

.main-wrap .main-page .section-media .media .slider .slider-navigation {
  width: 1240px;
  /* position: relative; */
  /* margin-bottom: 0; */
  top: 0px;
}

.main-wrap .main-page .section-media .media .slider .slider-navigation .btn-circle {
  position: absolute;
  top: 137px;
  width: 45px;
  height: 45px;
  z-index: 10;
}

.main-wrap .main-page .section-media .media .slider .slider-navigation .btn-circle._btnPrev {
  left: -22px;
}

.main-wrap .main-page .section-media .media .slider .slider-navigation .btn-circle._btnNext {
  right: -22px;
}

.media .slider .swiper-container .swiper-wrapper .swiper-slide {
  margin: 0 auto;
}

.main-wrap .main-page .section-media .media .slider .swiper-container .swiper-wrapper .swiper-slide>a {
  display: block;
}

.main-wrap .main-page .section-media .media .slider .swiper-container .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.main-wrap .main-page .section-media .media .slider .swiper-container .swiper-wrapper .swiper-slide .img .sns {
  position: absolute;
  color: #454545;
  top: 0;
  left: 0;
  padding: 6px 17px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0;
  font-family: 'Proxima Nova';
  background: #fff;
}

/* .main-wrap .main-page .section-media .media .slider .swiper-container .swiper-wrapper .swiper-slide .img .sns:after {
            content: '';
            display: inline-block;
            width: 30px;
            height: 2px;
            background-color: #ffffff;
            margin-left: 10px; } */
.main-wrap .main-page .section-media .media .slider .swiper-container .swiper-wrapper .swiper-slide .content .title {
  display: inherit;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}



.media .slider .swiper-container .swiper-wrapper .swiper-slide .content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

}



.main-wrap .main-page .section-map {
  position: relative;
  background: url("../img/main/bg-map.png") no-repeat center center/cover;
  width: 100%;
  height: 920px;
}

.main-wrap .main-page .section-map .inner {
  width: 1244px;
  margin: 0 auto;
}

.main-wrap .main-page .section-map .inner .info-box {
  padding-top: 125px;
  margin-bottom: 233px;
}

.main-wrap .main-page .section-map .inner .info-box .title {
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  margin-bottom: 33px;
  color: #FFFFFF;
}

.main-wrap .main-page .section-map .inner .info-box .desc {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -1px;
  color: #FFFFFF;
}

.main-wrap .main-page .section-map .inner .map {
  position: relative;
}

.main-wrap .main-page .section-map .inner .map .pin {
  position: absolute;
  padding: 0 16px;
  height: 38px;
  line-height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  border-radius: 19px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  overflow: hidden;
  transition: 0.25s;
}

.main-wrap .main-page .section-map .inner .map .pin i {
  width: 12px;
  height: 16px;
  display: inline-block;
  background-image: url(../img/main/ico-pin-white.png);
  background-size: 12px 16px;
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.main-wrap .main-page .section-map .inner .map .pin:hover {
  color: #E50050;
  box-shadow: inset 0 -3em 0 0 #FFFFFF;
}

.main-wrap .main-page .section-map .inner .map .pin:hover i {
  background-image: url(../img/main/ico-pin-pink.png);
  animation: fadeInUp;
  animation-duration: 0.5s;
}

.main-wrap .main-page .section-map .inner .map .pin.active {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 25px 20px rgba(0, 0, 0, 0.2);
  color: #E50050;
  transition: all 0.5s ease;
}

.main-wrap .main-page .section-map .inner .map .pin.active i {
  background-image: url(../img/main/ico-pin-pink.png);
}

.main-wrap .main-page .section-map .inner .map .pin span {
  vertical-align: bottom;
  margin-left: 5px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.amsterdam {
  top: 13px;
  left: 64px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.leuven {
  top: 60px;
  left: 83px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.milan {
  top: 152px;
  left: 246px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.poland {
  top: -35px;
  left: 236px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.basel {
  top: 106px;
  left: 180px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.paris {
  top: 106px;
  left: 27px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.madrid {
  top: 150px;
  left: -2px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.seoul {
  top: 0;
  left: 531px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.songdo {
  top: 41px;
  left: 498px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.daejeon {
  top: 92px;
  left: 541px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.tokyo {
  top: 161px;
  left: 607px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.biopolis {
  top: 255px;
  left: 445px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.boston {
  top: 25px;
  left: 1098px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.newyork {
  top: 80px;
  left: 1040px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.rockville {
  top: 143px;
  left: 981px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.virginia {
  top: 195px;
  left: 950px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.manchester {
  top: -35px;
  left: 64px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.berlin {
  top: 13px;
  left: 306px;
}

.en .main-wrap .main-page .section-map .inner .map .pin.santiago {
  top: 276px;
  left: 1063px;
}

.main-wrap .footer:before {
  border-top: none;
}

.en .main-wrap .main-bg .intro .box .text img {
  width: 639px;
  backface-visibility: hidden;
  /*이미지 깨짐 방지*/
}

.en .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide.visual_01 .text-gradient img {
  width: 454px;
}

.en .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide.visual_02 .text-gradient img {
  width: 1097px;
}

.en .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide.visual_03 .text-gradient img {
  width: 677px;
}

.en .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide.visual_04 {
  background: url("../img/main/img-main_04.png") no-repeat center center/cover;
}

.en .main-wrap .main-bg .swiper-container .swiper-wrapper .swiper-slide .text-box.phrase>.name {
  display: inline-block;
  min-width: 400px;
}

.en .main-wrap .main-page .section-business .business .slider .swiper-slide.swiper-slide-active {
  padding: 0;
  position: relative;
}

.en .main-wrap .main-page .section-business .business .sider .swiper-slide.swiper-slide-active .text-area {
  position: absolute;
  left: 60px;
  bottom: 50px;
}

.en .main-wrap .main-page .section-business .business .slider .swiper-slide.swiper-slide-active .text-area .title {
  line-height: 1;
}

.en .main-wrap .main-page .section-news .info-box {
  width: 1244px;
  margin: 145px auto 60px;
  padding-left: 210px;
}

.en .main-wrap .main-page .section-news .info-box .title {
  margin-bottom: 25px;
}

.en .main-wrap .main-page .section-news .board {
  width: 1244px;
  margin: 0 auto 145px;
}

.en .main-wrap .main-page .section-news .board .list-border .item {
  padding: 49px 150px 53px 0;
}

.en .main-wrap .main-page .section-news .board .list-border .item:hover .date,
.en .main-wrap .main-page .section-news .board .list-border .item:hover .tit {
  color: #E50050;
}

.en .main-wrap .main-page .section-news .board .list-border .item .date {
  display: inline-block;
  width: 135px;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  margin-right: 70px;
  vertical-align: middle;
}

.en .main-wrap .main-page .section-news .board .list-border .item .date .day {
  font-size: 34px;
  line-height: 46px;
  font-weight: bold;
  margin-right: 20px;
  letter-spacing: 1px;
}

.en .main-wrap .main-page .section-news .board .list-border .item .tit {
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 210px);
  letter-spacing: -1px;
  color: #000000;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.en .main-wrap .main-page .section-news .board .list-border .item .arrow .icon-arrow-right-short {
  right: 10px;
}

.en .main-wrap .main-page .section-news .board .btn-text {
  padding-top: 65px;
  padding-left: 212px;
  line-height: 2;
  position: relative;
}

.en .main-wrap .main-page .section-news .video-box {
  width: 100%;
  height: 720px;
  background: url("../img/main/img-research.png") no-repeat center center/cover;
  position: relative;
  /* more 영역 제거
           .btn-text{
             position: absolute;
             right: 340px;
             bottom: 80px;
             color: #ffffff;
           }*/
}

.en .main-wrap .main-page .section-news .video-box .info-box {
  text-align: center;
  padding-left: 0;
  padding-top: 213px;
  position: relative;
}

.en .main-wrap .main-page .section-news .video-box .info-box .title {
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.en .main-wrap .main-page .section-news .video-box .info-box .desc {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -1px;
  color: #FFFFFF;
}

.en .main-wrap .main-page .section-news .video-box .info-box .btn_play {
  position: absolute;
  bottom: -129px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 35px;
  font-size: 18px;
  padding: 17.5px 30px;
  height: 70px;
}

.en .main-wrap .main-page .section-news .video-box .info-box .btn_play .icon_youtube {
  background: url("../img/main/ico-youtube.png") no-repeat center center/cover;
  width: 26px;
  height: 18px;
}

.en .main-wrap .main-page .section-news .video-box .info-box .btn_play .icon-arrow-right-short {
  margin-left: 20px;
}

.en .main-wrap .main-page .section-map {
  position: relative;
  background: url("../img/main/bg-map.png") no-repeat center center/cover;
  width: 100%;
  height: 920px;
}

.en .main-wrap .main-page .section-map .inner {
  width: 1244px;
  margin: 0 auto;
}

.en .main-wrap .main-page .section-map .inner .info-box {
  padding-top: 125px;
  margin-bottom: 233px;
}

.en .main-wrap .main-page .section-map .inner .info-box .title {
  font-weight: 700;
  font-size: 50px;
  line-height: 72px;
  margin-bottom: 33px;
  color: #000;
  text-align: center;
}

.en .main-wrap .main-page .section-map .inner .info-box .desc {
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -1px;
  color: #000;
  text-align: center;
}

.en .main-wrap .main-page .section-map .inner .map {
  position: relative;
}

.en .main-wrap .main-page .section-map .inner .map .pin {
  position: absolute;
  padding: 0 16px;
  height: 38px;
  line-height: 36px;
  background-color: rgba(255, 255, 255, 0.55);
  /*(수정) 2023-04-11*/
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  /*(추가) 2023-04-11*/
  box-sizing: border-box;
  border-radius: 19px;
  font-weight: 500;
  /*(수정) 2023-04-11*/
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  overflow: hidden;
  transition: 0.25s;
  cursor: pointer;
}

.en .main-wrap .main-page .section-map .inner .map .pin i {
  width: 12px;
  height: 16px;
  display: inline-block;
  background-image: url(../img/main/ico-pin-black.png);
  /*(수정) 2023-04-11*/
  background-size: 12px 16px;
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.en .main-wrap .main-page .section-map .inner .map .pin:hover {
  color: #E50050;
  box-shadow: inset 0 -3em 0 0 #FFFFFF;
}

.en .main-wrap .main-page .section-map .inner .map .pin:hover i {
  background-image: url(../img/main/ico-pin-pink.png);
  animation: fadeInUp;
  animation-duration: 0.5s;
}

.en .main-wrap .main-page .section-map .inner .map .pin.active {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 25px 20px rgba(0, 0, 0, 0.2);
  color: #E50050;
  transition: all 0.5s ease;
}

.en .main-wrap .main-page .section-map .inner .map .pin.active i {
  background-image: url(../img/main/ico-pin-pink.png);
}

.en .main-wrap .main-page .section-map .inner .map .pin span {
  vertical-align: bottom;
  margin-left: 10px;
  /*(수정) 2023-04-11*/
}

/*.en .main-wrap .main-page .section-map .inner .map .pin.amsterdam {
            top: 13px;
            left: 54px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.leuven {
            top: 60px;
            left: 86px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.milan {
            top: 125px;
            left: 215px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.madrid {
            top: 150px;
            left: 24px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.seoul {
            top: 0;
            left: 531px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.songdo {
            top: 41px;
            left: 498px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.daejeon {
            top: 92px;
            left: 541px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.tokyo {
            top: 161px;
            left: 607px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.synapse {
            top: 255px;
            left: 445px; } 
          .en .main-wrap .main-page .section-map .inner .map .pin.boston {
            top: 25px;
            left: 1098px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.newyork {
            top: 80px;
            left: 1040px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.rockville {
            top: 143px;
            left: 981px; }
          .en .main-wrap .main-page .section-map .inner .map .pin.virginia {
            top: 195px;
            left: 950px; }*/

/*
|----------------------------------|
 v.0.1 (선미) 최초 작업 -- 2021.09.06
|----------------------------------|
*/
/*특허논문*/
.section_RD .board .list.list-card .item .tit {
  /*R&D에만 말줄임표 없음*/
  display: block;
}

.section_RD .board .list.list-card.hover .item {
  padding: 41px 140px 41px 67px;
}

.section_RD .board .list.list-card.hover .item .tit-sub {
  margin-bottom: 6px;
}

.section_RD .board .list.list-card.hover .item .arrow .icon-arrow-right-short {
  right: 65px;
}

.section_RD .board .list .no-data {
  border: 1px solid #E9E9E9 !important;
}

/*연구소*/
.research-wrap {
  /*폰트 공통*/
  /*이미지 공통*/
  /*생명정보학연구소*/
  /*더바이옴연구소*/
  /*생명정보학/정밀의학/더바이옴/싱크진 공통*/
  /*빅데이터연구소*/
  /*정밀의학연구소*/
  /*싱크진 연구소*/
}

.research-wrap .research_bg {
  width: 100%;
  /* height: 600px;
    background-image: url("../img/RD/bg-visual.png"); */
  background-size: cover;
}

.research-wrap .divider {
  margin-top: 120px;
}

.research-wrap .info-box {
  padding-top: 150px;
  padding-bottom: 80px;
  padding-left: 338px;
}

.research-wrap .info-box .font-h3 {
  font-size: 56px;
  line-height: 81px;
  letter-spacing: -4.5px;
  font-weight: bold;
  margin-bottom: 20px;
}

.research-wrap .info-box .font-body {
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -1.3px;
}

.research-wrap .desc-box {
  width: 1244px;
  margin: 0 auto;
}

.research-wrap .desc-box p {
  font-size: 16px;
  line-height: 30px;
  color: #454545;
}

.research-wrap .desc-box p.sub-title {
  font-size: 22px;
  line-height: 36px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: -1.3px;
}

.research-wrap .img {
  width: 100%;
  height: 560px;
  background-image: url(../img/RD/img-analysis.png);
  background-size: 1920px 600px;
  background-position: 0 0;
  margin-bottom: 120px;
}

.research-wrap .section_lifeInformation .img {
  width: 100%;
  height: 560px;
  background-image: url(../img/RD/img-microscope.png);
  background-size: 1582px 560px;
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}

.research-wrap .section_theBiome .img {
  width: 100%;
  height: 560px;
  background-image: url(../img/RD/img-pincette.png);
  background-size: 1582px 560px;
  background-position: 323px 0;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}

.research-wrap .biome_area {
  padding-top: 120px;
}

.research-wrap .biome_area .font-h7 {
  margin-bottom: 40px;
}

.research-wrap .section_info_list {
  width: 1244px;
  margin: 0 auto;
}

.research-wrap .section_info_list.syncgenes-area .box {
  margin-bottom: 80px;
}

.research-wrap .section_info_list.syncgenes-area .box .font-body {
  font-weight: normal;
}

.research-wrap .section_info_list.syncgenes-area .box .font-body img {
  margin-bottom: 0;
}

.research-wrap .section_info_list .box {
  margin-bottom: 120px;
}

.research-wrap .section_info_list .box:last-of-type {
  margin-bottom: 0;
}

.research-wrap .section_info_list .box .font-h7 {
  display: inline-block;
  float: left;
  width: 321px;
  margin-right: 99px;
}

.research-wrap .section_info_list .box .font-h7>span {
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  color: #454545;
  display: block;
  padding-top: 20px;
}

.research-wrap .section_info_list .box .font-body {
  display: inline-block;
  float: left;
  width: calc(100% - 428px);
  font-weight: normal;
}

.research-wrap .section_info_list .box .font-body>p+img {
  padding-top: 40px;
  margin-bottom: 0;
}

.research-wrap .section_info_list .box .font-body img {
  margin-bottom: 40px;
}

.research-wrap .section_bigData {
  margin-bottom: 120px;
}

.research-wrap .section_bigData .img {
  width: 100%;
  height: 560px;
  background-image: url(../img/RD/img-bigData.png);
  background-size: 1582px 560px;
  background-position: 323px 0;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}

.research-wrap .section_research_area {
  width: 1244px;
  margin: 0 auto;
}

.research-wrap .section_research_area .font-h7 {
  display: inline-block;
  float: left;
  width: 210px;
}

.research-wrap .section_research_area .list {
  font-size: 16px;
  line-height: 30px;
  color: #454545;
  display: inline-block;
  float: left;
  letter-spacing: -1px;
  width: calc(100% - 210px);
}

.research-wrap .section_research_area .list li {
  float: left;
  margin-left: 65px;
}

.research-wrap .section_research_area .list li:first-of-type {
  margin-left: 0;
}

.research-wrap .section_research_area .list li p {
  padding-top: 30px;
  text-align: center;
}

.research-wrap .section_customMedicine .info-box {
  padding-bottom: 108px;
}

.research-wrap .section_customMedicine .img {
  width: 100%;
  height: 560px;
  background-image: url(../img/RD/img-person_research.png);
  background-size: 1582px 560px;
  background-position: 323px 0;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}

.research-wrap .section_status {
  height: 980px;
  background: url("../img/RD/bg-status.png") no-repeat center center/cover;
  margin-top: 150px;
  padding-top: 150px;
}

.research-wrap .section_status .font-h4 {
  width: 1244px;
  margin: 0 auto 100px;
  color: #FFFFFF;
  letter-spacing: -3px;
}

.research-wrap .section_status .tab-basic {
  width: 1244px;
  margin: 0 auto 50px;
}

.research-wrap .section_status .tab-basic .tab-list .nav-link {
  color: #909090;
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
  padding: 8px 25px;
  position: relative;
}

.research-wrap .section_status .tab-basic .tab-list .nav-link:first-of-type {
  padding-left: 0;
}

.research-wrap .section_status .tab-basic .tab-list .nav-link:first-of-type:before {
  background-color: transparent;
}

.research-wrap .section_status .tab-basic .tab-list .nav-link:before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #E9E9E9;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.3;
}

.research-wrap .section_status .tab-basic .tab-list .nav-link.active {
  color: #FFFFFF;
}

.research-wrap .section_status .tab-content {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.research-wrap .section_status .tab-content .tab-pane {
  /*slide 영역 공통*/
}

.research-wrap .section_status .tab-content .tab-pane .slide-box .slider {
  padding-left: 338px;
}

.research-wrap .section_status .tab-content .tab-pane .slide-box .slider .swiper-container {
  margin-bottom: 40px;
  overflow: hidden;
}

.research-wrap .section_status .tab-content .tab-pane .slide-box .slider .swiper-container .swiper-wrapper .swiper-slide.item {
  width: 296px !important;
  margin-right: 20px;
  /* a{
                       display: block;
                       .img{
                         width: 296px;
                         height: 198px;
                         display: block;
                         margin-bottom: 0;
                         img{
                           @include img-100;
                         }
                       }
                       .txt{
                         padding: 30px;
                         background-color:$gray-ffffff;
                         height: 124px;
                         display: inline-block;
                         width: 100%;
                         span{
                           font-size: 18px;
                           line-height: 32px;
                           color:$gray-000000;
                           @include ellipsis(2);
                           font-weight: 500;
                           height: 70px;
                         }
                       }
                     }*/
  display: block;
  /*------*/
}

.research-wrap .section_status .tab-content .tab-pane .slide-box .slider .swiper-container .swiper-wrapper .swiper-slide.item .img {
  width: 296px;
  height: 198px;
  display: block;
  margin-bottom: 0;
}

.research-wrap .section_status .tab-content .tab-pane .slide-box .slider .swiper-container .swiper-wrapper .swiper-slide.item .img img {
  width: 100%;
  height: 100%;
}

.research-wrap .section_status .tab-content .tab-pane .slide-box .slider .swiper-container .swiper-wrapper .swiper-slide.item .txt {
  padding: 30px;
  background-color: #FFFFFF;
  height: 124px;
  display: inline-block;
  width: 100%;
}

.research-wrap .section_status .tab-content .tab-pane .slide-box .slider .swiper-container .swiper-wrapper .swiper-slide.item .txt span {
  font-size: 18px;
  line-height: 32px;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 500;
  height: 70px;
}

.research-wrap .section_status .tab-content .tab-pane .slide-box .slider .slider-navigation .btn {
  background-color: transparent;
  border: 1px solid #FFFFFF;
}

.research-wrap .section_syncgenes {
  margin-bottom: 120px;
}

.research-wrap .section_syncgenes .img {
  width: 100%;
  height: 560px;
  background-image: url(../img/RD/img-analysis.png);
  background-size: 1920px 560px;
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-bottom: 100px;
  overflow: hidden;
}

.research-wrap .section_syncgenes .divider {
  margin-top: 90px;
}

.en .wrap.research-wrap .research_bg .frame.frameB {
  padding-top: 100px !important;
}

.en .wrap.research-wrap .research_bg .frame.frameB .hero-title {
  margin-bottom: 0 !important;
  text-align: center;
}

.modal .modal-dialog.research .modal-content .modal-body .font-h7 .sub_title {
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.75px;
  color: #2E87EF;
  display: block;
  margin-bottom: 10px;
}

.modal .modal-dialog.research .modal-content .modal-body .divider {
  margin: 40px 0 60px;
}

.modal .modal-dialog.research .modal-content .modal-body .desc {
  line-height: 30px;
  color: #454545;
}

.modal .modal-dialog.research .modal-content .modal-footer {
  padding: 22px 60px;
  display: block;
}

.modal .modal-dialog.research .modal-content .modal-footer .board {
  margin: 0;
}

.modal .modal-dialog.research .modal-content .modal-footer .board .navigation .content .item.prev {
  padding-left: 36px;
  padding-right: 0;
  text-align: left;
}

.modal .modal-dialog.research .modal-content .modal-footer .board .navigation .content .item.prev::before {
  background: url("../img/common/ico-arrow-left-ml.png") no-repeat 0 0;
  width: 15px;
  height: 27px;
}

.modal .modal-dialog.research .modal-content .modal-footer .board .navigation .content .item.next {
  padding-right: 36px;
  padding-left: 0;
  text-align: right;
}

.modal .modal-dialog.research .modal-content .modal-footer .board .navigation .content .item.next::before {
  background: url("../img/common/ico-arrow-right-ml.png") no-repeat 0 0;
  width: 15px;
  height: 27px;
}

.modal .modal-dialog.research .modal-content .modal-footer .board .navigation .content .item .title {
  font-size: 16px;
  line-height: 30px;
  display: block;
  width: 370px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
|----------------------------------|
 v.0.1 (선미) 최초 작업 -- 2021.08.31
|----------------------------------|
*/
.section_IR {
  position: relative;
  /*재무정보*/
  /*공시정보*/
  /*
  iframe{
    transform: scale(1.5);
    position: absolute;
    top: 900px;
    left: 580px;

    .ext-strict{
      display: inline-block;
      margin: 0 auto;
      height: 1324px;
    }
  }
  */
  /*투자자문의*/
  /*버튼 여백*/
}

.section_IR .financial_box {
  margin-bottom: 99px;
}

.section_IR .financial_box:last-of-type {
  margin-bottom: 0;
}

.section_IR .financial_box .subtitle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 29px;
}

.section_IR .financial_box .subtitle .text-unit {
  font-size: 14px;
  color: #707070;
}

.section_IR .financial_box .table.table-rotate {
  width: 100%;
}

.section_IR .financial_box .table.table-rotate tr {
  display: inline-block;
  width: 23%;
}

.section_IR .financial_box .table.table-rotate tr:first-of-type {
  width: 31%;
}

.section_IR .financial_box .table.table-rotate tr:first-of-type th,
.section_IR .financial_box .table.table-rotate tr:first-of-type td {
  padding-left: 60px;
}

.section_IR .financial_box .table.table-rotate tr:last-of-type th,
.section_IR .financial_box .table.table-rotate tr:last-of-type td {
  padding-right: 60px;
}

.section_IR .financial_box .table.table-rotate tr th {
  height: 100px;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 30px;
  border-bottom: 1px solid #D9D9D9;
  border-spacing: 0;
  border-right: 1px solid #f7f7f7;
  background-color: #f7f7f7 !important;
}

.section_IR .financial_box .table.table-rotate tr th:last-of-type {
  border-right: none;
}

.section_IR .financial_box .table.table-rotate tr td {
  display: block;
  border-bottom: 1px solid #E9E9E9;
  padding: 25px 30px 24px;
  border-spacing: 0;
}

.section_IR .financial_box .table.table-rotate tr td:last-of-type {
  border-bottom: none;
}

.section_IR .financial_box .table.table-rotate tr td:last-of-type.table-bg {
  border-bottom: none;
}

.section_IR .financial_box .table.table-rotate tr td.table-bg {
  background-color: #f5f8fb !important;
  font-weight: bold;
  color: #000000;
  border-bottom: 1px solid #D9D9D9;
}

.section_IR .financial_box .table.table-rotate tr .font-medium {
  font-weight: 500;
  color: #454545;
}

.section_IR .update_text {
  font-weight: 500;
  color: #909090;
  text-align: right;
  padding-top: 9px;
}

.section_IR .iframe-box {
  position: relative;
  width: 100%;
  height: 1560px;
  padding-bottom: 100%;
}

.section_IR .iframe-box iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(1.55);
  left: 33%;
  top: 27%;
}

.section_IR .question_box .text-area {
  position: relative;
  width: 1244px;
  margin: 0 auto 80px;
}

.section_IR .question_box .text-area .font-h4 {
  line-height: 64px;
  letter-spacing: -3px;
  margin-bottom: 58px;
}

.section_IR .question_box .text-area .number {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 0.25px;
}

.section_IR .question_box .text-area .btn {
  border: 2px solid #000000;
  position: absolute;
  right: 0;
  bottom: 0;
}

.section_IR .question_box .text-area .btn span {
  margin-right: 30px;
}

.section_IR .question_box .img-area {
  background: url("../img/IR/img-handshake.png") no-repeat center center/cover;
  height: 560px;
}

.section_IR .privacy_box {
  margin: 0 auto;
  width: 1244px;
}

.section_IR .privacy_box#write {
  padding-top: 120px;
}

.section_IR .privacy_box .font-h5 {
  margin-bottom: 60px;
  line-height: 52px;
}

.section_IR .privacy_box .font-h5 span {
  font-size: 44px;
  margin-right: 3px;
  line-height: 1;
}

.section_IR .privacy_box .input-phone-box .notice-text {
  padding-left: 214px;
  padding-top: 25px;
}

.section_IR .privacy_box .input-phone-box .notice-text span {
  vertical-align: text-bottom;
  padding-left: 7px;
  font-weight: 500;
  color: #909090;
  font-size: 18px;
  line-height: 20px;
}

.section_IR .privacy_box .file-box {
  background-color: #f7f7f7;
}

.section_IR .privacy_box .agreement {
  padding: 40px 40px 32px;
  background-color: #F7F7F7;
  border: 1px solid #E9E9E9;
  margin-bottom: 20px;
}

.section_IR .privacy_box .agreement p {
  line-height: 30px;
  color: #454545;
  margin-bottom: 5px;
}

.section_IR .privacy_box .agreement p.guidance {
  padding-top: 18px;
  font-size: 18px;
  color: #909090;
}

.section_IR .privacy_box .form-check {
  display: inline-block;
}

.section_IR .privacy_box .divider {
  margin: 102px 0;
}

.section_IR .btn-box {
  padding-top: 140px;
}

.en .section_IR {
  /*투자자문의*/
}

.en .section_IR .privacy_box {
  margin: 0 auto;
  width: 1244px;
}

.en .section_IR .privacy_box .input-email-box .at_sign {
  line-height: 30px;
  padding: 15px 14px;
}

.modal .modal-dialog.layer-modal {
  max-width: 540px;
}

.modal .modal-dialog.layer-modal .modal-content {
  background-color: #2E87EF;
  border: 5px solid #2E87EF;
  border-bottom: none;
  background-clip: initial;
}

.modal .modal-dialog.layer-modal .modal-content .modal-header {
  padding: 0;
  background-color: #fff;
  border-bottom: none;
  position: relative;
  display: block;
  height: 0;
}

.modal .modal-dialog.layer-modal .modal-content .modal-header .blue-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, rgba(46, 77, 239, 0) 49.17%, rgba(27, 59, 227, 0.4) 100%), linear-gradient(0deg, #2E87EF, #2E87EF);
  border-radius: 50%;
  z-index: 1;
}

.modal .modal-dialog.layer-modal .modal-content .modal-header .blue-circle .icon-union {
  background-image: url("../img/common/ico-union.svg");
  width: 100%;
  height: 100%;
}

.modal .modal-dialog.layer-modal .modal-content .modal-body {
  flex: 1 1 0;
  background-color: #fff;
  padding: 0;
  z-index: 0;
}

.modal .modal-dialog.layer-modal .modal-content .modal-body .data-img {
  width: 100%;
  height: 100%;
}

.modal .modal-dialog.layer-modal .modal-content .modal-body .data-img img {
  width: 100%;
  height: 100%;
}

.modal .modal-dialog.layer-modal .modal-content .modal-body .btn-area {
  justify-content: center;
  display: flex;
  align-items: center;
}

.modal .modal-dialog.layer-modal .modal-content .modal-body .btn-area .btn {
  font-weight: 700;
}

.modal .modal-dialog.layer-modal .modal-content .modal-footer {
  margin: 0;
  padding: 0;
  background-color: #2E87EF;
  border-top: none;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 15px;
}

.modal .modal-dialog.layer-modal .modal-content .modal-footer .close-box {
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  position: relative;
}

.modal .modal-dialog.layer-modal .modal-content .modal-footer .close-box:before {
  opacity: 10%;
  content: '';
  border: 1px solid #fff;
  position: absolute;
  left: -20px;
  height: 12px;
  top: 9px;
}

.modal .modal-dialog.layer-modal .modal-content .modal-footer .close-box .icon {
  margin-left: 10px;
}

.modal .modal-dialog.layer-modal .modal-content .modal-footer .form-check {
  margin: 0px;
}

.modal .modal-dialog.layer-modal .modal-content .modal-footer .form-check .form-check-input {
  margin: 0px 10px 0px 0px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background-color: #2E87EF;
}

.modal .modal-dialog.layer-modal .modal-content .modal-footer .form-check .form-check-input:checked {
  border: 2px solid #fff;
}

.modal .modal-dialog.layer-modal .modal-content .modal-footer .form-check .form-check-label {
  color: #fff;
}

.modal .modal-dialog.layer-modal .modal-content .modal-footer .ico-close-white {
  background-image: url("../img/common/ico-close-white.svg");
  width: 16px;
  height: 16px;
}

.modal .modal-dialog.layer-modal2 .zoom_img {width:100%;}
.modal .modal-dialog.layer-modal2 .zoom_img img {width:100%;}


.modal .modal-dialog.layer-modal2 .modal-content {
  position: relative;
  box-sizing:border-box;
  padding:80px 60px 40px;
}
.modal .modal-dialog.layer-modal2 .modal-content .btn-close {
	position:absolute;
	top:28px;
	right:30px;
}

/* GNB 수정 */
.wrap .header .gnb-2depth .box,
.wrap .header-main .gnb-2depth .box {
  padding-bottom: 100px !important;
}

.gnb-2depth .folding button {
  position: absolute;
  right: 0;
  top: -2px;
  width: 23px;
  height: 23px;
  border: none;
  background-color: transparent;
  padding: 0;
  line-height: 0;
}

.gnb-2depth .folding button::before,
.gnb-2depth .folding button::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #222;
  border: none;
}

.gnb-2depth .folding button::before {
  width: 11px;
  height: 1px;
}

.gnb-2depth .folding button::after {
  width: 1px;
  height: 11px;
  transition: all 300ms ease-in-out;
  transform-origin: center center;
}

.gnb-2depth .folding.on button::after {
  transform: rotate(90deg);
  opacity: 0;
}

.gnb-2depth .folding a:hover {
  color: #000 !important;
  font-weight: 500;
}

.gnb-2depth a.activation {
  color: #E50050 !important;
  font-weight: 500;
}

.gnb-2depth .folding .cards-body {
  display: none;
  margin: 15px 0 0 10px;
}

.gnb-2depth .item>ul>li {
  position: relative;
}

.gnb-2depth .menu0204 {
  width: 250px;
}

.gnb-2depth .menu0205 {
  width: 210px;
}

/* //GNB 수정 */
/* 2024-12-18 : 추가 */

body {
  font-family: "Noto Sans KR", serif;
}

.font-h3,
.font-h4,
.btn {
  font-family: "Noto Sans KR", serif;
}

.font-h4-new {
  letter-spacing: -2px;
}

.business_bg-new {
  margin-bottom: 120px !important;
}

.wrap .full-bg .frame.frameB .hero-title-new {
  letter-spacing: -1.8px;
}

.section_business .subject-box--noafter {
  margin-bottom: 100px;
  padding-bottom: 100px;
}

.section_business .subject-box--noafter:after {
  display: none;
}

.section_business .subject-box .img-wrap-new {
  padding: 0 42px;
}

.section_business .subject-box .title {
  line-height: 60px;
}

.section_business .subject-box .subject-new {
  margin-bottom: 120px;
}

.flex-box {
  display: flex;
}

.flex-box__figure {
  margin-right: 40px;
}

.flex-box__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 2025-01-15 : 추가 Biobank */
.blind {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden
}

.biobank {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: top;
}

.biobank h2,
.biobank h3,
.biobank h4,
.biobank h5,
figure {
  margin: 0;
}

.frame-new {
  position: relative;
  width: 1244px;
  margin: 0 auto;
  margin-bottom: 120px;
  padding: 100px 0;
  border-bottom: 1px solid #DBDBDB;
  text-align: center;
}

.hero-title-new {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -1.8px;
}

.biobank__box {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.biobank__box--second {
  border-top: 10px solid #F5F5F5;
}

.biobank__box--third {
  border-top: 1px solid #E9E9E9;
}

.biobank__box~.biobank__box {
  margin-top: 120px;
  padding-top: 120px;
}

.biobank__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -2px;
}

.biobank__description {
  margin-top: 20px;
  font-size: 16px;
  color: #454545;
  line-height: 30px;
  letter-spacing: -0.75px;
}

.biobank__description--black {
  font-size: 18px;
  color: #000;
}

.biobank__question {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.75px;
}

.biobank__answer {
  margin-top: 10px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #454545;
}

.biobank__sub {
  margin-top: 60px;
}

.biobank__sub--nuff {
  margin-top: 50px;
}

.biobank__ruletext {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.75px;
}

.biobank-list {
  margin-top:20px;
  color: #454545;
}

.biobank-list--dot {
  margin-top:10px;
}

.biobank-list--dot li {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.75px;
}

.biobank-list--dot li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: calc(50% - 2.5px);
  width: 5px;
  height: 5px;
  background-color: #454545;
  border-radius: 50%;
}

.biobank-list--dot li~li {
  margin-top: 10px;
}

.biobank__subtitle {
  font-size: 22px;
  font-weight: 700;
}

.biobank__detail {
  margin-top: 20px;
}

.biobank-list--order li {
  position: relative;
  padding-left: 310px;
  line-height: 30px;
}

.biobank-list--order li~li {
  margin-top: 8px;
}

.bioban-list__order {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #2E87EF;
}

.biobank-list__circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2E87EF;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Proxima Nova';
  color: #fff;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.75px;
}

.bioban-list__description b {
  font-weight: 700;
}

.biobank__button {
  margin-top: 140px;
  text-align: center;
}


.new-tab-content {width:100%;}
.new-tab-content .tab-box {width:100%; margin-bottom:60px;}
.new-tab-content .tab-box ul {display:flex;justify-content:space-between;align-items:center;}
.new-tab-content .tab-box ul li {flex:1; border-bottom:2px solid #ddd;}
.new-tab-content .tab-box ul li.on {border-bottom:2px solid #2E87EF;}
.new-tab-content .tab-box ul li a {display:flex;justify-content:center;align-items:center; padding-bottom:20px;}
.new-tab-content .tab-box ul li a strong {font-size:20px; line-height:30px; color:#BCBCBC;}
.new-tab-content .tab-box ul li.on a strong {color:#2E87EF;}
.new-tab-content div[data-tabbox] {display:none;}


.row-cont {width:100%;}
.row-cont > ul {display:flex; justify-content:space-between; align-items:flex-start; gap:40px;}
.row-cont > ul > li {flex:1;}
.row-cont > ul > li .main-title {margin-bottom:40px !important;}

.customized-bi-box {width:100%; margin:40px 0; padding:50px; border:1px solid #e9e9e9; box-sizing:border-box;}
.customized-bi-box .tit {text-align:center; font-size:22px; font-weight:700; line-height:1.5;}
.customized-bi-box .box-cont {width:100%; margin-top:40px; display:flex; justify-content:space-between; align-items:flex-start; gap:20px;}
.customized-bi-box .box-cont .box-itm {flex:1;}
.customized-bi-box .box-cont .line,
.customized-bi-box .box-cont .box-itm {min-height:275px;}
.customized-bi-box .box-cont .line {border-left:1px dashed #E9E9E9;}

.customized-bi-box .box-cont .box-itm {border:1px solid #E9E9E9; border-radius:20px; overflow:hidden;}
.customized-bi-box .box-cont .box-itm dl {width:100%;}
.customized-bi-box .box-cont .box-itm dl dt {padding:20px 0; font-size:18px; font-weight:700; text-align:center; background:#F7F7F7;}
.customized-bi-box .box-cont .box-itm dl dd {width:100%; padding:30px 24px; box-sizing:border-box;}
.customized-bi-box .box-cont .box-itm dl dd > ul {display:flex; justify-content:space-between; align-items:flex-start; gap:10px;}
.customized-bi-box .box-cont .box-itm dl dd > ul > li {position:relative;}
.customized-bi-box .box-cont .box-itm dl dd > ul > li:before {content:''; display:block; width:100px; height:50px;}
.customized-bi-box .box-cont .box-itm dl dd > ul > li.ico-itm1:before {background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-customized-itm1.png) 0 0 no-repeat;}
.customized-bi-box .box-cont .box-itm dl dd > ul > li.ico-itm2:before {background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-customized-itm2.png) 0 0 no-repeat;}
.customized-bi-box .box-cont .box-itm dl dd > ul > li.ico-itm3:before {background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-customized-itm3.png) 0 0 no-repeat;}
.customized-bi-box .box-cont .box-itm dl dd > ul > li.ico-itm4:before {background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-customized-itm4.png) 0 0 no-repeat;}
.customized-bi-box .box-cont .box-itm dl dd > ul > li.ico-itm5:before {background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-customized-itm5.png) 0 0 no-repeat;}
.customized-bi-box .box-cont .box-itm dl dd > ul > li.ico-itm6:before {background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-customized-itm6.png) 0 0 no-repeat;}

.customized-bi-box .box-cont .box-itm dl dd > ul > li > p {padding-top:16px; font-size:16px; font-weight:700;  color:#454545; text-align:center;}
.customized-bi-box .box-cont .box-itm dl dd .etc-ico {width:100%; line-height:24px;}
.customized-bi-box .box-cont .box-itm dl dd .etc-ico .ico-list {display:flex; justify-content:space-between; align-items:flex-start;}
.customized-bi-box .box-cont .box-itm dl dd .etc-ico .ico-list [class^=itm] {display:block; width:100px; height:50px;}
.customized-bi-box .box-cont .box-itm dl dd .etc-ico .ico-list [class^=itm].itm1 {background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-customized-etc-itm1.png) 0 0 no-repeat;}
.customized-bi-box .box-cont .box-itm dl dd .etc-ico .ico-list [class^=itm].itm2 {background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-customized-etc-itm2.png) 0 0 no-repeat;}
.customized-bi-box .box-cont .box-itm dl dd .etc-ico .ico-list [class^=itm].itm3 {background:url(/publishing/pc-ko/dist/img/business/microbiome/ico-customized-etc-itm3.png) 0 0 no-repeat;}
.customized-bi-box .box-cont .box-itm dl dd .etc-ico > p {padding-top:16px; font-size:16px; font-weight:700;  color:#454545; text-align:center;}
.mb60 {margin-bottom:60px !important;}

.row-img-box {width:100%; padding:50px; box-sizing:border-box; border:1px solid #E9E9E9;}
.row-img-box > ul {display:flex; justify-content:space-between; align-items:flex-start; gap:30px;}
.row-img-box > ul > li {flex:1;}
.row-img-box > ul > li.txt {flex:none; width:345px}
.row-img-box > ul > li.line {flex:none; width:1px; min-height:400px; border-left:1px dashed #E9E9E9;}
.row-img-box .box-txt {width:100%; margin-top:20px; padding:20px; border-radius:12px; box-sizing:border-box; background:#f7f7f7;}
.row-img-box .box-txt .tit {font-size:18px; font-weight:500; line-height:32px;}
.row-img-box .box-txt > ul {margin-top:16px;}
.row-img-box .box-txt > ul > li {position:relative; padding-left:15px; font-size:14px; line-height:20px; color:#454545;}
.row-img-box .box-txt > ul > li:before {content:''; position:absolute; top:8px; left:0px; display:block; width:5px; height:5px; border-radius:100%; background:#454545;}
.row-img-box .box-txt > ul > li + li {margin-top:10px;}
.row-img-box .row-img {border:none; padding:0;}
.row-img-box .row-img ul {gap:30px;}