@charset "UTF-8";

/*!
 * Hover.css (http://ianlunn.github.io/Hover/)
 * Version: 2.3.2
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover

 * Hover.css Copyright Ian Lunn 2017. Generated with Sass.
 */
/* 2D TRANSITIONS */
/* Grow */
.fc-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-grow:hover,
.fc-grow:focus,
.fc-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* Shrink */
.fc-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-shrink:hover,
.fc-shrink:focus,
.fc-shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

/* Pulse */
@-webkit-keyframes fc-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes fc-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.fc-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-pulse:hover,
.fc-pulse:focus,
.fc-pulse:active {
    -webkit-animation-name: fc-pulse;
    animation-name: fc-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Pulse Grow */
@-webkit-keyframes fc-pulse-grow {
    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes fc-pulse-grow {
    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.fc-pulse-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-pulse-grow:hover,
.fc-pulse-grow:focus,
.fc-pulse-grow:active {
    -webkit-animation-name: fc-pulse-grow;
    animation-name: fc-pulse-grow;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Pulse Shrink */
@-webkit-keyframes fc-pulse-shrink {
    to {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes fc-pulse-shrink {
    to {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.fc-pulse-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-pulse-shrink:hover,
.fc-pulse-shrink:focus,
.fc-pulse-shrink:active {
    -webkit-animation-name: fc-pulse-shrink;
    animation-name: fc-pulse-shrink;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Push */
@-webkit-keyframes fc-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fc-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.fc-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-push:hover,
.fc-push:focus,
.fc-push:active {
    -webkit-animation-name: fc-push;
    animation-name: fc-push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Pop */
@-webkit-keyframes fc-pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes fc-pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.fc-pop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-pop:hover,
.fc-pop:focus,
.fc-pop:active {
    -webkit-animation-name: fc-pop;
    animation-name: fc-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Bounce In */
.fc-bounce-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.fc-bounce-in:hover,
.fc-bounce-in:focus,
.fc-bounce-in:active {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Bounce Out */
.fc-bounce-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.fc-bounce-out:hover,
.fc-bounce-out:focus,
.fc-bounce-out:active {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Rotate */
.fc-rotate {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-rotate:hover,
.fc-rotate:focus,
.fc-rotate:active {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
}

/* Grow Rotate */
.fc-grow-rotate {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-grow-rotate:hover,
.fc-grow-rotate:focus,
.fc-grow-rotate:active {
    -webkit-transform: scale(1.1) rotate(4deg);
    transform: scale(1.1) rotate(4deg);
}

/* Float */
.fc-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-float:hover,
.fc-float:focus,
.fc-float:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

/* Sink */
.fc-sink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-sink:hover,
.fc-sink:focus,
.fc-sink:active {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

/* Bob */
@-webkit-keyframes fc-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

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

@keyframes fc-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

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

@-webkit-keyframes fc-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes fc-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

.fc-bob {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-bob:hover,
.fc-bob:focus,
.fc-bob:active {
    -webkit-animation-name: fc-bob-float, fc-bob;
    animation-name: fc-bob-float, fc-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

/* Hang */
@-webkit-keyframes fc-hang {
    0% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    50% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

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

@keyframes fc-hang {
    0% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    50% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

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

@-webkit-keyframes fc-hang-sink {
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

@keyframes fc-hang-sink {
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

.fc-hang {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-hang:hover,
.fc-hang:focus,
.fc-hang:active {
    -webkit-animation-name: fc-hang-sink, fc-hang;
    animation-name: fc-hang-sink, fc-hang;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

/* Skew */
.fc-skew {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-skew:hover,
.fc-skew:focus,
.fc-skew:active {
    -webkit-transform: skew(-10deg);
    transform: skew(-10deg);
}

/* Skew Forward */
.fc-skew-forward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.fc-skew-forward:hover,
.fc-skew-forward:focus,
.fc-skew-forward:active {
    -webkit-transform: skew(-10deg);
    transform: skew(-10deg);
}

/* Skew Backward */
.fc-skew-backward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.fc-skew-backward:hover,
.fc-skew-backward:focus,
.fc-skew-backward:active {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
}

/* Wobble Vertical */
@-webkit-keyframes fc-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fc-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fc-wobble-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-wobble-vertical:hover,
.fc-wobble-vertical:focus,
.fc-wobble-vertical:active {
    -webkit-animation-name: fc-wobble-vertical;
    animation-name: fc-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble Horizontal */
@-webkit-keyframes fc-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fc-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fc-wobble-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-wobble-horizontal:hover,
.fc-wobble-horizontal:focus,
.fc-wobble-horizontal:active {
    -webkit-animation-name: fc-wobble-horizontal;
    animation-name: fc-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble To Bottom Right */
@-webkit-keyframes fc-wobble-to-bottom-right {
    16.65% {
        -webkit-transform: translate(8px, 8px);
        transform: translate(8px, 8px);
    }

    33.3% {
        -webkit-transform: translate(-6px, -6px);
        transform: translate(-6px, -6px);
    }

    49.95% {
        -webkit-transform: translate(4px, 4px);
        transform: translate(4px, 4px);
    }

    66.6% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    83.25% {
        -webkit-transform: translate(1px, 1px);
        transform: translate(1px, 1px);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes fc-wobble-to-bottom-right {
    16.65% {
        -webkit-transform: translate(8px, 8px);
        transform: translate(8px, 8px);
    }

    33.3% {
        -webkit-transform: translate(-6px, -6px);
        transform: translate(-6px, -6px);
    }

    49.95% {
        -webkit-transform: translate(4px, 4px);
        transform: translate(4px, 4px);
    }

    66.6% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    83.25% {
        -webkit-transform: translate(1px, 1px);
        transform: translate(1px, 1px);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.fc-wobble-to-bottom-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-wobble-to-bottom-right:hover,
.fc-wobble-to-bottom-right:focus,
.fc-wobble-to-bottom-right:active {
    -webkit-animation-name: fc-wobble-to-bottom-right;
    animation-name: fc-wobble-to-bottom-right;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble To Top Right */
@-webkit-keyframes fc-wobble-to-top-right {
    16.65% {
        -webkit-transform: translate(8px, -8px);
        transform: translate(8px, -8px);
    }

    33.3% {
        -webkit-transform: translate(-6px, 6px);
        transform: translate(-6px, 6px);
    }

    49.95% {
        -webkit-transform: translate(4px, -4px);
        transform: translate(4px, -4px);
    }

    66.6% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    83.25% {
        -webkit-transform: translate(1px, -1px);
        transform: translate(1px, -1px);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes fc-wobble-to-top-right {
    16.65% {
        -webkit-transform: translate(8px, -8px);
        transform: translate(8px, -8px);
    }

    33.3% {
        -webkit-transform: translate(-6px, 6px);
        transform: translate(-6px, 6px);
    }

    49.95% {
        -webkit-transform: translate(4px, -4px);
        transform: translate(4px, -4px);
    }

    66.6% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    83.25% {
        -webkit-transform: translate(1px, -1px);
        transform: translate(1px, -1px);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.fc-wobble-to-top-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-wobble-to-top-right:hover,
.fc-wobble-to-top-right:focus,
.fc-wobble-to-top-right:active {
    -webkit-animation-name: fc-wobble-to-top-right;
    animation-name: fc-wobble-to-top-right;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble Top */
@-webkit-keyframes fc-wobble-top {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }

    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }

    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }

    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }

    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }

    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

@keyframes fc-wobble-top {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }

    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }

    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }

    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }

    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }

    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

.fc-wobble-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.fc-wobble-top:hover,
.fc-wobble-top:focus,
.fc-wobble-top:active {
    -webkit-animation-name: fc-wobble-top;
    animation-name: fc-wobble-top;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble Bottom */
@-webkit-keyframes fc-wobble-bottom {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }

    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }

    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }

    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }

    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }

    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

@keyframes fc-wobble-bottom {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }

    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }

    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }

    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }

    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }

    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

.fc-wobble-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.fc-wobble-bottom:hover,
.fc-wobble-bottom:focus,
.fc-wobble-bottom:active {
    -webkit-animation-name: fc-wobble-bottom;
    animation-name: fc-wobble-bottom;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Wobble Skew */
@-webkit-keyframes fc-wobble-skew {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }

    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }

    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }

    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }

    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }

    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

@keyframes fc-wobble-skew {
    16.65% {
        -webkit-transform: skew(-12deg);
        transform: skew(-12deg);
    }

    33.3% {
        -webkit-transform: skew(10deg);
        transform: skew(10deg);
    }

    49.95% {
        -webkit-transform: skew(-6deg);
        transform: skew(-6deg);
    }

    66.6% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }

    83.25% {
        -webkit-transform: skew(-2deg);
        transform: skew(-2deg);
    }

    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}

.fc-wobble-skew {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-wobble-skew:hover,
.fc-wobble-skew:focus,
.fc-wobble-skew:active {
    -webkit-animation-name: fc-wobble-skew;
    animation-name: fc-wobble-skew;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Buzz */
@-webkit-keyframes fc-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

@keyframes fc-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

.fc-buzz {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-buzz:hover,
.fc-buzz:focus,
.fc-buzz:active {
    -webkit-animation-name: fc-buzz;
    animation-name: fc-buzz;
    -webkit-animation-duration: 0.15s;
    animation-duration: 0.15s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Buzz Out */
@-webkit-keyframes fc-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes fc-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

.fc-buzz-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-buzz-out:hover,
.fc-buzz-out:focus,
.fc-buzz-out:active {
    -webkit-animation-name: fc-buzz-out;
    animation-name: fc-buzz-out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Forward */
.fc-forward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-forward:hover,
.fc-forward:focus,
.fc-forward:active {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}

/* Backward */
.fc-backward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-backward:hover,
.fc-backward:focus,
.fc-backward:active {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
}

/* BACKGROUND TRANSITIONS */
/* Fade */
.fc-fade {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    overflow: hidden;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

.fc-fade:hover,
.fc-fade:focus,
.fc-fade:active {
    background-color: #0068b7;
    color: white;
}

/* Back Pulse */
@-webkit-keyframes fc-back-pulse {
    50% {
        background-color: rgba(32, 152, 209, 0.75);
    }
}

@keyframes fc-back-pulse {
    50% {
        background-color: rgba(32, 152, 209, 0.75);
    }
}

.fc-back-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    overflow: hidden;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
}

.fc-back-pulse:hover,
.fc-back-pulse:focus,
.fc-back-pulse:active {
    -webkit-animation-name: fc-back-pulse;
    animation-name: fc-back-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-color: #0068b7;
    background-color: #2098d1;
    color: white;
}

/* Sweep To Right */
.fc-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-sweep-to-right:hover,
.fc-sweep-to-right:focus,
.fc-sweep-to-right:active {
    color: white;
}

.fc-sweep-to-right:hover:before,
.fc-sweep-to-right:focus:before,
.fc-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Sweep To Left */
.fc-sweep-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-sweep-to-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-sweep-to-left:hover,
.fc-sweep-to-left:focus,
.fc-sweep-to-left:active {
    color: white;
}

.fc-sweep-to-left:hover:before,
.fc-sweep-to-left:focus:before,
.fc-sweep-to-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Sweep To Bottom */
.fc-sweep-to-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-sweep-to-bottom:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-sweep-to-bottom:hover,
.fc-sweep-to-bottom:focus,
.fc-sweep-to-bottom:active {
    color: white;
}

.fc-sweep-to-bottom:hover:before,
.fc-sweep-to-bottom:focus:before,
.fc-sweep-to-bottom:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/* Sweep To Top */
.fc-sweep-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-sweep-to-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-sweep-to-top:hover,
.fc-sweep-to-top:focus,
.fc-sweep-to-top:active {
    color: white;
}

.fc-sweep-to-top:hover:before,
.fc-sweep-to-top:focus:before,
.fc-sweep-to-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/* Bounce To Right */
.fc-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.fc-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-bounce-to-right:hover,
.fc-bounce-to-right:focus,
.fc-bounce-to-right:active {
    color: white;
}

.fc-bounce-to-right:hover:before,
.fc-bounce-to-right:focus:before,
.fc-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */
.fc-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.fc-bounce-to-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-bounce-to-left:hover,
.fc-bounce-to-left:focus,
.fc-bounce-to-left:active {
    color: white;
}

.fc-bounce-to-left:hover:before,
.fc-bounce-to-left:focus:before,
.fc-bounce-to-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Bottom */
.fc-bounce-to-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.fc-bounce-to-bottom:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-bounce-to-bottom:hover,
.fc-bounce-to-bottom:focus,
.fc-bounce-to-bottom:active {
    color: white;
}

.fc-bounce-to-bottom:hover:before,
.fc-bounce-to-bottom:focus:before,
.fc-bounce-to-bottom:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Top */
.fc-bounce-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.fc-bounce-to-top:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-bounce-to-top:hover,
.fc-bounce-to-top:focus,
.fc-bounce-to-top:active {
    color: white;
}

.fc-bounce-to-top:hover:before,
.fc-bounce-to-top:focus:before,
.fc-bounce-to-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */
.fc-radial-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

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

.fc-radial-out:hover,
.fc-radial-out:focus,
.fc-radial-out:active {
    color: white;
}

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

/* Radial In */
.fc-radial-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    background: #0068b7;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

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

.fc-radial-in:hover,
.fc-radial-in:focus,
.fc-radial-in:active {
    color: white;
}

.fc-radial-in:hover:before,
.fc-radial-in:focus:before,
.fc-radial-in:active:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* Rectangle In */
.fc-rectangle-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #0068b7;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-rectangle-in:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e1e1e1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-rectangle-in:hover,
.fc-rectangle-in:focus,
.fc-rectangle-in:active {
    color: white;
}

.fc-rectangle-in:hover:before,
.fc-rectangle-in:focus:before,
.fc-rectangle-in:active:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* Rectangle Out */
.fc-rectangle-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-rectangle-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-rectangle-out:hover,
.fc-rectangle-out:focus,
.fc-rectangle-out:active {
    color: white;
}

.fc-rectangle-out:hover:before,
.fc-rectangle-out:focus:before,
.fc-rectangle-out:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Shutter In Horizontal */
.fc-shutter-in-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #0068b7;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-shutter-in-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e1e1e1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-shutter-in-horizontal:hover,
.fc-shutter-in-horizontal:focus,
.fc-shutter-in-horizontal:active {
    color: white;
}

.fc-shutter-in-horizontal:hover:before,
.fc-shutter-in-horizontal:focus:before,
.fc-shutter-in-horizontal:active:before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

/* Shutter Out Horizontal */
.fc-shutter-out-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0068b7;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-shutter-out-horizontal:hover,
.fc-shutter-out-horizontal:focus,
.fc-shutter-out-horizontal:active {
    color: white;
}

.fc-shutter-out-horizontal:hover:before,
.fc-shutter-out-horizontal:focus:before,
.fc-shutter-out-horizontal:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Shutter In Vertical */
.fc-shutter-in-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #0068b7;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-shutter-in-vertical:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e1e1e1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-shutter-in-vertical:hover,
.fc-shutter-in-vertical:focus,
.fc-shutter-in-vertical:active {
    color: white;
}

.fc-shutter-in-vertical:hover:before,
.fc-shutter-in-vertical:focus:before,
.fc-shutter-in-vertical:active:before {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

/* Shutter Out Vertical */
.fc-shutter-out-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-shutter-out-vertical:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0068b7;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-shutter-out-vertical:hover,
.fc-shutter-out-vertical:focus,
.fc-shutter-out-vertical:active {
    color: white;
}

.fc-shutter-out-vertical:hover:before,
.fc-shutter-out-vertical:focus:before,
.fc-shutter-out-vertical:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/* BORDER TRANSITIONS */
/* Border Fade */
.fc-border-fade {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
    box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
    /* Hack to improve aliasing on mobile/tablet devices */
}

.fc-border-fade:hover,
.fc-border-fade:focus,
.fc-border-fade:active {
    box-shadow: inset 0 0 0 4px #0068b7, 0 0 1px rgba(0, 0, 0, 0);
    /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */
.fc-hollow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: background;
    transition-property: background;
    box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
    /* Hack to improve aliasing on mobile/tablet devices */
}

.fc-hollow:hover,
.fc-hollow:focus,
.fc-hollow:active {
    background: none;
}

/* Trim */
.fc-trim {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-trim:before {
    content: '';
    position: absolute;
    border: white solid 4px;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.fc-trim:hover:before,
.fc-trim:focus:before,
.fc-trim:active:before {
    opacity: 1;
}

/* Ripple Out */
@-webkit-keyframes fc-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

@keyframes fc-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

.fc-ripple-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-ripple-out:before {
    content: '';
    position: absolute;
    border: #e1e1e1 solid 6px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.fc-ripple-out:hover:before,
.fc-ripple-out:focus:before,
.fc-ripple-out:active:before {
    -webkit-animation-name: fc-ripple-out;
    animation-name: fc-ripple-out;
}

/* Ripple In */
@-webkit-keyframes fc-ripple-in {
    100% {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1;
    }
}

@keyframes fc-ripple-in {
    100% {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1;
    }
}

.fc-ripple-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-ripple-in:before {
    content: '';
    position: absolute;
    border: #e1e1e1 solid 4px;
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.fc-ripple-in:hover:before,
.fc-ripple-in:focus:before,
.fc-ripple-in:active:before {
    -webkit-animation-name: fc-ripple-in;
    animation-name: fc-ripple-in;
}

/* Outline Out */
.fc-outline-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-outline-out:before {
    content: '';
    position: absolute;
    border: #e1e1e1 solid 4px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: top, right, bottom, left;
    transition-property: top, right, bottom, left;
}

.fc-outline-out:hover:before,
.fc-outline-out:focus:before,
.fc-outline-out:active:before {
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
}

/* Outline In */
.fc-outline-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-outline-in:before {
    pointer-events: none;
    content: '';
    position: absolute;
    border: #e1e1e1 solid 4px;
    top: -16px;
    right: -16px;
    bottom: -16px;
    left: -16px;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: top, right, bottom, left;
    transition-property: top, right, bottom, left;
}

.fc-outline-in:hover:before,
.fc-outline-in:focus:before,
.fc-outline-in:active:before {
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    opacity: 1;
}

/* Round Corners */
.fc-round-corners {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: border-radius;
    transition-property: border-radius;
}

.fc-round-corners:hover,
.fc-round-corners:focus,
.fc-round-corners:active {
    border-radius: 1em;
}

/* Underline From Left */
.fc-underline-from-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.fc-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #0068b7;
    height: 4px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-underline-from-left:hover:before,
.fc-underline-from-left:focus:before,
.fc-underline-from-left:active:before {
    right: 0;
}

/* Underline From Center */
.fc-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.fc-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #0068b7;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-underline-from-center:hover:before,
.fc-underline-from-center:focus:before,
.fc-underline-from-center:active:before {
    left: 0;
    right: 0;
}

/* Underline From Right */
.fc-underline-from-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.fc-underline-from-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 100%;
    right: 0;
    bottom: 0;
    background: #0068b7;
    height: 4px;
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-underline-from-right:hover:before,
.fc-underline-from-right:focus:before,
.fc-underline-from-right:active:before {
    left: 0;
}

/* Overline From Left */
.fc-overline-from-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.fc-overline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    top: 0;
    background: #0068b7;
    height: 4px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-overline-from-left:hover:before,
.fc-overline-from-left:focus:before,
.fc-overline-from-left:active:before {
    right: 0;
}

/* Overline From Center */
.fc-overline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.fc-overline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    top: 0;
    background: #0068b7;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-overline-from-center:hover:before,
.fc-overline-from-center:focus:before,
.fc-overline-from-center:active:before {
    left: 0;
    right: 0;
}

/* Overline From Right */
.fc-overline-from-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.fc-overline-from-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 100%;
    right: 0;
    top: 0;
    background: #0068b7;
    height: 4px;
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-overline-from-right:hover:before,
.fc-overline-from-right:focus:before,
.fc-overline-from-right:active:before {
    left: 0;
}

/* Reveal */
.fc-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.fc-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-color: #0068b7;
    border-style: solid;
    border-width: 0;
    -webkit-transition-property: border-width;
    transition-property: border-width;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-reveal:hover:before,
.fc-reveal:focus:before,
.fc-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    border-width: 4px;
}

/* Underline Reveal */
.fc-underline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.fc-underline-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0068b7;
    height: 4px;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-underline-reveal:hover:before,
.fc-underline-reveal:focus:before,
.fc-underline-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* Overline Reveal */
.fc-overline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.fc-overline-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    background: #0068b7;
    height: 4px;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-overline-reveal:hover:before,
.fc-overline-reveal:focus:before,
.fc-overline-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.fc-glow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

.fc-glow:hover,
.fc-glow:focus,
.fc-glow:active {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Shadow */
.fc-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

.fc-shadow:hover,
.fc-shadow:focus,
.fc-shadow:active {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* Grow Shadow */
.fc-grow-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

.fc-grow-shadow:hover,
.fc-grow-shadow:focus,
.fc-grow-shadow:active {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* Box Shadow Outset */
.fc-box-shadow-outset {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

.fc-box-shadow-outset:hover,
.fc-box-shadow-outset:focus,
.fc-box-shadow-outset:active {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */
.fc-box-shadow-inset {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
    /* Hack to improve aliasing on mobile/tablet devices */
}

.fc-box-shadow-inset:hover,
.fc-box-shadow-inset:focus,
.fc-box-shadow-inset:active {
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
    /* Hack to improve aliasing on mobile/tablet devices */
}

/* Float Shadow */
.fc-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    /* W3C */
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}

.fc-float-shadow:hover,
.fc-float-shadow:focus,
.fc-float-shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    /* move the element up by 5px */
}

.fc-float-shadow:hover:before,
.fc-float-shadow:focus:before,
.fc-float-shadow:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Shadow Radial */
.fc-shadow-radial {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-shadow-radial:before,
.fc-shadow-radial:after {
    pointer-events: none;
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-repeat: no-repeat;
    height: 5px;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.fc-shadow-radial:before {
    bottom: 100%;
    background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

.fc-shadow-radial:after {
    top: 100%;
    background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

.fc-shadow-radial:hover:before,
.fc-shadow-radial:focus:before,
.fc-shadow-radial:active:before,
.fc-shadow-radial:hover:after,
.fc-shadow-radial:focus:after,
.fc-shadow-radial:active:after {
    opacity: 1;
}

/* SPEECH BUBBLES */
/* Bubble Top */
.fc-bubble-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-bubble-top:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    left: calc(50% - 10px);
    top: 0;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #e1e1e1 transparent;
}

.fc-bubble-top:hover:before,
.fc-bubble-top:focus:before,
.fc-bubble-top:active:before {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* Bubble Right */
.fc-bubble-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-bubble-right:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    top: calc(50% - 10px);
    right: 0;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #e1e1e1;
}

.fc-bubble-right:hover:before,
.fc-bubble-right:focus:before,
.fc-bubble-right:active:before {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

/* Bubble Bottom */
.fc-bubble-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-bubble-bottom:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    left: calc(50% - 10px);
    bottom: 0;
    border-width: 10px 10px 0 10px;
    border-color: #e1e1e1 transparent transparent transparent;
}

.fc-bubble-bottom:hover:before,
.fc-bubble-bottom:focus:before,
.fc-bubble-bottom:active:before {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

/* Bubble Left */
.fc-bubble-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-bubble-left:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    border-style: solid;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    top: calc(50% - 10px);
    left: 0;
    border-width: 10px 10px 10px 0;
    border-color: transparent #e1e1e1 transparent transparent;
}

.fc-bubble-left:hover:before,
.fc-bubble-left:focus:before,
.fc-bubble-left:active:before {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

/* Bubble Float Top */
.fc-bubble-float-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-bubble-float-top:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: calc(50% - 10px);
    top: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #e1e1e1 transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-bubble-float-top:hover,
.fc-bubble-float-top:focus,
.fc-bubble-float-top:active {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.fc-bubble-float-top:hover:before,
.fc-bubble-float-top:focus:before,
.fc-bubble-float-top:active:before {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* Bubble Float Right */
.fc-bubble-float-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-bubble-float-right:before {
    position: absolute;
    z-index: -1;
    top: calc(50% - 10px);
    right: 0;
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #e1e1e1;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-bubble-float-right:hover,
.fc-bubble-float-right:focus,
.fc-bubble-float-right:active {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

.fc-bubble-float-right:hover:before,
.fc-bubble-float-right:focus:before,
.fc-bubble-float-right:active:before {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

/* Bubble Float Bottom */
.fc-bubble-float-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-bubble-float-bottom:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: calc(50% - 10px);
    bottom: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #e1e1e1 transparent transparent transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-bubble-float-bottom:hover,
.fc-bubble-float-bottom:focus,
.fc-bubble-float-bottom:active {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.fc-bubble-float-bottom:hover:before,
.fc-bubble-float-bottom:focus:before,
.fc-bubble-float-bottom:active:before {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

/* Bubble Float Left */
.fc-bubble-float-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-bubble-float-left:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: calc(50% - 10px);
    left: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #e1e1e1 transparent transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fc-bubble-float-left:hover,
.fc-bubble-float-left:focus,
.fc-bubble-float-left:active {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.fc-bubble-float-left:hover:before,
.fc-bubble-float-left:focus:before,
.fc-bubble-float-left:active:before {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

/* ICONS */
/* Icon Back */
.fc-icon-back {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

.fc-icon-back .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-back:hover .hvr-icon,
.fc-icon-back:focus .hvr-icon,
.fc-icon-back:active .hvr-icon {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
}

/* Icon Forward */
.fc-icon-forward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
}

.fc-icon-forward .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-forward:hover .hvr-icon,
.fc-icon-forward:focus .hvr-icon,
.fc-icon-forward:active .hvr-icon {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}

/* Icon Down */
@-webkit-keyframes fc-icon-down {

    0%,
    50%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25%,
    75% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@keyframes fc-icon-down {

    0%,
    50%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25%,
    75% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

/* Icon Down */
.fc-icon-down {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-down .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fc-icon-down:hover .hvr-icon,
.fc-icon-down:focus .hvr-icon,
.fc-icon-down:active .hvr-icon {
    -webkit-animation-name: fc-icon-down;
    animation-name: fc-icon-down;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/* Icon Up */
@-webkit-keyframes fc-icon-up {

    0%,
    50%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25%,
    75% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@keyframes fc-icon-up {

    0%,
    50%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25%,
    75% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

/* Icon Up */
.fc-icon-up {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-up .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fc-icon-up:hover .hvr-icon,
.fc-icon-up:focus .hvr-icon,
.fc-icon-up:active .hvr-icon {
    -webkit-animation-name: fc-icon-up;
    animation-name: fc-icon-up;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/* Icon Spin */
.fc-icon-spin {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-spin .hvr-icon {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.fc-icon-spin:hover .hvr-icon,
.fc-icon-spin:focus .hvr-icon,
.fc-icon-spin:active .hvr-icon {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

/* Icon Drop */
@-webkit-keyframes fc-icon-drop {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51%,
    100% {
        opacity: 1;
    }
}

@keyframes fc-icon-drop {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51%,
    100% {
        opacity: 1;
    }
}

/* Icon Drop */
.fc-icon-drop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-drop .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fc-icon-drop:hover .hvr-icon,
.fc-icon-drop:focus .hvr-icon,
.fc-icon-drop:active .hvr-icon {
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-animation-name: fc-icon-drop;
    animation-name: fc-icon-drop;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Icon Fade */
.fc-icon-fade {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-fade .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: color;
    transition-property: color;
}

.fc-icon-fade:hover .hvr-icon,
.fc-icon-fade:focus .hvr-icon,
.fc-icon-fade:active .hvr-icon {
    color: #0F9E5E;
}

/* Icon Float Away */
@-webkit-keyframes fc-icon-float-away {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-1em);
        transform: translateY(-1em);
    }
}

@keyframes fc-icon-float-away {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-1em);
        transform: translateY(-1em);
    }
}

/* Icon Float Away */
.fc-icon-float-away {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-float-away .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fc-icon-float-away:hover .hvr-icon,
.fc-icon-float-away:focus .hvr-icon,
.fc-icon-float-away:active .hvr-icon {
    -webkit-animation-name: fc-icon-float-away;
    animation-name: fc-icon-float-away;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/* Icon Sink Away */
@-webkit-keyframes fc-icon-sink-away {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(1em);
        transform: translateY(1em);
    }
}

@keyframes fc-icon-sink-away {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(1em);
        transform: translateY(1em);
    }
}

/* Icon Sink Away */
.fc-icon-sink-away {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-sink-away .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fc-icon-sink-away:hover .hvr-icon,
.fc-icon-sink-away:focus .hvr-icon,
.fc-icon-sink-away:active .hvr-icon {
    -webkit-animation-name: fc-icon-sink-away;
    animation-name: fc-icon-sink-away;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

/* Icon Grow */
.fc-icon-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-grow .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-grow:hover .hvr-icon,
.fc-icon-grow:focus .hvr-icon,
.fc-icon-grow:active .hvr-icon {
    -webkit-transform: scale(1.3) translateZ(0);
    transform: scale(1.3) translateZ(0);
}

/* Icon Shrink */
.fc-icon-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-shrink .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-shrink:hover .hvr-icon,
.fc-icon-shrink:focus .hvr-icon,
.fc-icon-shrink:active .hvr-icon {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

/* Icon Pulse */
@-webkit-keyframes fc-icon-pulse {
    25% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    75% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes fc-icon-pulse {
    25% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    75% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

.fc-icon-pulse {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-pulse .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-pulse:hover .hvr-icon,
.fc-icon-pulse:focus .hvr-icon,
.fc-icon-pulse:active .hvr-icon {
    -webkit-animation-name: fc-icon-pulse;
    animation-name: fc-icon-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Icon Pulse Grow */
@-webkit-keyframes fc-icon-pulse-grow {
    to {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

@keyframes fc-icon-pulse-grow {
    to {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

.fc-icon-pulse-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-pulse-grow .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-pulse-grow:hover .hvr-icon,
.fc-icon-pulse-grow:focus .hvr-icon,
.fc-icon-pulse-grow:active .hvr-icon {
    -webkit-animation-name: fc-icon-pulse-grow;
    animation-name: fc-icon-pulse-grow;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Icon Pulse Shrink */
@-webkit-keyframes fc-icon-pulse-shrink {
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes fc-icon-pulse-shrink {
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

.fc-icon-pulse-shrink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.fc-icon-pulse-shrink .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-pulse-shrink:hover .hvr-icon,
.fc-icon-pulse-shrink:focus .hvr-icon,
.fc-icon-pulse-shrink:active .hvr-icon {
    -webkit-animation-name: fc-icon-pulse-shrink;
    animation-name: fc-icon-pulse-shrink;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Icon Push */
@-webkit-keyframes fc-icon-push {
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes fc-icon-push {
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

.fc-icon-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-push .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-push:hover .hvr-icon,
.fc-icon-push:focus .hvr-icon,
.fc-icon-push:active .hvr-icon {
    -webkit-animation-name: fc-icon-push;
    animation-name: fc-icon-push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Icon Pop */
@-webkit-keyframes fc-icon-pop {
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes fc-icon-pop {
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

.fc-icon-pop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-pop .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-pop:hover .hvr-icon,
.fc-icon-pop:focus .hvr-icon,
.fc-icon-pop:active .hvr-icon {
    -webkit-animation-name: fc-icon-pop;
    animation-name: fc-icon-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Icon Bounce */
.fc-icon-bounce {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-bounce .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-bounce:hover .hvr-icon,
.fc-icon-bounce:focus .hvr-icon,
.fc-icon-bounce:active .hvr-icon {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Icon Rotate */
.fc-icon-rotate {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-rotate .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-rotate:hover .hvr-icon,
.fc-icon-rotate:focus .hvr-icon,
.fc-icon-rotate:active .hvr-icon {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}

/* Icon Grow Rotate */
.fc-icon-grow-rotate {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-grow-rotate .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-grow-rotate:hover .hvr-icon,
.fc-icon-grow-rotate:focus .hvr-icon,
.fc-icon-grow-rotate:active .hvr-icon {
    -webkit-transform: scale(1.5) rotate(12deg);
    transform: scale(1.5) rotate(12deg);
}

/* Icon Float */
.fc-icon-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-float .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-float:hover .hvr-icon,
.fc-icon-float:focus .hvr-icon,
.fc-icon-float:active .hvr-icon {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}

/* Icon Sink */
.fc-icon-sink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-sink .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fc-icon-sink:hover .hvr-icon,
.fc-icon-sink:focus .hvr-icon,
.fc-icon-sink:active .hvr-icon {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
}

/* Icon Bob */
@-webkit-keyframes fc-icon-bob {
    0% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    50% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

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

@keyframes fc-icon-bob {
    0% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    50% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

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

@-webkit-keyframes fc-icon-bob-float {
    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@keyframes fc-icon-bob-float {
    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

.fc-icon-bob {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-bob .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fc-icon-bob:hover .hvr-icon,
.fc-icon-bob:focus .hvr-icon,
.fc-icon-bob:active .hvr-icon {
    -webkit-animation-name: fc-icon-bob-float, fc-icon-bob;
    animation-name: fc-icon-bob-float, fc-icon-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

/* Icon Hang */
@-webkit-keyframes fc-icon-hang {
    0% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

    50% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

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

@keyframes fc-icon-hang {
    0% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

    50% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

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

@-webkit-keyframes fc-icon-hang-sink {
    100% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@keyframes fc-icon-hang-sink {
    100% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
}

.fc-icon-hang {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-hang .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fc-icon-hang:hover .hvr-icon,
.fc-icon-hang:focus .hvr-icon,
.fc-icon-hang:active .hvr-icon {
    -webkit-animation-name: fc-icon-hang-sink, fc-icon-hang;
    animation-name: fc-icon-hang-sink, fc-icon-hang;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

/* Icon Wobble Horizontal */
@-webkit-keyframes fc-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }

    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fc-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }

    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fc-icon-wobble-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-wobble-horizontal .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fc-icon-wobble-horizontal:hover .hvr-icon,
.fc-icon-wobble-horizontal:focus .hvr-icon,
.fc-icon-wobble-horizontal:active .hvr-icon {
    -webkit-animation-name: fc-icon-wobble-horizontal;
    animation-name: fc-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Icon Wobble Vertical */
@-webkit-keyframes fc-icon-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

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

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fc-icon-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

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

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fc-icon-wobble-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-wobble-vertical .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fc-icon-wobble-vertical:hover .hvr-icon,
.fc-icon-wobble-vertical:focus .hvr-icon,
.fc-icon-wobble-vertical:active .hvr-icon {
    -webkit-animation-name: fc-icon-wobble-vertical;
    animation-name: fc-icon-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* Icon Buzz */
@-webkit-keyframes fc-icon-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

@keyframes fc-icon-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

.fc-icon-buzz {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-buzz .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fc-icon-buzz:hover .hvr-icon,
.fc-icon-buzz:focus .hvr-icon,
.fc-icon-buzz:active .hvr-icon {
    -webkit-animation-name: fc-icon-buzz;
    animation-name: fc-icon-buzz;
    -webkit-animation-duration: 0.15s;
    animation-duration: 0.15s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Icon Buzz Out */
@-webkit-keyframes fc-icon-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes fc-icon-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

.fc-icon-buzz-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.fc-icon-buzz-out .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fc-icon-buzz-out:hover .hvr-icon,
.fc-icon-buzz-out:focus .hvr-icon,
.fc-icon-buzz-out:active .hvr-icon {
    -webkit-animation-name: fc-icon-buzz-out;
    animation-name: fc-icon-buzz-out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

/* CURLS */
/* Curl Top Left */
.fc-curl-top-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-curl-top-left:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    background: white;
    /* IE9 */
    background: linear-gradient(135deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#ffffff', endColorstr='#000000');
    /*For IE7-8-9*/
    z-index: 1000;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

.fc-curl-top-left:hover:before,
.fc-curl-top-left:focus:before,
.fc-curl-top-left:active:before {
    width: 25px;
    height: 25px;
}

/* Curl Top Right */
.fc-curl-top-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-curl-top-right:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    right: 0;
    background: white;
    /* IE9 */
    background: linear-gradient(225deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

.fc-curl-top-right:hover:before,
.fc-curl-top-right:focus:before,
.fc-curl-top-right:active:before {
    width: 25px;
    height: 25px;
}

/* Curl Bottom Right */
.fc-curl-bottom-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-curl-bottom-right:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    bottom: 0;
    right: 0;
    background: white;
    /* IE9 */
    background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

.fc-curl-bottom-right:hover:before,
.fc-curl-bottom-right:focus:before,
.fc-curl-bottom-right:active:before {
    width: 25px;
    height: 25px;
}

/* Curl Bottom Left */
.fc-curl-bottom-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.fc-curl-bottom-left:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    bottom: 0;
    left: 0;
    background: white;
    /* IE9 */
    background: linear-gradient(45deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

.fc-curl-bottom-left:hover:before,
.fc-curl-bottom-left:focus:before,
.fc-curl-bottom-left:active:before {
    width: 25px;
    height: 25px;
}

/* reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article,
aside,
details,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

ol,
ul,
li {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after {
    content: '';
    content: none;
}

q:before,
q:after {
    content: '';
    content: none;
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #c7c7c7;
    margin: 1em 0;
    padding: 0;
}

img {
    border: 0 none;
    max-width: 100%;
}

.hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
}

form {
    min-width: auto;
}

input[type="image"] {
    border: 0 none;
}

button,
input[type="submit"] {
    cursor: pointer;
    border: 0 none;
}

button::-moz-focus-inner {
    border: 0 none;
    padding: 0;
}

html {
    font-size: 100%;
    font-family: "Noto Sans KR", sans-serif;
    color: #111;
}

@media (max-width: 767px) {
    html {
        font-size: 75%;
    }
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    word-wrap: break-word;
    word-break: keep-all;
    zoom: 1;
    -webkit-text-size-adjust: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
}

th,
td,
input,
select,
textarea,
button {
    font: inherit;
    color: inherit;
}

a {
    font: inherit;
    text-decoration: none;
    color: inherit;
}

input[type="text"],
input[type="password"] {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

textarea,
input[type="submit"] {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

select {
    padding: 0 25px 0 10px;
    background-image: url(../images/icon_select_arrow.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select:focus {
    border-color: #0068b7;
}

select::-ms-expand {
    display: none;
}

address {
    font-style: normal;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    box-sizing: border-box;
}

textarea {
    overflow: auto;
    resize: vertical;
}

/* ==========================================================================
  게시판
   ========================================================================== */
.board-wrap--fc {
    padding: 0;
    width: 100%;
    font-size: 1rem;
    color: #606060;
}

.board-wrap--fc input,
.board-wrap--fc select,
.board-wrap--fc textarea {
    display: inline-block;
    font-size: 0.9125rem;
    line-height: 1;
    vertical-align: middle;
}

.board-wrap--fc a {
    display: block;
    font-size: 0.75rem;
    color: #414141;
    text-decoration: none;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.board-wrap--fc .board-title {
    margin-bottom: 30px;
    font-weight: normal;
    font-size: 1.875rem;
    line-height: 1;
    color: #303030;
    text-align: center;
}

.board-wrap--fc .board-paging {
    margin: 15px auto 0;
    text-align: center;
    font-size: 0;
    line-height: 0;
}

.board-wrap--fc .btn-write-wrap--fc {
    margin: -38px 0 0;
    *zoom: 1;
}

.board-wrap--fc .btn-write-wrap--fc:after {
    content: "";
    display: table;
    clear: both;
}

.board-wrap--fc .btn-write-wrap--fc .btn-write--fc {
    float: right;
    padding: 0 30px;
    min-width: 100px;
    border: 1px solid #7b858e;
    background: #7b858e;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 2.25rem;
    color: #fff;
    text-align: center;
}

.board-wrap--fc th.required:after {
    display: inline-block;
    margin-top: -3px;
    margin-left: 7px;
    width: 14px;
    height: 11px;
    background: url("../images/required.png") no-repeat 0 0;
    vertical-align: middle;
    content: '';
}

.board-wrap--fc .category-tab--fc {
    margin: 0 0 50px;
    width: 100%;
}

.board-wrap--fc .category-tab--fc ul {
    width: 100%;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.board-wrap--fc .category-tab--fc ul li {
    display: inline-block;
    margin: 0 15px;
}

.board-wrap--fc .category-tab--fc ul li a {
    position: relative;
    display: block;
    padding: 0 3px;
    font-size: 1.076rem;
    line-height: 40px;
    color: #303030;
}

.board-wrap--fc .category-tab--fc ul li.on a {
    font-weight: bold;
    color: #111;
}

.board-wrap--fc .category-tab--fc ul li.on a:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 55;
    width: 100%;
    height: 2px;
    background: #111;
}

.board-wrap--fc .board-view--fc {
    border-top: 1px solid #0068b7;
}

.board-wrap--fc .board-view--fc header {
    padding: 15px 32px 14px;
    border-bottom: 1px solid #c7c7c7;
    background-color: #f4f5f7;
    font-size: 14px;
    line-height: 20px;
    *zoom: 1;
}

.board-wrap--fc .board-view--fc header:after {
    content: "";
    display: table;
    clear: both;
}

.board-wrap--fc .board-view--fc header h1 {
    float: left;
    font-weight: 500;
    color: #333;
}

.board-wrap--fc .board-view--fc header address {
    float: right;
    font-style: normal;
    color: #444;
}

.board-wrap--fc .board-view--fc header address p {
    float: left;
    padding: 0 18px;
    background: url("../images/board-view-header-line.gif") no-repeat right center;
}

.board-wrap--fc .board-view--fc header address p:last-child {
    padding-right: 0;
    background: none;
}

.board-wrap--fc .board-view--fc .board-conts--fc {
    margin-bottom: 20px;
    padding: 15px 32px;
    font-size: 13px;
    line-height: 18px;
    color: #444;
}

.board-wrap--fc .board-view--fc .board-conts--fc div,
.board-wrap--fc .board-view--fc .board-conts--fc p {
    font-size: 15px;
    line-height: 25px;
    color: #414141;
}

.board-wrap--fc .board-view--fc .board-conts--fc figure {
    max-width: 500px;
    margin: 20px 0 30px;
    text-align: left;
}

.board-wrap--fc .board-view--fc .board-conts--fc figure .embed-responsive-16by9 {
    display: block;
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 96.25%;
}

.board-wrap--fc .board-view--fc .board-conts--fc figure .embed-responsive-16by9 iframe {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}

.board-wrap--fc .board-view--fc .board-conts--fc figure img {
    max-width: 100%;
}

.board-wrap--fc .board-view--fc .board-view-file--fc {
    clear: both;
    display: inline-block;
    width: 100%;
    margin: 15px 0 0;
    padding: 15px 32px;
    border-top: 1px solid #e9e9e9;
    line-height: 20px;
}

.board-wrap--fc .board-view--fc .board-view-file--fc a {
    font-size: inherit;
}

.board-wrap--fc .board-view--fc .board-view-file--fc a strong {
    font-weight: 500;
}

.board-wrap--fc .board-view--fc .comment-wrap--fc {
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}

.board-wrap--fc .board-view--fc .comment-wrap--fc ul li.no-comment--fc {
    padding: 18px 32px;
    border-bottom: 1px solid #e1e1e1;
    font-size: 0.8125rem;
    line-height: 18px;
    text-align: center;
}

.board-wrap--fc .board-view--fc .comment-wrap--fc .comment-list--fc {
    display: table;
    table-layout: fixed;
    padding: 13px 32px;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
}

.board-wrap--fc .board-view--fc .comment-wrap--fc .comment-list--fc span {
    display: table-cell;
    line-height: 18px;
    vertical-align: middle;
}

.board-wrap--fc .board-view--fc .comment-wrap--fc .comment-list--fc span:first-child {
    width: 100px;
}

.board-wrap--fc .board-view--fc .comment-wrap--fc .comment-list--fc span:nth-child(2) {
    text-align: left;
}

.board-wrap--fc .board-view--fc .comment-wrap--fc .comment-list--fc span:nth-child(3) {
    width: 150px;
    text-align: right;
}

.board-wrap--fc .board-view--fc .comment-wrap--fc .comment-list--fc span a {
    display: table-cell;
    width: 20px;
    text-align: right;
    vertical-align: middle;
}

.board-wrap--fc .board-view--fc .comment-wrap--fc .comment-list--fc span a img {
    margin-bottom: -3px;
}

.board-wrap--fc .board-view--fc .comment-write--fc {
    padding: 13px 32px;
    width: 100%;
}

.board-wrap--fc .board-view--fc .comment-write--fc>p:first-child {
    padding-bottom: 13px;
    width: 100%;
}

.board-wrap--fc .board-view--fc .comment-write--fc p {
    font-size: 0.8125rem;
}

.board-wrap--fc .board-view--fc .comment-write--fc p:first-child label {
    margin-right: 10px;
    vertical-align: middle;
}

.board-wrap--fc .board-view--fc .comment-write--fc p:first-child input {
    margin-right: 30px;
    width: 200px;
}

.board-wrap--fc .board-view--fc .comment-write--fc p textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    font-size: 0.75rem;
    line-height: 1.125rem;
}

.board-wrap--fc .board-view--fc .comment-write--fc div {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.board-wrap--fc .board-view--fc .comment-write--fc div p {
    display: table-cell;
    vertical-align: middle;
}

.board-wrap--fc .board-view--fc .comment-write--fc div p:last-child {
    width: 100px;
}

.board-wrap--fc .board-view--fc .comment-write--fc a {
    display: block;
    width: 100px;
    height: 100px;
    background: #656565;
    line-height: 100px;
    color: #fff;
    text-align: center;
}

.board-wrap--fc .board-view--fc .comment-write--fc .board-view-captcha--fc {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
}

.board-wrap--fc .board-view--fc .comment-write--fc .board-view-captcha--fc label {
    font-weight: bold;
    color: #111;
    vertical-align: middle;
}

.board-wrap--fc .board-view--fc .comment-write--fc .board-view-captcha--fc input {
    margin-left: 5px;
    width: 100px;
    vertical-align: middle;
}

.board-wrap--fc .board-view--fc .comment-write--fc .board-view-captcha--fc img {
    vertical-align: middle;
}

.board-wrap--fc .board-view--fc .comment-write--fc .board-view-captcha--fc span {
    display: inline-block;
    margin: 10px 0 0;
    width: 100%;
    font-size: 12px;
    line-height: 17px;
    vertical-align: middle;
}

.board-wrap--fc .board-view--fc .comment-write--fc .board-view-captcha--fc div {
    display: block;
}

.board-wrap--fc .board-view--fc .btn-view-wrap--fc {
    margin: 20px 0 40px;
    text-align: right;
    *zoom: 1;
}

.board-wrap--fc .board-view--fc .btn-view-wrap--fc:after {
    content: "";
    display: table;
    clear: both;
}

.board-wrap--fc .board-view--fc .btn-view-wrap--fc p {
    float: left;
    font-size: 0;
    line-height: 0;
}

.board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-del--fc,
.board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-modify--fc,
.board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-reply--fc {
    display: inline-block;
    margin-right: 7px;
    padding: 0 15px;
    min-width: 100px;
    background: #d3d3d3;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 38px;
    color: #464646;
    text-align: center;
}

.board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-list--fc {
    display: inline-block;
    padding: 0 15px;
    min-width: 100px;
    background: #464646;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 38px;
    color: #fff;
    text-align: center;
}

.board-wrap--fc .board-view--fc .post-navi--fc li {
    border-bottom: 1px solid #aaa;
    padding: 18px 32px;
    font-size: 0.8125rem;
    line-height: 18px;
    vertical-align: middle;
    *zoom: 1;
}

.board-wrap--fc .board-view--fc .post-navi--fc li:after {
    content: "";
    display: table;
    clear: both;
}

.board-wrap--fc .board-view--fc .post-navi--fc li a,
.board-wrap--fc .board-view--fc .post-navi--fc li span,
.board-wrap--fc .board-view--fc .post-navi--fc li strong {
    font-size: 0.8125rem;
    line-height: 18px;
    vertical-align: middle;
    color: #999;
}

.board-wrap--fc .board-view--fc .post-navi--fc li a {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 75%;
}

.board-wrap--fc .board-view--fc .post-navi--fc li span {
    float: right;
}

.board-wrap--fc .board-view--fc .post-navi--fc li strong {
    float: left;
    margin-right: 82px;
    font-weight: 700;
}

.board-wrap--fc .board-view--fc .post-navi--fc li:first-child {
    border-top: 1px solid #aaa;
}

.board-wrap--fc .board-view--fc .post-navi--fc li:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
}

.board-wrap--fc .board-view--fc .post-navi--fc .prev-post--fc {
    background: url("../images/prev-post-arrow.png") no-repeat 80px center;
}

.board-wrap--fc .board-view--fc .post-navi--fc .prev-post--fc a {
    color: #999;
}

.board-wrap--fc .board-view--fc .post-navi--fc .next-post--fc {
    background: url("../images/next-post-arrow.png") no-repeat 80px center;
}

.board-wrap--fc .board-view--fc .post-navi--fc .next-post--fc a {
    color: #999;
}

.board-wrap--fc .gallery-list--fc {
    border-top: 1px solid #0068b7;
    font-size: 0;
}

.board-wrap--fc .gallery-list--fc figure {
    display: inline-block;
    margin-bottom: 25px;
    padding: 0 17px;
    width: 33.33333333333333%;
    vertical-align: top;
}

.board-wrap--fc .gallery-list--fc figure a {
    display: block;
    width: 100%;
    height: 100%;
}

.board-wrap--fc .gallery-list--fc figure a .thumb-wrap--fc {
    display: block;
    overflow: hidden;
    position: relative;
    height: 0;
}

.board-wrap--fc .gallery-list--fc figure a .thumb-wrap--fc.embed-responsive-21by9 {
    padding-bottom: 42.85714%;
}

.board-wrap--fc .gallery-list--fc figure a .thumb-wrap--fc.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.board-wrap--fc .gallery-list--fc figure a .thumb-wrap--fc iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

.board-wrap--fc .gallery-list--fc figure a .thumb-wrap--fc img {
    width: 100%;
}

.board-wrap--fc .gallery-list--fc figure a figcaption {
    padding: 11px 20px 16px;
    background: #f5f5f5;
}

.board-wrap--fc .gallery-list--fc figure a figcaption li {
    font-size: 13px;
    line-height: 20px;
    color: #414141;
}

.board-wrap--fc .gallery-list--fc figure a figcaption li strong {
    clear: both;
    width: 40px;
    font-weight: bold;
}

.board-wrap--fc .gallery-list--fc figure a figcaption li:last-of-type {
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 20px;
    height: 40px;
}

.board-wrap--fc .webzine-board-list--fc tr.no-data--fc {
    min-height: 0;
}

.board-wrap--fc .webzine-board-list--fc tr.no-data--fc td {
    padding: 15px 0;
}

.board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc a {
    /*
          font-size: 0.75rem;
          line-height: 17px;
          color: #414141;
          vertical-align: middle;
          text-decoration: none;
          transition: all .2s ease;
      */
}

.board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc a:hover {
    color: #000;
}

.board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc a:hover strong {
    text-decoration: underline;
}

.board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div {
    vertical-align: middle;
}

.board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div img.thumb--fc {
    padding: 0;
}

.board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div:first-child {
    width: 150px;
}

.board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div strong {
    display: inline-block;
    margin: 5px 0;
    font-weight: 400;
}

.board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div strong:hover {
    text-decoration: underline;
}

.board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div span {
    display: inline-block;
    margin: 10px 0 5px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 17px;
    height: 34px;
}

@media (min-width: 768px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div span {
        font-size: 1rem;
    }
}

.board-wrap--fc .webzine-board-list--fc tbody tr td img {
    display: inline-block;
    padding: 0 0 0 10px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .board-wrap--fc {
        padding: 0;
        width: 100%;
        font-size: 12px;
        line-height: 1;
        color: #606060;
    }
}

@media (max-width: 575px) {

    .board-wrap--fc input,
    .board-wrap--fc select,
    .board-wrap--fc textarea {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-title {
        margin-bottom: 1.25rem;
        font-weight: normal;
        font-size: 1.25rem;
        line-height: 1;
        color: #303030;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .btn-write-wrap--fc {
        margin: 20px 0 0;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .btn-write-wrap--fc .btn-write--fc {
        float: none;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .category-tab--fc ul li a {
        display: block;
        font-size: 0.92rem;
        color: #606060;
        text-decoration: none;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .board-wrap--fc .category-tab--fc ul li a:hover {
        color: #111;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc header {
        padding: 15px 10px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc header h1 {
        float: none;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc header address {
        float: left;
        font-style: normal;
        color: #414141;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc header address p {
        float: left;
        margin: 7px 0 0;
        padding: 0 10px;
        font-size: 12px;
        line-height: 18px;
    }

    .board-wrap--fc .board-view--fc header address p:first-child {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .board-conts--fc {
        padding: 15px 10px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .board-view-file--fc {
        padding: 15px 10px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .comment-write--fc {
        padding: 13px 20px;
    }
}

@media (max-width: 575px) {
    .board-wrap--fc .board-view--fc .comment-write--fc {
        padding: 13px 10px;
    }
}

@media (min-width: 768px) {
    .board-wrap--fc .board-view--fc .comment-write--fc p:first-child {
        padding-right: 10px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .comment-write--fc p:first-child label {
        display: inline-block;
        width: 14%;
        margin-right: 0;
        vertical-align: middle;
    }
}

@media (max-width: 575px) {
    .board-wrap--fc .board-view--fc .comment-write--fc p:first-child label {
        width: 20%;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .comment-write--fc p:first-child input {
        display: inline-block;
        width: 35%;
        margin-right: 2%;
    }

    .board-wrap--fc .board-view--fc .comment-write--fc p:first-child input[type="password"] {
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .board-wrap--fc .board-view--fc .comment-write--fc p:first-child input {
        width: 29%;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .comment-write--fc p textarea {
        height: 70px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .comment-write--fc a {
        width: 100%;
        height: 70px;
        line-height: 70px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc p {
        float: none;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {

    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-del--fc,
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-modify--fc,
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-reply--fc {
        padding: 0;
        width: 30%;
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .post-navi--fc li {
        padding-left: 50px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .post-navi--fc li a {
        max-width: 95%;
    }

    .board-wrap--fc .board-view--fc .post-navi--fc li strong {
        display: none;
    }

    .board-wrap--fc .board-view--fc .post-navi--fc li span {
        position: relative;
        bottom: -5px;
        float: left;
        clear: both;
        width: 100%;
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .post-navi--fc .prev-post--fc {
        background-position: 15px 23px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .post-navi--fc .next-post--fc {
        background-position: 15px 23px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .gallery-list--fc figure {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc {
        table-layout: auto;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc thead th {
        display: none;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr {
        display: inline-block;
        width: 100%;
        min-height: 101px;
    }

    .board-wrap--fc .webzine-board-list--fc tbody tr:first-child {
        border-top: 1px solid #303030;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td {
        float: left;
        width: 100%;
        padding: 0 10px 0 130px;
        text-align: left;
    }

    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-num--fc {
        display: none;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc a {
        display: table;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc a {
        display: block;
        position: relative;
        overflow: visible;
    }
}

@media (min-width: 768px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div {
        display: table-cell;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div img.thumb--fc {
        height: 100%;
    }
}

@media (min-width: 768px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div img.thumb--fc {
        max-width: 150px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div:first-child {
        overflow: hidden;
        position: absolute;
        top: 10px;
        left: -120px;
        width: 110px;
        height: 80px;
    }
}

@media (min-width: 768px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div:last-child {
        padding-left: 23px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div strong {
        margin: 10px 0 5px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-subject--fc div span {
        margin: 0 0 5px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .webzine-board-list--fc tbody tr td.board-date--fc {
        margin: 5px 0 5px;
    }
}

/* // Board Wrap */
.board-paging {
    margin: 15px 0 0;
    text-align: center;
    font-size: 0;
    line-height: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.board-paging li,
.board-paging ol {
    display: inline-block;
    vertical-align: top;
}

.board-paging li {
    overflow: hidden;
    position: relative;
    margin-left: -1px;
}

.board-paging li>a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 0;
    font-size: 0.9375rem;
    line-height: 28px;
    color: #414141;
}

.board-paging li.on,
.board-paging li:hover {
    z-index: 111;
}

.board-paging li.on>a,
.board-paging li:hover>a {
    background-color: #0068b7;
    border: 1px solid #0068b7;
    color: #fff;
}

.board-paging .paging-btn-next,
.board-paging .paging-btn-last,
.board-paging .paging-btn-first,
.board-paging .paging-btn-prev {
    display: block;
    width: 30px;
    height: 30px;
    border: none;
    margin-left: -1px;
}

.board-paging .paging-btn-last,
.board-paging .paging-btn-next {
    border-left: none;
}

.board-paging .paging-btn-prev,
.board-paging .paging-btn-first {
    border-right: none;
}

.board-paging .paging-btn-last {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.board-paging .paging-btn-first {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.board-paging .paging-btn-next {
    background: url("../images/paging-next-off.png") no-repeat center center;
}

.board-paging .paging-btn-last {
    background: url("../images/paging-last-off.png") no-repeat center center;
}

.board-paging .paging-btn-first {
    background: url("../images/paging-first-off.png") no-repeat center center;
}

.board-paging .paging-btn-prev {
    background: url("../images/paging-prev-off.png") no-repeat center center;
}

.board-search-wrap--fc {
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
    background: none;
    text-align: right;
    font-size: 0;
    line-height: 0;
}

.board-search-wrap--fc>form {
    float: right;
}

.board-search-wrap--fc>.board_list_total--fc {
    float: left;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 38px;
}

.board-search-wrap--fc legend {
    display: none;
}

.board-search-wrap--fc p {
    display: inline-block;
    vertical-align: middle;
}

.board-search-wrap--fc p:nth-of-type(1) {
    width: 100px;
}

.board-search-wrap--fc p:nth-of-type(2) {
    width: 190px;
}

.board-search-wrap--fc p:nth-of-type(3) {
    width: 70px;
}

.board-search-wrap--fc select {
    min-width: auto;
    width: 100%;
    height: 38px;
}

.board-search-wrap--fc input[type="text"] {
    width: 100%;
    height: 38px;
}

.board-search-wrap--fc .search-btn-wrap--fc a {
    padding: 0 12px;
    width: 100%;
    background: #0068b7;
    font-weight: bold;
    font-size: 14px;
    line-height: 38px;
    color: #fff;
    text-align: center;
}

.board-search-wrap--fc .search-btn-wrap--fc a:hover {
    color: #fff;
}

@media (min-width: 768px) {
    .board-search-wrap--fc p {
        margin: 0 3px;
    }
}

@media (min-width: 768px) {
    .board-search-wrap--fc .search-btn-wrap--fc a {
        margin-left: 5px;
    }
}

.basic-board-list--fc,
.webzine-board-list--fc {
    table-layout: fixed;
    width: 100%;
    border-top: 2px solid #0068b7;
    border-bottom: 1px solid #e9e9e9;
}

@media (min-width: 768px) {

    .basic-board-list--fc,
    .webzine-board-list--fc {
        margin-bottom: 50px;
    }
}

.basic-board-list--fc legend,
.webzine-board-list--fc legend {
    display: none;
}

.basic-board-list--fc thead th,
.webzine-board-list--fc thead th {
    position: relative;
    padding: 16px 0 13px;
    background-color: #f4f5f7;
    font-weight: bold;
    font-size: 1.07rem;
    font-weight: 400;
    line-height: 20px;
    color: #333;
    text-align: center;
    vertical-align: middle;
}

.basic-board-list--fc tbody tr,
.webzine-board-list--fc tbody tr {
    border-top: 1px solid #e9e9e9;
}

.basic-board-list--fc tbody tr:first-child,
.webzine-board-list--fc tbody tr:first-child {
    border-top: 1px solid #c7c7c7;
}

.basic-board-list--fc tbody tr.no-data--fc,
.webzine-board-list--fc tbody tr.no-data--fc {
    padding: 15px 0;
}

.basic-board-list--fc td,
.webzine-board-list--fc td {
    font-size: 1.07rem;
    line-height: 17px;
    color: #444;
    text-align: center;
    vertical-align: middle;
    background-color: #fff;
}

.basic-board-list--fc thead th:before,
.webzine-board-list--fc thead th:before {
    content: "";
    position: absolute;
    width: 1px;
    background-color: #b1b1b1;
    top: 18px;
    bottom: 18px;
    left: 0;
}

.basic-board-list--fc thead th:first-child:before,
.webzine-board-list--fc thead th:first-child:before {
    display: none;
}

.board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-list--fc,
.board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-del--fc,
.board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-modify--fc,
.board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-reply--fc {
    font-weight: 400;
}

.board-search-wrap--fc .search-btn-wrap--fc a {
    font-weight: 400;
}

.search-input-wrap--fc {
    position: relative;
}

.search-input-wrap--fc input[type="text"] {
    padding-right: 38px;
}

.search-input-wrap--fc a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 38px;
    display: block;
    background: url(../images/ico_search_btn.png) no-repeat center;
    font-size: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
}

@media (min-width: 768px) {

    .basic-board-list--fc td,
    .webzine-board-list--fc td {
        padding: 17px 0 15px;
    }
}

@media (max-width: 767px) {

    .basic-board-list--fc,
    .webzine-board-list--fc {
        table-layout: auto;
    }
}

@media (max-width: 767px) {

    .basic-board-list--fc thead th,
    .webzine-board-list--fc thead th {
        display: none;
    }
}

@media (max-width: 767px) {

    .basic-board-list--fc tbody tr,
    .webzine-board-list--fc tbody tr {
        display: inline-block;
        padding: 10px 20px 15px;
        width: 100%;
        border-top: 1px solid #e1e1e1;
    }

    .basic-board-list--fc tbody tr:first-child,
    .webzine-board-list--fc tbody tr:first-child {
        border-color: #0068b7;
    }
}

@media (max-width: 767px) {

    .basic-board-list--fc tbody td,
    .webzine-board-list--fc tbody td {
        float: left;
        margin: 10px 0 0;
        padding-right: 15px;
        width: auto;
        font-size: 14px;
        line-height: 18px;
        color: #666;
        background-color: #fff;
        vertical-align: middle;
    }

    .basic-board-list--fc tbody td.board-subject--fc,
    .webzine-board-list--fc tbody td.board-subject--fc {
        margin: 0;
        width: 100%;
    }

    .basic-board-list--fc tbody td.board-name--fc,
    .webzine-board-list--fc tbody td.board-name--fc {
        font-size: 12px;
    }

    .basic-board-list--fc tbody td.board-date--fc,
    .webzine-board-list--fc tbody td.board-date--fc {
        clear: both;
        font-size: 12px;
    }

    .basic-board-list--fc tbody td.board-date,
    .webzine-board-list--fc tbody td.board-date {
        font-size: 12px;
    }

    .basic-board-list--fc tbody td.board-hit--fc,
    .basic-board-list--fc tbody td.board-num--fc,
    .basic-board-list--fc tbody td.board-category--fc,
    .webzine-board-list--fc tbody td.board-hit--fc,
    .webzine-board-list--fc tbody td.board-num--fc,
    .webzine-board-list--fc tbody td.board-category--fc {
        display: none;
    }
}

.basic-board-list--fc tbody td.board-subject--fc,
.webzine-board-list--fc tbody td.board-subject--fc {
    text-align: left;
}

.basic-board-list--fc tbody td.board-subject--fc a,
.webzine-board-list--fc tbody td.board-subject--fc a {
    display: inline-block;
    font-size: 1.07rem;
    line-height: 17px;
    color: #444;
    vertical-align: middle;
    overflow: hidden;
    max-width: 90%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.basic-board-list--fc tbody td.board-subject--fc a img.list-file2--fc,
.webzine-board-list--fc tbody td.board-subject--fc a img.list-file2--fc {
    display: none;
}

.basic-board-list--fc tbody td.board-subject--fc a:hover,
.webzine-board-list--fc tbody td.board-subject--fc a:hover {
    color: #000;
}

.basic-board-list--fc tbody td.board-subject--fc img,
.webzine-board-list--fc tbody td.board-subject--fc img {
    display: inline;
    padding-left: 5px;
    vertical-align: middle;
}

.board-wrap--fc .board-hit--fc a {
    font-size: inherit;
}

@media (min-width: 768px) {

    .basic-board-list--fc tbody td.board-subject--fc a,
    .webzine-board-list--fc tbody td.board-subject--fc a {
        padding-left: 10px;
    }
}

@media (max-width: 767px) {

    .basic-board-list--fc tbody td.board-subject--fc a,
    .webzine-board-list--fc tbody td.board-subject--fc a {
        display: inline;
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
    }
}

.basic-board-row--fc {
    width: 100%;
    border-top: 2px solid #0068b7;
    border-bottom: 1px solid #e9e9e9;
}

.basic-board-row--fc tr {
    border-bottom: 1px solid #e1e1e1;
}

.basic-board-row--fc tr.board-row-subject--fc input {
    width: auto;
}

.basic-board-row--fc tr.board-row-subject--fc label {
    margin: 0;
    vertical-align: middle;
}

.basic-board-row--fc tr.board-row-subject--fc input[type="radio"],
.basic-board-row--fc tr.board-row-subject--fc input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

.basic-board-row--fc tr.board-row-subject--fc input[type="text"] {
    width: 100%;
}

.basic-board-row--fc tr.board-row-select--fc select,
.basic-board-row--fc tr.board-row-name--fc input {
    min-width: 200px;
}

.basic-board-row--fc tr.board-row-tel select {
    max-width: 150px;
    min-width: auto;
    width: 25%;
}

.basic-board-row--fc tr.board-row-tel input {
    margin-left: 7px;
    max-width: 150px;
    width: 25%;
}

.basic-board-row--fc tr.board-row-tel span {
    margin-left: 7px;
}

.basic-board-row--fc tr.board-row-email input {
    max-width: 200px;
    width: 25%;
}

.basic-board-row--fc tr.board-row-email input:last-of-type {
    margin-left: 7px;
}

.basic-board-row--fc tr.board-row-email select {
    margin-left: 7px;
    max-width: 200px;
    width: 25%;
}

.basic-board-row--fc tr.board-row-email span {
    margin-left: 7px;
}

.basic-board-row--fc tr.board-row-check p,
.basic-board-row--fc tr.board-row-radio p {
    display: inline-block;
    margin-right: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.basic-board-row--fc tr.board-write-captcha--fc.btn-reload--fc,
.basic-board-row--fc tr.board-write-captcha--fc img {
    display: inline-block;
    vertical-align: middle;
}

.basic-board-row--fc tr.board-write-captcha--fc.btn-reload--fc:after {
    content: "\f021";
    display: inline-block;
    margin-left: 3px;
    font: normal normal 24px/45px 'FontAwesome';
    color: #111;
    vertical-align: middle;
    cursor: pointer;
}

.basic-board-row--fc tr.board-write-captcha--fc input[type="text"] {
    margin: 10px 0 0;
}

.basic-board-row--fc tr.board-write-captcha--fc .p_notice--fc {
    display: inline-block;
    margin-top: 7px;
    width: 100%;
}

.basic-board-row--fc tr.board-write-file-list--fc button {
    display: inline-block;
    margin-bottom: 5px;
    padding: 0 15px;
    border: 1px solid #dedede;
    background: #f3f3f3;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
}

@media (max-width: 767px) {
    .basic-board-row--fc tr.board-write-file-list--fc button {
        font-size: 11px;
    }
}

.basic-board-row--fc tr.board-write-file-list--fc #list_file input[type="file"] {
    display: inline-block;
    margin: 3px 0;
    width: 100%;
}

.basic-board-row--fc tr:last-child {
    border-bottom: 0 none;
}

.basic-board-row--fc tr th {
    padding: 16px 10px 16px 20px;
    color: #333;
    background-color: #f4f5f7;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-align: left;
    vertical-align: middle;
}

.basic-board-row--fc tr td {
    padding: 7px 13px 8px;
    font-size: 13px;
    line-height: 18px;
    color: #444;
    background-color: #fff;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .basic-board-row--fc tr th {
        display: block;
        width: 100%;
        background: none;
        padding: 16px 0 0;
        font-size: 12px;
    }

    .basic-board-row--fc tr td {
        display: block;
        width: 100%;
        padding: 10px 0 16px;
    }
}

.board-write-btn-wrap--fc {
    margin: 55px 0 30px;
    text-align: center;
}

.board-write-btn-wrap--fc a {
    display: inline-block;
    margin: 0 5px;
    width: 150px;
    height: 45px;
    font-weight: bold;
    font-size: 14px;
    line-height: 45px;
}

.board-write-btn-wrap--fc .btn-confirm--fc {
    background: #464646;
    color: #fff !important;
}

.board-write-btn-wrap--fc .btn-cancel--fc {
    background: #d3d3d3;
    color: #464646;
}

@media (max-width: 767px) {
    .board-write-btn-wrap--fc a {
        width: 45%;
    }
}

/* fqp */
.faq-wrap--fc {
    border: 1px solid #d7d7d7;
    text-align: left;
    margin-bottom: 0;
    margin-bottom: 2rem;
}

.faq-wrap--fc .faq-list--fc {
    border-bottom: 1px solid #d7d7d7;
}

.faq-wrap--fc .faq-list--fc:last-of-type {
    border-bottom: 0;
}

.faq-wrap--fc .f-wrap--fc a {
    position: relative;
    padding: 15px 40px 15px 70px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    background-color: #f7f7f7;
    color: #333;
}

.faq-wrap--fc .f-wrap--fc a:before {
    content: 'Q';
    display: inline-block;
    position: absolute;
    top: 16px;
    left: 30px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    width: auto;
    height: auto;
    background: none;
    color: #818181;
    font-size: 1.3rem;
}

.faq-wrap--fc .f-wrap--fc a:after {
    content: '\f106';
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'FontAwesome';
    font-size: 20px;
    line-height: 1;
    color: #999;
}

@media (min-width: 1200px) {
    .faq-wrap--fc .f-wrap--fc a:hover {
        background-color: #efefef;
    }
}

@media (max-width: 767px) {
    .faq-wrap--fc .f-wrap--fc a {
        padding: 15px 40px;
    }

    .faq-wrap--fc .f-wrap--fc a:before {
        top: 15px;
        left: 10px;
    }
}

.faq-wrap--fc .f-wrap--fc.on a:before {
    content: 'Q.';
    color: #0068b7;
}

.faq-wrap--fc .f-wrap--fc.on a:after {
    content: "\f107";
    color: #111;
}

.faq-wrap--fc .q-wrap--fc {
    display: none;
}

.faq-wrap--fc .q-wrap--fc p {
    position: relative;
    padding: 20px 40px 20px 70px;
    border-top: 1px solid #d7d7d7;
    background: #fff;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #444;
}

.faq-wrap--fc .q-wrap--fc p:before {
    content: 'A.';
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 30px;
    margin-right: 20px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    width: auto;
    height: auto;
    background: none;
    color: #0068b7;
    font-size: 1.3rem;
}

@media (max-width: 767px) {
    .faq-wrap--fc .q-wrap--fc p {
        padding: 15px 40px;
    }

    .faq-wrap--fc .q-wrap--fc p:before {
        top: 15px;
        left: 10px;
    }
}

strong.date_on--fc {
    margin: 0 0 0 10px;
    display: inline-block;
    width: 55px;
    height: 26px;
    box-sizing: border-box;
    font-weight: 300;
    font-size: 12px;
    line-height: 26px;
    color: #fff;
    text-align: center;
    background: #091520;
}

strong.date_off--fc {
    margin: 0 0 0 10px;
    display: inline-block;
    width: 55px;
    height: 26px;
    box-sizing: border-box;
    font-weight: 300;
    font-size: 12px;
    line-height: 26px;
    color: #fff;
    text-align: center;
    background: #c4c7c9;
}

/* Mobile Board Style */
@media (max-width: 575px) {

    .board-search-wrap--fc .search-btn-wrap--fc a,
    .board-wrap--fc .btn-write-wrap--fc .btn-write--fc {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {

    .board-wrap--fc input,
    .board-wrap--fc select {
        display: inline-block;
    }

    .post-navi--fc li a {
        max-width: 60%;
    }

    .board-search-wrap--fc {
        padding: 0;
        width: 100%;
        text-align: center;
        font-size: 0;
        line-height: 0;
        margin-bottom: 0;
    }

    .board-search-wrap--fc p:first-of-type {
        margin-right: 3%;
        width: 30%;
    }

    .board-search-wrap--fc p:nth-of-type(2) {
        margin-right: 0;
        width: 67%;
    }

    .board-search-wrap--fc p:nth-of-type(3) {
        margin-top: 3%;
        width: 100%;
    }

    .board-search-wrap--fc>form {
        float: none;
    }

    .board-search-wrap--fc>.board_list_total--fc {
        font-size: 12px;
        float: none;
        text-align: left;
        line-height: 1;
        margin: 20px 0 10px;
    }

    .basic-board-list--fc tbody td,
    .webzine-board-list--fc tbody td {
        padding-right: 0;
    }

    .basic-board-list--fc tbody td.board-subject--fc a,
    .webzine-board-list--fc tbody td.board-subject--fc a {
        white-space: normal;
        float: none !important;
    }

    .board-paging li>a {
        font-size: 13px;
    }

    .board-wrap--fc select,
    .board-search-wrap--fc .search-btn-wrap--fc a {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .post-navi--fc li a {
        max-width: 65%;
    }
}

@media (min-width: 1200px) {

    .basic-board-list--fc tbody td.board-subject--fc a:hover,
    .webzine-board-list--fc tbody td.board-subject--fc a:hover,
    .board-wrap--fc .board-view--fc .post-navi--fc .next-post--fc a:hover {
        text-decoration: underline;
    }

    .basic-board-list--fc tbody td.board-subject--fc a:hover img.list-file--fc,
    .webzine-board-list--fc tbody td.board-subject--fc a:hover img.list-file--fc {
        display: none;
    }

    .basic-board-list--fc tbody td.board-subject--fc a:hover img.list-file2--fc,
    .webzine-board-list--fc tbody td.board-subject--fc a:hover img.list-file2--fc {
        display: inline;
    }

    .board-wrap--fc .btn-write-wrap--fc .btn-write--fc:hover,
    .board-search-wrap--fc .search-btn-wrap--fc a:hover {
        opacity: .8;
    }

    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-list--fc:hover,
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-del--fc:hover,
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-modify--fc:hover,
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-reply--fc:hover {
        opacity: .8;
    }

    .board-write-btn-wrap--fc .btn-confirm--fc:hover,
    .board-write-btn-wrap--fc .btn-cancel--fc:hover {
        opacity: .8;
    }
}

/* ==========================================================================
  gallery
   ========================================================================== */
.board-wrap--fc .gallery-list--fc {
    display: flex;
    font-size: 0;
    flex-wrap: wrap;
}

.board-wrap--fc .gallery-list--fc figure {
    width: 25%;
    padding: 0 7px;
    vertical-align: top;
    margin-top: 40px;
}

.board-wrap--fc .gallery-list--fc figure a {
    display: block;
    border-bottom: 1px solid #dadada;
    height: 100%;
}

.board-wrap--fc .gallery-list--fc figure a .thumb-wrap--fc {
    border: 1px solid #dadada;
}

.board-wrap--fc .gallery-list--fc figure a .thumb-wrap--fc iframe {
    width: 100%;
    /* min-height: 238px; */
}

.board-wrap--fc .gallery-list--fc figure a figcaption {
    padding: 20px 10px;
    background: none;
}

@media (min-width: 1200px) {
    .board-wrap--fc .gallery-list--fc figure a:hover .gallery-title--fc {
        text-decoration: underline;
        color: #000;
    }
}

.gallery-title--fc {
    font-size: 17px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-date--fc {
    font-size: 12px;
    color: #444;
    text-align: right;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .board-wrap--fc .gallery-list--fc figure {
        width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .bg_sub_exhibition {
        padding-bottom: 50px;
    }

    .board-wrap--fc .gallery-list--fc figure {
        width: 50%;
        margin-top: 30px;
    }

    .board-wrap--fc .gallery-list--fc figure a figcaption {
        padding: 10px;
    }

    .gallery-title--fc {
        font-size: 14px;
    }

    .gallery-date--fc {
        margin-top: 5px;
    }
}

@media (max-width: 575px) {
    .board-wrap--fc .gallery-list--fc {
        display: block;
        margin: 0;
    }

    .board-wrap--fc .gallery-list--fc figure {
        width: 100%;
        padding: 0;
    }
}

/* form */
.form_table {
    font-size: 0;
}

.form_table__col {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    padding-right: 33px;
}

.form_table__col+.form_table__col {
    padding-right: 0;
    padding-left: 33px;
}

.form_table__col table {
    width: 100%;
}

.form_table__col table td input {
    font-size: 16px;
    font-weight: 350;
    width: 100%;
    height: auto;
    padding: 10px 0;
    border-width: 0 0 1px 0;
    margin-top: 20px;
    margin-right: 0;
    outline: none;
}

.form_table__col table td textarea {
    width: 100%;
    margin-top: 63px;
    height: 262px;
    padding: 20px;
    resize: none;
    overflow-y: auto;
    outline: none;
    line-height: 1.7;
    font-size: 16px;
}

.captcha_box--fc {
    font-size: 0;
    margin-top: 20px;
}

.captcha__num--fc {
    display: inline-block;
    vertical-align: middle;
    width: 170px;
}

.captcha_box--fc a {
    display: inline-block;
    font-size: 0;
    vertical-align: middle;
    width: 45px;
    height: 45px;
    padding: 12px;
    border: 1px solid #8993a0;
    margin: 0 20px;
}

.captcha_box--fc input {
    display: inline-block;
    width: calc(100% - 255px) !important;
    margin-top: 0 !important;
    vertical-align: middle;
}

.sub_privacy_wrap {
    margin-top: 70px;
}

.sub_privacy_wrap>p {
    font-size: 16px;
    font-weight: 350;
    color: #222;
}

.privacy_box--fc {
    border: 1px solid #d9d9d9;
    padding: 40px 25px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 300;
    color: #6c6b6b;
    line-height: 1.7;
    max-height: 244px;
    overflow-y: auto;
}

.privacy_box--fc pre {
    white-space: pre-wrap;
}

.sub_privacy_wrap>p.privacy_txt--fc {
    text-align: center;
    margin-top: 50px;
}

.board-write-btn-wrap--fc .btn-cancel--fc {
    background: #9a9a9a;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    width: auto;
    height: auto;
    line-height: 1;
    padding: 17px 70px;
}

.board-write-btn-wrap--fc .btn-confirm--fc {
    color: #fff !important;
    background-color: #0068b7;
    font-size: 1rem;
    font-weight: 500;
    width: auto;
    height: auto;
    line-height: 1;
    padding: 17px 70px;
}

.board-write-btn-wrap--fc .btn-confirm--fc.btn-confirm--qna {
    background-color: #464646;
    font-size: 14px;
    padding: 15px 45px;
    margin-top: -20px;
}

@media (min-width: 1200px) {
    .board-write-btn-wrap--fc .btn-confirm--fc:hover {
        background-color: #0068b7;
    }

    .board-write-btn-wrap--fc .btn-confirm--fc.btn-confirm--qna:hover {
        background-color: #525252;
    }
}

@media (max-width: 991px) {
    .form_table__col {
        padding-right: 15px;
    }

    .form_table__col+.form_table__col {
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .form_table__col {
        display: block;
        width: 100%;
        padding-right: 0;
        padding-left: 0 !important;
    }

    .form_table__col table td input {
        font-size: 14px;
        margin-top: 10px;
    }

    .captcha_box--fc input {
        display: block;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .form_table__col table td textarea {
        margin-top: 20px;
        height: 160px;
        font-size: 14px;
    }

    .sub_privacy_wrap {
        margin-top: 40px;
    }

    .sub_privacy_wrap>p {
        font-size: 14px;
    }

    .privacy_box--fc {
        max-height: 160px;
        padding: 15px 20px;
        font-size: 14px;
    }

    .sub_privacy_wrap>p.privacy_txt--fc {
        margin-top: 25px;
    }

    .board-write-btn-wrap--fc {
        font-size: 0;
    }

    .board-write-btn-wrap--fc .btn-cancel--fc {
        width: calc(50% - 0.6250rem);
        padding: 0 0.625rem;
        height: 3.75rem;
        line-height: 3.75rem;
        margin: 0.3125rem;
    }

    .board-write-btn-wrap--fc .btn-confirm--fc {
        width: calc(50% - 0.6250rem);
        padding: 0 0.625rem;
        height: 3.75rem;
        line-height: 3.75rem;
        margin: 0.3125rem;
    }

    .board-write-btn-wrap--fc .btn-confirm--fc.btn-confirm--qna {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc {
        font-size: 0;
    }

    .board-wrap--fc .board-view--fc .btn-view-wrap--fc p {
        display: flex;
        width: auto;
        vertical-align: top;
    }

    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-del--fc,
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-modify--fc,
    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-reply--fc {
        width: 100%;
        flex: 1;
        margin: 0 3.5px;
    }

    .board-wrap--fc .board-view--fc .btn-view-wrap--fc .btn-list--fc {
        display: block;
        width: auto;
        margin: 0 3.5px;
        min-width: auto;
        vertical-align: top;
    }
}

/* ==========================================================================
  회원가입 & 로그인
   ========================================================================== */
@media (min-width: 1200px) {
    .member-container--fc {
        padding-top: 20px;
    }
}

.member-wrap--fc {
    padding: 0;
    width: 100%;
    font-size: 0.75rem;
    color: #414141;
    margin-bottom: 6.25rem;
}

.member-wrap--fc .member-title--fc {
    padding-bottom: 1.25rem;
    font-weight: normal;
    font-size: 1.875rem;
    line-height: 1;
    color: #303030;
    text-align: center;
}

.member-wrap--fc a {
    display: block;
    font-size: 0.75rem;
    color: #606060;
    text-decoration: none;
}

.member-wrap--fc a:hover {
    color: black;
}

.member-wrap--fc input,
.member-wrap--fc select,
.member-wrap--fc textarea {
    font-size: 0.8125rem;
    line-height: 1;
    vertical-align: middle;
}

.member-wrap--fc input,
.member-wrap--fc select {
    display: inline-block;
}

.member-wrap--fc input[type="text"],
.member-wrap--fc input[type="password"] {
    padding: 0 0.4375rem;
    height: 2.1875rem;
}

.member-wrap--fc select {
    padding: 0 0.4375rem;
    height: 2.1875rem;
}

.member-wrap--fc select {
    padding: 0 0 0 10px;
    min-width: 150px;
    background: #fff url("../images/select-arrow.gif") no-repeat right center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-appearance: none;
    cursor: pointer;
}

.member-wrap--fc select::-ms-expand {
    display: none;
}

.member-wrap--fc textarea {
    padding: 10px;
    height: 150px;
    width: 100%;
    color: #666;
}

.member-wrap--fc input[type="file"] {
    border: 0 none;
}

.member-wrap--fc .login-form-wrap--fc {
    position: relative;
    margin: 0 auto;
    padding-top: 9.375rem;
    width: 31.25rem;
    border-top: 1px solid #e1e1e1;
    text-align: center;
}

.member-wrap--fc .login-form-wrap--fc:before {
    display: inline-block;
    z-index: 66;
    position: absolute;
    top: 30px;
    left: 50%;
    width: 64px;
    height: 89px;
    margin-left: -32px;
    background: url("../images/icon_lock.png") no-repeat 0 0;
    background-size: 100% auto;
    content: '';
}

@media (max-width: 767px) {
    .member-wrap--fc .login-form-wrap--fc:before {
        top: 20px;
    }
}

.member-wrap--fc .login-form-wrap--fc .login-input--fc {
    width: 100%;
}

.member-wrap--fc .login-form-wrap--fc .login-input--fc li {
    margin: 0 0 15px;
}

.member-wrap--fc .login-form-wrap--fc input[type="text"],
.member-wrap--fc .login-form-wrap--fc input[type="password"] {
    width: 100%;
    height: 50px;
}

.member-wrap--fc .login-form-wrap--fc .save-id-wrap--fc {
    float: left;
    width: 50%;
    text-align: left;
}

.member-wrap--fc .login-form-wrap--fc .find-btn-wrap--fc {
    float: right;
    width: 50%;
    text-align: right;
}

.member-wrap--fc .login-form-wrap--fc .find-btn-wrap--fc a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1rem;
}

.member-wrap--fc .login-form-wrap--fc .login-btn-wrap--fc {
    clear: both;
    padding: 30px 0 0;
    width: 100%;
    text-align: center;
}

.member-wrap--fc .login-form-wrap--fc .login-btn-wrap--fc a {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 15px;
    line-height: 50px;
}

.member-wrap--fc .login-form-wrap--fc .login-btn-wrap--fc a.btn-login--fc {
    background: #464646;
    color: #fff;
}

.member-wrap--fc .login-form-wrap--fc .login-btn-wrap--fc a.btn-join--fc {
    background: #d3d3d3;
    color: #464646;
}

.member-wrap--fc .join-form-wrap--fc {
    width: 100%;
}

.member-wrap--fc .join-form-wrap--fc legend {
    padding: 30px 0 10px;
    font-weight: bold;
    font-size: 1rem;
    line-height: 20px;
    color: #303030;
}

.member-wrap--fc .join-form-wrap--fc legend span {
    display: inline-block;
    margin: 7px 0 0;
    width: 100%;
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    color: #666;
}

.member-wrap--fc .join-form-wrap--fc .box-wrap--fc {
    overflow-x: hidden;
    margin-bottom: 15px;
    padding: 15px 20px;
    width: 100%;
    height: 230px;
    border: 1px solid #bebebe;
    border-top-color: #303030;
    white-space: pre-line;
    font-size: 14px;
    line-height: 18px;
    color: #666;
    text-align: left;
}

.member-wrap--fc .join-form-wrap--fc .box-wrap--fc+.join-agree--fc label strong {
    color: #f84a4a;
}

.member-wrap--fc .form-table--fc {
    width: 100%;
    table-layout: fixed;
    border-top: 2px solid #0068b7;
    border-bottom: 1px solid #e9e9e9;
}

.member-wrap--fc .form-table--fc tr {
    border-bottom: 1px solid #e9e9e9;
}

.member-wrap--fc .form-table--fc tr:last-child {
    border-bottom: 0 none;
}

.member-wrap--fc .form-table--fc tr th {
    padding: 16px 10px 16px 20px;
    background: #f4f5f7;
    font-weight: bold;
    font-size: 13px;
    line-height: 18px;
    color: #333;
    text-align: left;
    vertical-align: middle;
}

.member-wrap--fc .form-table--fc tr th.required:after {
    display: inline-block;
    width: 14px;
    height: 11px;
    margin-top: -3px;
    margin-left: 7px;
    background: url("../images/required.png") no-repeat 0 0;
    vertical-align: middle;
    content: '';
}

.member-wrap--fc .form-table--fc tr td {
    padding: 7px 13px 8px;
    font-size: 13px;
    line-height: 18px;
    color: #444;
    background-color: #fff;
    vertical-align: middle;
}

.member-wrap--fc .form-table--fc tr td .info-text--fc {
    display: inline-block;
    margin-left: 10px;
    padding: 5px 0;
    vertical-align: middle;
}

.member-wrap--fc .form-table--fc tr td input,
.member-wrap--fc .form-table--fc tr td select,
.member-wrap--fc .form-table--fc tr td span,
.member-wrap--fc .form-table--fc tr td label {
    display: inline-block;
    margin-right: -5px;
    font-size: inherit;
}

.member-wrap--fc .form-table--fc tr td input[type="checkbox"]+label {
    line-height: 23px;
}

@media (max-width: 767px) {
    .member-wrap--fc .form-table--fc tr td input[type="checkbox"]+label {
        line-height: 18px;
    }
}

.member-wrap--fc .form-table--fc tr td .check-btn--fc {
    display: inline-block;
    margin-right: -5px;
    margin-right: 0;
    border: 1px solid #dedede;
    background: #f3f3f3;
    font-weight: bold;
    font-size: 14px;
    line-height: 33px;
    vertical-align: middle;
}

.member-wrap--fc .form-table--fc tr.join-form-id--fc input {
    min-width: 250px;
}

.member-wrap--fc .form-table--fc tr.join-form-password--fc input {
    min-width: 320px;
}

.member-wrap--fc .form-table--fc tr.join-form-password--fc input::-webkit-input-placeholder,
.member-wrap--fc .form-table--fc tr.join-form-password--fc input:-moz-placeholder,
.member-wrap--fc .form-table--fc tr.join-form-password--fc input::-moz-placeholder,
.member-wrap--fc .form-table--fc tr.join-form-password--fc input:-ms-input-placeholder {
    color: #f84a4a;
}

.member-wrap--fc .form-table--fc tr.join-form-tel--fc input {
    max-width: 70px;
    margin-right: 5px;
    margin-left: 0;
    padding: 0 0.4375rem;
    height: 35px;
    box-sizing: border-box;
    font-size: 13px;
    color: #666;
    vertical-align: middle;
    margin-top: 0 !important;
}

.member-wrap--fc .form-table--fc tr.join-form-tel--fc input~input {
    margin-left: 5px;
}

.member-wrap--fc .form-table--fc tr.join-form-email--fc input {
    min-width: 250px;
}

.member-wrap--fc .form-table--fc tr.join-form-email--fc span {
    display: inline-block;
    margin-top: 7px;
    width: 100%;
}

.member-wrap--fc .form-table--fc tr.join-form-address--fc input.address--fc {
    margin-top: 7px;
    width: 100%;
}

.member-wrap--fc .form-table--fc tr.join-form-radio--fc p,
.member-wrap--fc .form-table--fc tr.join-form-check--fc p {
    display: inline-block;
    margin-right: 30px;
}

.member-wrap--fc .form-table--fc tr.join-form-birth select {
    width: 23%;
    min-width: auto;
}

.member-wrap--fc .form-table--fc tr.join-form-birth input {
    margin-left: 10px;
    width: 23%;
    max-width: 150px;
}

.member-wrap--fc .form-table--fc tr.join-form-birth input:first-of-type {
    margin-left: 0;
}

.member-wrap--fc .join-result-wrap--fc .result-title--fc {
    border-top: 1px solid #e1e1e1;
    padding: 4.375rem 0 1.875rem;
    width: 100%;
    font-weight: 100;
    font-size: 30px;
    line-height: 36px;
    color: #303030;
    text-align: center;
}

.member-wrap--fc .join-result-wrap--fc .result-text--fc {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #666;
    text-align: center;
}

.member-wrap--fc .join-result-wrap--fc .result-text--fc span {
    font-weight: bold;
    color: #303030;
}

.member-wrap--fc .join-result-wrap--fc .warning-message--fc {
    margin: 50px 0 15px;
    width: 100%;
    color: #f84a4a;
    text-align: center;
}

.member-wrap--fc .join-result-wrap--fc .form-table--fc {
    margin: 0 auto;
    width: 65%;
    margin-bottom: 50px;
}

.member-wrap--fc .join-btn-wrap--fc {
    max-width: 440px;
    margin-top: 2.8125rem;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.member-wrap--fc .join-btn-wrap--fc ul {
    font-size: 0;
}

.member-wrap--fc .join-btn-wrap--fc ul li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding-right: 10px;
}

.member-wrap--fc .join-btn-wrap--fc ul li a {
    display: block;
    font-size: 1.025rem;
    font-weight: 500;
    color: #444;
    border: 1px solid #d3d3d3;
    background-color: #fff;
    padding: 1rem 0.5rem;
}

.member-wrap--fc .join-btn-wrap--fc ul li:last-child {
    padding-right: 0;
    padding-left: 10px;
}

.member-wrap--fc .join-btn-wrap--fc ul li:last-child a {
    background-color: #0068b7;
    border-color: #0068b7;
    color: #fff;
}

.member-wrap--fc .login-btn--sns--fc {
    margin-top: 2.8125rem;
}

.member-wrap--fc .login-btn--sns--fc ul {
    margin-top: 2.8125rem;
    font-size: 0;
}

.member-wrap--fc .login-btn--sns--fc ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0 0.4375rem;
}

.member-wrap--fc .login-btn--sns--fc ul li a {
    display: block;
    width: 3.75rem;
    height: 3.75rem;
    border: 1px solid #d3d3d3;
    border-radius: 50%;
    font-size: 0;
    color: transparent;
}

.member-wrap--fc .login-btn--sns--fc ul li a.for_kakao {
    background: #fff url("../images/ico_login_kakao.png") no-repeat center/1.9375rem;
}

.member-wrap--fc .login-btn--sns--fc ul li a.for_naver {
    background: #fff url("../images/ico_login_naver.png") no-repeat center/1.5rem;
}

.member-wrap--fc .login-btn--sns--fc ul li a.for_facebook {
    background: #fff url("../images/ico_login_facebook.png") no-repeat center/0.9375rem;
}

.member-wrap--fc .login-btn--sns--fc ul li a.for_google {
    background: #fff url("../images/ico_login_google.png") no-repeat center/1.9375rem;
}

.member-wrap--fc .login-btn--sns--fc ul li a.for_twitter {
    background: #fff url("../images/ico_login_twitter.png") no-repeat center/1.5rem;
}

.member-wrap--fc .hr_txt {
    overflow: hidden;
}

.member-wrap--fc .hr_txt span {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

.member-wrap--fc .hr_txt span:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    width: 50%;
    height: 1px;
    border-top: 1px dashed #d7d7d7;
    margin-right: 1.875rem;
}

.member-wrap--fc .hr_txt span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 50%;
    height: 1px;
    border-top: 1px dashed #d7d7d7;
    margin-left: 1.875rem;
}

.member-wrap--fc .member-wrap .join-form-wrap .box-wrap {
    border-top-color: #bebebe;
}

.member-wrap--fc .member-wrap p label {
    height: auto;
    line-height: 1.5;
    font-size: 1rem;
}

.member-wrap--fc .member-wrap .join-result-wrap .result-title {
    border-top: 0;
}

@media (min-width: 1201px) {
    .member-wrap--fc .join-btn-wrap--fc ul li a:hover {
        background-color: #f7f7f7;
        border-color: #d3d3d3;
        color: #444;
    }

    .member-wrap--fc .join-btn-wrap--fc ul li:last-child a:hover {
        background-color: #0068b7;
        border-color: #0068b7;
        color: #fff;
    }
}

@media (min-width: 768px) {
    .member-wrap--fc .form-table--fc tr td .check-btn--fc {
        margin-left: 10px;
        padding: 0 15px;
    }

    .member-wrap--fc .form-table--fc tr.join-form-check--fc p {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .member-wrap--fc .form-table--fc tr.join-form-birth select {
        max-width: 150px;
    }

    .member-wrap--fc .form-table--fc tr.join-form-birth span {
        margin-left: 7px;
        margin-right: 7px !important;
    }
}

@media (max-width: 767px) {
    .member-wrap--fc .member-title--fc {
        font-size: 1.25rem;
    }

    .member-wrap--fc textarea {
        font-size: 13px;
        line-height: 18px;
    }

    .member-wrap--fc .login-form-wrap--fc {
        width: 100%;
    }

    .member-wrap--fc .join-form-wrap--fc legend {
        padding: 20px 0 10px;
        font-size: 14px;
    }

    .member-wrap--fc .join-form-wrap--fc .box-wrap--fc {
        height: 150px;
        padding: 15px;
        font-size: 12px;
        line-height: 17px;
    }

    .member-wrap--fc .form-table--fc colgroup {
        display: none;
    }

    .member-wrap--fc .form-table--fc tr th {
        display: block;
        width: 100%;
        background: none;
        padding: 16px 0 16px 15px;
        padding-bottom: 0;
    }

    .member-wrap--fc .form-table--fc tr th.required:after {
        margin-left: 3px;
        width: 10px;
        height: 8px;
    }

    .member-wrap--fc .form-table--fc tr td {
        display: block;
        width: 100%;
    }

    .member-wrap--fc .form-table--fc tr td .info-text--fc {
        margin-top: 7px;
        margin-left: 0;
        width: 100%;
        padding: 0;
    }

    .member-wrap--fc .form-table--fc tr td .check-btn--fc {
        float: right;
        width: 38%;
        font-size: 12px;
        text-align: center;
    }

    .member-wrap--fc .form-table--fc tr td input[type="text"],
    .member-wrap--fc .form-table--fc tr td input[type="password"],
    .member-wrap--fc .form-table--fc tr td input[type="tel"],
    .member-wrap--fc .form-table--fc tr td input[type="number"] {
        height: 35px;
    }

    .member-wrap--fc .form-table--fc tr.join-form-id--fc input {
        min-width: 0;
        width: 60%;
    }

    .member-wrap--fc .form-table--fc tr.join-form-password--fc input {
        min-width: 0;
        width: 100%;
    }

    .member-wrap--fc .form-table--fc tr.join-form-name--fc input+input {
        margin-top: 5px;
    }

    .member-wrap--fc .form-table--fc tr.join-form-email--fc input {
        width: 60%;
        min-width: 0;
    }

    .member-wrap--fc .form-table--fc tr.join-form-email--fc select {
        width: 100%;
        margin-top: 7px;
    }

    .member-wrap--fc .form-table--fc tr.join-form-address--fc .post--fc {
        width: 60%;
    }

    .member-wrap--fc .form-table--fc tr.join-form-radio--fc p,
    .member-wrap--fc .form-table--fc tr.join-form-check--fc p {
        margin-top: 7px;
        margin-right: 0;
        width: 100%;
    }

    .member-wrap--fc .form-table--fc tr.join-form-radio--fc p:first-child,
    .member-wrap--fc .form-table--fc tr.join-form-check--fc p:first-child {
        margin-top: 0;
    }

    .member-wrap--fc .form-table--fc tr.join-form-birth span {
        width: 10.33333333333333%;
        text-align: center;
    }

    .member-wrap--fc .join-result-wrap--fc .result-title--fc {
        padding: 3.125rem 0 0.9375rem;
        font-size: 26px;
        line-height: 30px;
    }

    .member-wrap--fc .join-result-wrap--fc .warning-message--fc {
        margin: 30px 0 15px;
    }

    .member-wrap--fc .join-result-wrap--fc .form-table--fc {
        margin: 0 0 10px;
        width: 100%;
    }

    .join-form-select--fc select,
    .join-form-name--fc input {
        width: 100%;
    }
}

/* 회원탈퇴 */
.btn-withdrawal--fc {
    display: block;
    margin-top: 1rem;
    text-align: right;
}

.member-wrap--fc .btn-withdrawal--fc a {
    display: inline-block;
    font-size: 0.875rem;
    padding: .5rem 1rem;
    background-color: #fff;
    color: #444;
    border: 1px solid #d3d3d3;
}

@media (min-width: 1200px) {
    .member-wrap--fc .btn-withdrawal--fc a:hover {
        background-color: #f7f7f7;
        border-color: #d3d3d3;
        color: #444;
    }
}

/* common */
[data-tooltip-text] {
    position: relative;
    font-size: 1rem;
}

[data-tooltip-text]:hover:before {
    content: attr(data-tooltip-text);
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: #333132;
    -webkit-box-shadow: 0 2px 3px 0 rgba(50, 50, 50, 0.4);
    -moz-box-shadow: 0 2px 3px 0 rgba(50, 50, 50, 0.4);
    box-shadow: 0 2px 3px 0 rgba(50, 50, 50, 0.4);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    width: auto;
    min-width: 50px;
    max-width: 300px;
    word-wrap: break-word;
    z-index: 10001;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 11px;
    white-space: nowrap;
    line-height: 1;
}

[data-tooltip-text]:hover:after {
    content: "";
    position: absolute;
    border-right: 5px solid transparent;
    border-bottom: 7px solid #333132;
    border-left: 5px solid transparent;
    top: 100%;
    left: 50%;
    margin-top: 5px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10001;
}

.t_c {
    text-align: center !important;
}

.t_l {
    text-align: left !important;
}

.t_r {
    text-align: right !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.color_666 {
    color: #666 !important;
}

@media (min-width: 1200px) {
    .pc_none {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .pc_only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .mb_only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .mb_none {
        display: none !important;
    }
}

#wrapper {
    background: #fff;
}

.inner {
    width: 100%;
    max-width: 1420px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

/* --- placeholder */
input::placeholder,
textarea::placeholder {
    color: #b1b1b1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #b1b1b1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #b1b1b1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #b1b1b1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #b1b1b1;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent;
}

input[type="text"],
input[type="password"],
input[type="tel"],
select,
textarea {
    border: 1px solid #ccd0d7;
    padding: 0 10px;
    border-radius: 0;
    background-color: #fff;
    color: #414141;
}

input[type="text"],
input[type="password"],
input[type="tel"],
select {
    height: 2.1875rem;
}

textarea {
    padding: 10px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #0068b7;
    outline: none;
}

input[type="radio"] {
    display: none !important;
}

input[type="radio"]+label {
    position: relative;
    display: inline-block;
    padding-left: 28px;
    font-size: 1rem;
    color: #666;
    vertical-align: middle;
    line-height: 1.5;
    cursor: pointer;
}

input[type="radio"]+label:before {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    color: #fff;
    background: #fff;
    border: 1px solid #bebebe;
    border-radius: 50%;
    content: "";
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

input[type="radio"]:checked+label:before {
    content: "\f00c";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #0068b7;
    border-color: #0068b7;
    font-family: 'FontAwesome';
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

input[type="checkbox"] {
    display: none !important;
}

input[type="checkbox"]+label {
    position: relative;
    display: inline-block;
    padding-left: 28px;
    font-size: 1rem;
    color: #666;
    vertical-align: middle;
    line-height: 1.5;
    cursor: pointer;
}

input[type="checkbox"]+label:before {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    color: #fff;
    background: #fff;
    border: 1px solid #bebebe;
    border-radius: 0;
    content: "";
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

input[type="checkbox"]:checked+label:before {
    content: "\f00c";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #0068b7;
    border-color: #0068b7;
    font-family: 'FontAwesome';
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

@media (max-width: 767px) {

    input[type="radio"]+label,
    input[type="checkbox"]+label {
        padding-left: 23px;
    }

    input[type="radio"]+label:before {
        width: 15px;
        height: 15px;
        line-height: 15px;
    }

    input[type="radio"]:checked+label:before {
        width: 15px;
        height: 15px;
        line-height: 15px;
    }

    input[type="checkbox"]+label:before {
        width: 15px;
        height: 15px;
        line-height: 15px;
    }

    input[type="checkbox"]:checked+label:before {
        width: 15px;
        height: 15px;
        line-height: 15px;
    }
}

/* layer */
.layer {
    display: none;
    position: fixed;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.layer .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    filter: alpha(opacity=50);
}

.layer .pop-layer {
    display: block;
}

.pop-layer {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: auto;
    background-color: #fff;
    border: 3px solid #555;
    z-index: 10;
}

.pop-layer .pop-container {
    padding: 20px 25px;
}

.pop-layer .board-password-txt {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
}

.pop-layer .board-password-input {
    margin: 40px;
    text-align: center;
}

.pop-layer .board-password-input label {
    display: inline-block;
    margin: 0 10px 0 0;
    font-size: 12px;
    color: #333;
    vertical-align: middle;
}

.pop-layer .board-password-input input {
    display: inline-block;
    padding: 0 0 0 8px;
    width: 150px;
    height: 26px;
    border: 1px solid #d8d8d8;
    color: #555;
    vertical-align: middle;
}

.pop-layer .board-password-btn {
    text-align: center;
}

.pop-layer .board-password-btn a {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 30px;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 13px;
}

.pop-layer .board-password-btn .board-password-btn-list {
    background: #d3d3d3;
    color: #464646;
}

.pop-layer .board-password-btn .board-password-btn-ok {
    background: #111;
    color: #fff;
}

/* btn */
/* ---------------------------------- layout */
html,
body {
    height: 100%;
}

body.gnb-open {
    overflow: hidden;
}

@media (min-width: 1200px) {
    body.gnb-open {
        overflow-x: hidden;
        overflow-y: visible;
    }
}

#wrapeer {
    overflow: hidden;
    width: 100%;
}

@media (min-width: 321px) {
    body {
        overflow-x: hidden;
    }
}

/* ---------------------------------- contents */
#contents {
    position: relative;
    width: 100%;
}

@media (min-width: 1200px) {
    #contents {
        min-height: calc(100vh - 255px);
        padding-top: 100px;
    }
}

@media (max-width: 1199px) {
    #header.fixed~#contents {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    #contents {
        min-height: calc(100vh - 288px);
    }

    #header.fixed~#contents {
        padding-top: 55px;
    }
}

.top-btn {
    position: fixed;
    z-index: 999;
    bottom: 50px;
    right: 30px;
    width: 50px;
    font-size: 12px;
    color: #111;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: .2s bottom ease-in-out, .4s background ease-in-out;
    -o-transition: .2s bottom ease-in-out, .4s background ease-in-out;
    -moz-transition: .2s bottom ease-in-out, .4s background ease-in-out;
    transition: .2s bottom ease-in-out, .4s background ease-in-out;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
}

.top-btn:before {
    content: "";
    display: block;
    background: url("../images/ico_btntop.png") center no-repeat;
    width: 100%;
    height: 12px;
    margin-bottom: 7px;
}

.top-btn.on {
    bottom: 30px;
    -webkit-animation-name: fc-wobble-vertical;
    animation-name: fc-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.top-btn.fixed {
    position: absolute;
    top: -25px;
    bottom: auto;
}

@media (min-width: 1200px) {
    .top-btn.on:hover {
        -webkit-animation-name: fc-bob-float, fc-bob;
        animation-name: fc-bob-float, fc-bob;
        -webkit-animation-duration: .3s, 1.5s;
        animation-duration: .3s, 1.5s;
        -webkit-animation-delay: 0s, .3s;
        animation-delay: 0s, .3s;
        -webkit-animation-timing-function: ease-out, ease-in-out;
        animation-timing-function: ease-out, ease-in-out;
        -webkit-animation-iteration-count: 1, infinite;
        animation-iteration-count: 1, infinite;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-direction: normal, alternate;
        animation-direction: normal, alternate;
    }
}

@media (max-width: 1199px) {
    .top-btn {
        right: 20px;
    }

    .top-btn.on {
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .top-btn {
        width: 40px;
        height: 40px;
        font-size: 11px;
        line-height: 40px;
    }

    .top-btn.fixed {
        top: -20px;
    }
}

/*
  path
*/
.path-wrap .path {
    font-size: 0;
}

.path-wrap .path>li {
    display: inline-block;
    padding-right: 20px;
    font-size: .875rem;
    color: #999;
    line-height: 60px;
}

.path-wrap .path>li:last-child {
    color: #222;
}

.path-wrap .path>li:last-child>span:after {
    display: none;
}

.path-wrap .path>li>span {
    display: inline-block;
    position: relative;
    line-height: 1;
}

.path-wrap .path>li>span:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 1px;
    width: 20px;
    height: 100%;
    background-image: url(../images/ico_path_arrow_right.png);
    background-repeat: no-repeat;
    background-position: center center;
}

/* header */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    z-index: 1000;
}

#header.fixed {
    position: fixed;
    top: -38px;
    top: 0 !important;
}

#header .header-top {
    width: 100%;
    background-color: #f1f1f1;
}

#header .header-bottom {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 60px;
    text-align: center;
}

#header .header-bottom:after {
    content: '';
    display: block;
    clear: both;
}

#header .langW {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

@media (max-width: 575px) {
    #header .langW.pc {
        display: none;
    }
}

#header .langW.mb {
    border: none;
}

@media (max-width: 575px) {
    #header .langW.mb {
        width: 135px;
        right: 70px;
    }
}

#header .langW>div {
    position: relative;
}

#header .langW p {
    line-height: 40px;
    font-size: 13px;
    color: #110f10;
    font-weight: 500;
    cursor: pointer;
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid #b6b6b6;
}

@media (max-width: 575px) {
    #header .langW p {
        line-height: 38px;
    }
}

#header .langW p:before {
    content: "";
    display: inline-block;
    background: url(../images/ico_lang_black.png) no-repeat;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

#header .langW p:after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 6px;
    vertical-align: middle;
    background: url(../images/ico_lang_arrow.png) no-repeat;
    margin-left: 5px;
}

#header .langW p.on:after {
    background-image: url(../images/ico_lang_arrow_on.png);
}

#header .langW ul {
    position: absolute;
    width: 100%;
    left: 0;
    top: 40px;
    padding-top: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    display: none;
}

#header .langW ul li {
    text-align: center;
}

#header .langW ul li a {
    display: block;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
}

@media (max-width: 575px) {
    #header .langW ul li a {
        padding-left: 0;
        padding: 5px 0;
    }
}

#header .logo {
    position: absolute;
    top: 50%;
    left: 60px;
    z-index: 1;
    font-size: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    #header .logo {
        left: 20px;
    }
}

#header .logo a {
    display: block;
    width: 100%;
}

.sta {
    position: relative;
    display: none;
    height: 35px;
    background-color: #0068b7;
    text-align: right;
    font-size: 0;
    z-index: 10000;
    height: 0 !important;
}

.sta .lang-depth1 {
    position: relative;
    height: 100%;
}

.sta .lang-depth1>ul {
    display: inline-block;
}

.sta .lang-depth1>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    height: 100%;
}

.sta .lang-depth1>ul>li.type-member {
    display: none;
}

.sta .lang-depth1>ul>li.line-r:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -6.5px;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: rgba(255, 255, 255, 0.3);
}

.sta .lang-depth1>ul>li>a {
    display: block;
    font-family: Titillium;
    font-size: 13px;
    color: #fff;
    background-color: #0068b7;
    padding: 0 15px;
    line-height: 35px;
}

.sta .lang-depth1>ul>li.lang-depth1-li {
    display: inline-block;
}

.sta .lang-depth1>ul>li.lang-depth1-li>a {
    position: relative;
    padding-right: 30px;
    background-color: rgba(0, 0, 0, 0.1);
}

.sta .lang-depth1>ul>li.lang-depth1-li>a:after {
    content: "\f0d7";
    position: absolute;
    top: 13px;
    right: 10px;
    line-height: 1;
    font-family: 'FontAwesome';
}

.sta .lang-depth1>ul .lang-depth2 {
    position: absolute;
    display: none;
    top: 100%;
    right: 0;
    left: 0;
}

.sta .lang-depth1>ul .lang-depth2>li {
    background-color: #0068b7;
    border-top: 0;
    text-align: left;
}

.sta .lang-depth1>ul .lang-depth2>li a {
    display: block;
    font-family: Titillium;
    font-size: 13px;
    color: #fff;
    padding: 0 15px;
    line-height: 35px;
}

.sta .lang-depth1>ul .lang-depth2>li+li a {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.sta .lang-depth1>ul>li:hover .lang-depth2 {
    display: block;
}

@media (min-width: 1200px) {
    .sta .lang-depth1>ul>li>a:hover {
        color: #fff;
        background-color: #0068b7;
    }

    .sta .lang-depth1>ul .lang-depth2>li:hover>a {
        color: #fff;
        background-color: #0068b7;
    }

    .pc_sitemap_btn {
        display: block;
        position: absolute;
        top: 42px;
        right: 20px;
        width: 30px;
        height: 20px;
        z-index: 9999;
        cursor: pointer;
    }

    .pc_sitemap_btn span {
        height: 2px;
        background: #333;
        right: 0;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .pc_sitemap_btn span:nth-child(1) {
        position: absolute;
        top: 50%;
        margin-top: -1px;
        width: 100%;
    }

    .pc_sitemap_btn span:nth-child(2) {
        position: absolute;
        top: 0;
        width: 100%;
    }

    .pc_sitemap_btn span:nth-child(3) {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .pc_sitemap_btn.on {
        top: 37px;
        height: 30px;
    }

    .pc_sitemap_btn.on span {
        background: #333;
    }

    .pc_sitemap_btn.on span:nth-child(1) {
        opacity: 0;
    }

    .pc_sitemap_btn.on span:nth-child(2) {
        -webkit-transform: translateY(14px) rotate(-45deg);
        -ms-transform: translateY(14px) rotate(-45deg);
        transform: translateY(14px) rotate(-45deg);
    }

    .pc_sitemap_btn.on span:nth-child(3) {
        -webkit-transform: translateY(-14px) rotate(45deg);
        -ms-transform: translateY(-14px) rotate(45deg);
        transform: translateY(-14px) rotate(45deg);
    }
}

@media (max-width: 1199px) {
    #header .header-top {
        display: none;
    }

    #header .header-bottom {
        width: 100%;
        height: 80px;
    }

    #header .logo {
        height: 100%;
    }

    #header .logo a {
        height: 100%;
        padding: 10px 0;
    }

    #header .logo a img {
        width: auto;
        max-width: 100%;
        height: 100%;
    }

    .pc_sitemap_btn {
        display: none;
    }

    .sta .inner {
        padding: 0;
    }

    .sta .lang-depth1>ul>li.lang-depth1-li {
        border-right: 0;
    }
}

@media (max-width: 767px) {
    #header.fixed {
        top: -28px;
    }

    #header .header-bottom {
        padding: 0 20px;
        height: 55px;
    }

    .sta {
        height: 28px;
    }

    .sta .lang-depth1>ul>li>a {
        line-height: 28px;
    }

    .sta .lang-depth1>ul>li.lang-depth1-li>a:after {
        top: 8px;
    }
}

/* sns link */
.social_link_wrap--fc {
    display: none;
}

#header .social_link_wrap--fc {
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -12px;
}

@media (max-width: 767px) {
    #header .social_link_wrap--fc {
        display: none;
    }
}

.social_link--fc {
    display: inline-block;
    font-size: 0;
    line-height: 0;
    border-radius: 12px;
    -moz-transition: background-color 0.1s;
    -o-transition: background-color 0.1s;
    -webkit-transition: background-color 0.1s;
    transition: background-color 0.1s;
}

.social_link--fc+.social_link--fc {
    margin-left: 5px;
}

.social_link--fc svg {
    width: 24px;
    height: 24px;
    overflow: hidden;
    -moz-transition: fill 0.1s;
    -o-transition: fill 0.1s;
    -webkit-transition: fill 0.1s;
    transition: fill 0.1s;
}

.social_link--fc.twitter--fc {
    background-color: #790006;
}

.social_link--fc.twitter--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    .social_link--fc.twitter--fc:hover {
        background-color: #960008;
    }

    .social_link--fc.twitter--fc:hover svg {
        fill: #fff;
    }
}

.social_link--fc.facebook--fc {
    background-color: #790006;
}

.social_link--fc.facebook--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    .social_link--fc.facebook--fc:hover {
        background-color: #960008;
    }

    .social_link--fc.facebook--fc:hover svg {
        fill: #fff;
    }
}

.social_link--fc.linkedin--fc {
    background-color: #790006;
}

.social_link--fc.linkedin--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    .social_link--fc.linkedin--fc:hover {
        background-color: #960008;
    }

    .social_link--fc.linkedin--fc:hover svg {
        fill: #fff;
    }
}

.social_link--fc.instagram--fc {
    background-color: #790006;
}

.social_link--fc.instagram--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    .social_link--fc.instagram--fc:hover {
        background-color: #960008;
    }

    .social_link--fc.instagram--fc:hover svg {
        fill: #fff;
    }
}

.social_link--fc.youtube--fc {
    background-color: #790006;
}

.social_link--fc.youtube--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    .social_link--fc.youtube--fc:hover {
        background-color: #960008;
    }

    .social_link--fc.youtube--fc:hover svg {
        fill: #fff;
    }
}

.social_link--fc.blog--fc {
    background-color: #790006;
}

.social_link--fc.blog--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    .social_link--fc.blog--fc:hover {
        background-color: #960008;
    }

    .social_link--fc.blog--fc:hover svg {
        fill: #fff;
    }
}

.social_link--fc.kakao--fc {
    background-color: #790006;
}

.social_link--fc.kakao--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    .social_link--fc.kakao--fc:hover {
        background-color: #960008;
    }

    .social_link--fc.kakao--fc:hover svg {
        fill: #fff;
    }
}

#footer .social_link_wrap--fc {
    margin-bottom: 20px;
    width: 67.83333333333333%;
}

@media (max-width: 767px) {
    #footer .social_link_wrap--fc {
        text-align: center;
        width: 100%;
    }
}

#footer .social_link--fc.twitter--fc {
    background-color: rgba(255, 255, 255, 0.1);
}

#footer .social_link--fc.twitter--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    #footer .social_link--fc.twitter--fc:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #footer .social_link--fc.twitter--fc:hover svg {
        fill: #fff;
    }
}

#footer .social_link--fc.facebook--fc {
    background-color: rgba(255, 255, 255, 0.1);
}

#footer .social_link--fc.facebook--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    #footer .social_link--fc.facebook--fc:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #footer .social_link--fc.facebook--fc:hover svg {
        fill: #fff;
    }
}

#footer .social_link--fc.linkedin--fc {
    background-color: rgba(255, 255, 255, 0.1);
}

#footer .social_link--fc.linkedin--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    #footer .social_link--fc.linkedin--fc:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #footer .social_link--fc.linkedin--fc:hover svg {
        fill: #fff;
    }
}

#footer .social_link--fc.instagram--fc {
    background-color: rgba(255, 255, 255, 0.1);
}

#footer .social_link--fc.instagram--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    #footer .social_link--fc.instagram--fc:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #footer .social_link--fc.instagram--fc:hover svg {
        fill: #fff;
    }
}

#footer .social_link--fc.youtube--fc {
    background-color: rgba(255, 255, 255, 0.1);
}

#footer .social_link--fc.youtube--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    #footer .social_link--fc.youtube--fc:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #footer .social_link--fc.youtube--fc:hover svg {
        fill: #fff;
    }
}

#footer .social_link--fc.blog--fc {
    background-color: rgba(255, 255, 255, 0.1);
}

#footer .social_link--fc.blog--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    #footer .social_link--fc.blog--fc:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #footer .social_link--fc.blog--fc:hover svg {
        fill: #fff;
    }
}

#footer .social_link--fc.kakao--fc {
    background-color: rgba(255, 255, 255, 0.1);
}

#footer .social_link--fc.kakao--fc svg {
    fill: #cfcfce;
}

@media (min-width: 1200px) {
    #footer .social_link--fc.kakao--fc:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    #footer .social_link--fc.kakao--fc:hover svg {
        fill: #fff;
    }
}

/* web gnb */
#header .w-lang {
    overflow: hidden;
    float: right;
    padding: 32px 0;
}

#header .w-lang dd {
    float: left;
    margin-left: 8px;
}

#header .w-lang dd a {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

html[lang="ko"] #header .w-lang dd.lang.ko a:after,
html[lang="en"] #header .w-lang dd.lang.en a:after,
html[lang="zh"] #header .w-lang dd.lang.zh a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -3px;
}

#header .w-lang dd a img {
    border: 1px solid #cecece;
}

@media (min-width: 1200px) {
    #header {
        /* max-height:84px; */
    }

    #header .m-menu-btn,
    #header .m-gnb-bg,
    #header .m-lang {
        display: none;
    }

    #header .gnb {
        position: relative;
        right: -80px !important;
        display: inline-block;
        width: auto;
        vertical-align: top;
        text-align: left;
    }

    #header .gnb>ul {
        display: inline-block;
        vertical-align: top;
        font-size: 0;
        line-height: 0;
    }

    #header .gnb>ul>li {
        position: relative;
        display: inline-block;
        vertical-align: top;
    }

    #header .gnb>ul>li>a {
        position: relative;
        display: block;
        font-weight: 450;
        font-size: 17px;
        padding: 0 20px;
        line-height: 100px;
        color: #222;
    }

    #header .gnb>ul>li>a.current {
        color: #0068b7;
    }

    #header .gnb>ul>li:hover>a {
        color: #0068b7;
    }

    #header .gnb .depth2 {
        display: none !important;
        position: absolute;
        top: calc(100px - 5px);
        left: 50%;
        z-index: 0;
        margin-left: -100px;
        width: 200px;
        height: 0;
        border-top: 5px solid #0068b7;
        background: rgba(0, 0, 0, 0.7);
        text-align: center;
        opacity: 0;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    #header .gnb .depth2 li {
        position: relative;
        border-top: 1px solid rgba(51, 51, 51, 0.7);
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    #header .gnb .depth2 a {
        position: relative;
        display: block;
        padding: 12px 10px;
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        word-break: keep-all;
        font-weight: 400;
    }

    #header .gnb .depth2 a:hover {
        color: #fff;
    }

    #header .gnb .depth2 li.in>a {
        padding-left: 20px;
        padding-right: 20px;
    }

    #header .gnb .depth2 li.in>a:after {
        position: absolute;
        font-family: 'FontAwesome';
        content: "\f054";
        font-size: 10px;
        top: 50%;
        right: 10px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.8);
    }

    #header .gnb .depth2 li:hover {
        background: #000;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    #header .gnb .depth2 li:hover.in>a:after {
        color: rgba(255, 255, 255, 0.8);
    }

    #header .gnb .depth2 ul {
        position: absolute;
        display: none;
        width: 100%;
        top: -1px;
        left: 100%;
        background: rgba(6, 6, 6, 0.7);
    }

    #header .gnb .depth2 ul li {
        border-top: 1px solid rgba(76, 76, 76, 0.7);
    }

    #header .gnb .depth2 ul li:hover {
        background: #000;
    }

    #header .gnb .depth2 ul li a {
        color: #fff;
    }

    #header .gnb .depth2 ul li a:hover {
        color: #fff;
    }

    #header .gnb .depth2>li:hover ul {
        display: block;
    }

    #header .gnb>ul>li:hover .depth2 {
        display: block !important;
        z-index: 9999;
        height: auto;
        opacity: 1;
    }

    .btn-all-menu {
        position: absolute;
        top: 38px;
        left: 50%;
        width: 32px;
        height: 25px;
        border: 1px solid #cecece;
        margin-left: 487px;
        cursor: pointer;
    }

    .btn-all-menu span {
        position: absolute;
        left: 50%;
        margin-left: -10px;
        width: 20px;
        height: 2px;
        background: #ababab;
    }

    .btn-all-menu span:nth-child(1) {
        top: 5px;
    }

    .btn-all-menu span:nth-child(2) {
        top: 50%;
        margin-top: -1px;
    }

    .btn-all-menu span:nth-child(3) {
        bottom: 5px;
    }

    .all-menu-wrap {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999999;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
    }

    .all-menu-wrap>ul {
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        padding: 30px 30px 50px;
        width: 960px;
        background: #fff;
        font-size: 0;
    }

    .all-menu-wrap>ul>li {
        display: inline-block;
        padding: 0 30px;
        width: 33.33333333333333%;
        vertical-align: top;
    }

    .all-menu-wrap>ul>li>a {
        display: block;
        margin-top: 20px;
        padding: 10px;
        border-bottom: 1px solid #222;
        font-size: 22px;
        line-height: 1.3;
        color: #222;
    }

    .all-menu-wrap>ul>li li a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #ddd;
        font-weight: 300;
        font-size: 18px;
        line-height: 1.3;
    }

    .all-menu-wrap p {
        position: absolute;
        top: 100px;
        left: 50%;
        margin-left: 424px;
        cursor: pointer;
    }

    .all-menu-wrap p span {
        display: block;
        margin-top: 5px;
        font-size: 0;
        width: 30px;
        height: 30px;
    }

    .all-menu-wrap p span:before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #666;
        transform: rotate(-45deg);
    }

    .all-menu-wrap p span:after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #666;
        transform: rotate(45deg);
    }

    #header .w-lang dd a:hover {
        color: rgba(255, 255, 255, 0.7);
    }

    #headerSitemap {
        position: absolute;
        background-color: rgba(42, 44, 54, 0.9);
        width: 100%;
        -webkit-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
        transform-origin: top;
        opacity: 0;
        -moz-transition: 0.2s all ease-in-out;
        -o-transition: 0.2s all ease-in-out;
        -webkit-transition: 0.2s all ease-in-out;
        transition: 0.2s all ease-in-out;
        top: 100px;
    }

    #headerSitemap.on {
        -webkit-transform: rotateX(0);
        -ms-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }

    #headerSitemap>ul {
        display: flex;
        max-width: 1440px;
        padding: 0 20px;
        margin: 0 auto;
    }

    #headerSitemap>ul>li {
        width: 100%;
        text-align: center;
        border-left: 1px solid rgba(205, 208, 215, 0.3);
        padding: 35px 20px;
        font-size: 16px;
    }

    #headerSitemap>ul>li:last-child {
        border-right: 1px solid rgba(205, 208, 215, 0.3);
    }

    #headerSitemap>ul>li>a {
        display: block;
        color: #fff;
        -moz-transition: none;
        -o-transition: none;
        -webkit-transition: none;
        transition: none;
    }

    #headerSitemap>ul>li>a:hover {
        color: #fff;
    }

    #headerSitemap>ul>li>.depth2 {
        display: inline-block;
        text-align: left;
        margin-top: 15px;
    }

    #headerSitemap>ul>li>.depth2 li {
        margin-bottom: 10px;
    }

    #headerSitemap>ul>li>.depth2 li:last-child {
        margin-bottom: 0;
    }

    #headerSitemap>ul>li>.depth2 li a {
        color: #c0c2d2;
        -moz-transition: none;
        -o-transition: none;
        -webkit-transition: none;
        transition: none;
    }

    #headerSitemap>ul>li>.depth2 li.in ul {
        padding: 10px;
        font-size: 14px;
    }

    #headerSitemap>ul>li>.depth2 li.in ul li a {
        color: #c0c2d2;
    }

    #headerSitemap>ul>li>.depth2 li.in ul li a:before {
        content: "- ";
    }

    #headerSitemap>ul>li:hover>a {
        /* color: $color-base-hover; */
    }

    #headerSitemap>ul>li>.depth2>li>a:hover {
        color: #fff;
        text-decoration: underline;
    }

    #headerSitemap>ul>li>.depth2 .depth3 li a:hover {
        color: #fff;
        text-decoration: underline;
    }
}

@media (max-width: 1300px) {
    #header .gnb {
        padding-left: 50px;
    }
}

@media (min-width: 1400px) {
    #header .gnb>ul>li>a {
        font-size: 18px;
        padding: 0 45px;
    }
}

@media (max-width: 1199px) {

    .btn-all-menu,
    .all-menu-wrap {
        display: none;
    }

    #header .w-lang {
        display: none;
    }

    #header .m-menu-btn {
        display: block;
        position: absolute;
        top: 23px;
        right: 20px;
        width: 42px;
        height: 34px;
        z-index: 9999;
        cursor: pointer;
    }

    #header .m-menu-btn span {
        height: 6px;
        background: #333;
        left: 0;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    #header .m-menu-btn span:nth-child(1) {
        position: absolute;
        top: 50%;
        margin-top: -3px;
        width: 100%;
    }

    #header .m-menu-btn span:nth-child(2) {
        position: absolute;
        top: 0;
        width: 100%;
    }

    #header .m-menu-btn span:nth-child(3) {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    #header .m-menu-btn.on {
        z-index: 100000;
    }

    #header.fixed .m-menu-btn.on {
        top: 24px;
    }

    #header .m-menu-btn.on span {
        background: #fff;
    }

    #header .m-menu-btn.on span:nth-child(1) {
        opacity: 0;
    }

    #header .m-menu-btn.on span:nth-child(2) {
        height: 2px;
        transform: translateY(16px) rotate(-45deg);
    }

    #header .m-menu-btn.on span:nth-child(3) {
        height: 2px;
        transform: translateY(-16px) rotate(45deg);
    }

    #header .gnb {
        float: none;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 99999;
        width: 100%;
        height: 100vh;
        opacity: 0;
        text-align: left;
    }

    #header .m-gnb-bg {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
    }

    #header .m-lang {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100000;
        padding: 18px 0 0 33px;
        width: 80%;
        height: 80px;
        background: #0068b7;
        opacity: 0;
        font-size: 0;
    }

    #header .m-lang .w-lang {
        display: block;
        float: left;
        padding: 5px 0;
    }

    #header .m-lang .w-lang dd {
        margin-left: 0;
        margin-right: 10px;
    }

    #header .m-lang .w-lang dd a {
        font-size: 23px;
        text-align: center;
    }

    html[lang="ko"] #header .m-lang .w-lang dd.lang.ko a:after,
    html[lang="en"] #header .m-lang .w-lang dd.lang.en a:after,
    html[lang="zh"] #header .m-lang .w-lang dd.lang.zh a:after {
        bottom: 0;
    }

    #header .gnb>ul {
        overflow-y: auto;
        position: absolute;
        top: 80px;
        right: 0;
        z-index: 9999;
        width: 80%;
        height: -webkit-calc(100vh - 80px);
        height: -moz-calc(100vh - 80px);
        height: calc(100vh - 80px);
        background: #fff;
        padding-bottom: 120px;
    }

    #header .gnb ul a {
        display: block;
        padding-left: 36px;
        width: 100%;
        line-height: 1;
    }

    #header .gnb>ul>li {
        width: 100%;
    }

    #header .gnb>ul>li>a {
        position: relative;
        padding-top: 20px;
        padding-bottom: 20px;
        border-top: 1px solid #ddd;
        font-size: 23px;
        color: #333;
        background-color: #fff;
    }

    #header .gnb>ul>li.mb-in>a:before {
        position: absolute;
        top: 16px;
        right: 30px;
        content: "\f107";
        display: block;
        font-family: 'FontAwesome';
        font-size: 30px;
        line-height: 1;
    }

    #header .gnb>ul>li:first-child>a {
        border-top: 0 none;
    }

    #header .gnb>ul>li:last-child>a {
        border-bottom: 1px solid #ddd;
    }

    #header .gnb>ul>li>ul {
        display: none;
        width: 100%;
        background: #e8e8e8;
    }

    #header .gnb>ul>li>ul>li {
        width: 100%;
        background: #e8e8e8;
    }

    #header .gnb>ul>li>ul>li a {
        padding-top: 15px;
        padding-bottom: 15px;
        border-top: 1px solid #d1d1d1;
        font-size: 17px;
    }

    #header .gnb>ul>li>ul>li:first-child>a {
        border-top: 0 none;
    }

    #header .gnb>ul>li.on>a {
        background: #3f3f40;
        border-top: 0 none;
        color: #fff;
    }

    #header .gnb>ul>li.on>a:before {
        content: '\f106';
    }

    #header .gnb>ul>li .depth2>li>ul li a {
        font-weight: 400;
    }

    #header .gnb>ul>li .depth2>li>ul li a:before {
        content: "-";
        display: inline-block;
        margin-right: 10px;
    }

    #headerSitemap {
        display: none;
    }
}

@media (max-width: 767px) {
    #header .m-menu-btn {
        top: 15px;
        right: 20px;
        width: 28px;
        height: 23px;
    }

    #header.fixed .m-menu-btn.on {
        top: 15px;
    }

    #header .m-menu-btn span {
        height: 3px;
    }

    #header .m-menu-btn span:nth-child(1) {
        top: 10px;
        margin-top: auto;
    }

    #header .m-menu-btn.on span:nth-child(2) {
        height: 2px;
        transform: translateY(10.5px) rotate(-45deg);
    }

    #header .m-menu-btn.on span:nth-child(3) {
        height: 2px;
        transform: translateY(-10.5px) rotate(45deg);
    }

    #header .gnb>ul {
        top: 55px;
        height: -webkit-calc(100vh - 55px);
        height: -moz-calc(100vh - 55px);
        height: calc(100vh - 55px);
        padding-bottom: 120px;
    }

    #header .gnb>ul>li.mb-in>a:before {
        top: 12px;
        right: 20px;
        font-size: 23px;
    }

    #header .m-lang {
        padding: 12px 0 0 20px;
        height: 55px;
    }

    #header .m-lang .w-lang {
        padding: 7px 0;
    }

    #header .m-lang .w-lang dd a {
        font-size: 13px;
    }

    #header .gnb>ul>li>a {
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 15px;
    }

    #header .gnb>ul>li>ul>li a {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 13px;
    }
}

/* footer */
#footer {
    position: relative;
    width: 100%;
    background: #f8f8f8;
    border-top: 1px solid #dfdfdf;
    padding: 35px 0;
}

@media (max-width: 1199px) {
    #footer {
        padding: 0;
    }
}

#footer .footer-bottom {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1420px;
    font-size: 0;
    text-align: left;
}

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

#footer .footer-bottom .address {
    font-size: 14px;
    color: #111;
    font-weight: 300;
    line-height: 25px;
}

#footer .footer-bottom .address i {
    display: inline-block;
    margin: 0 20px;
}

#footer .footer-bottom .copyright {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    color: #111;
    font-weight: 300;
}

@media (max-width: 1199px) {
    #footer .footer-bottom .copyright {
        position: static;
        margin-top: 20px;
    }
}

@media (min-width: 1200px) {
    ul.footer-bottom-link li a:hover {
        color: rgba(255, 255, 255, 0.7);
    }

    .familySite h3:hover {
        background: #333 url(../images/plus_icon.png) no-repeat right 20px center;
        background-size: 16px;
    }

    .footSelect ul li a:hover {
        background-color: #f7f7f7;
    }
}

@media (max-width: 1199px) {
    #footer .footer-bottom {
        padding: 40px 30px 60px;
        width: 100%;
    }

    #footer .footer-bottom dl {
        right: 30px;
    }
}

@media (max-width: 767px) {
    #footer .footer-bottom {
        padding: 40px 20px;
    }

    #footer .footer-bottom p {
        margin-right: 0;
        display: block;
        text-align: center;
    }

    #footer .footer-bottom p img {
        display: inline-block;
    }

    #footer .footer-bottom dl dt {
        text-align: center;
    }

    ul.footer-bottom-link {
        text-align: center;
        width: 100%;
    }

    ul.footer-bottom-link li a {
        font-size: 13px;
    }

    #footer .footer-bottom address {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    #footer .footer-bottom address span {
        font-size: 13px;
    }

    #footer .footer-bottom dl {
        float: none;
        display: block;
        margin-top: 30px;
        text-align: center;
        position: relative;
        right: auto;
        top: 0;
    }

    #footer .footer-bottom dt {
        text-align: center;
    }

    .familySite {
        margin: 0 auto;
    }
}

.footer-top {
    position: relative;
    width: 100%;
    background: #383737;
    display: none;
}

.footer-top ul {
    margin: 0 auto;
    max-width: 1440px;
    padding: 20px 30px 16.5px;
    width: 100%;
}

.footer-top ul li {
    color: white;
    position: relative;
    display: inline-block;
    margin: 0 10px 3.5px;
}

.cb:after {
    content: "";
    display: block;
    clear: both;
}

.img-wrap {
    overflow: hidden;
    text-align: center;
    position: relative;
    height: 0;
    padding-bottom: 100%;
    font-size: 0;
}

.img-wrap img {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}

.btn-center {
    text-align: center;
}

.btn-right {
    text-align: right;
}

.btn-left {
    text-align: left;
}

@media (max-width: 575px) {
    #popuplayer6 {
        display: none !important;
    }
}

.footer_top_link {
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer_top_link ul {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer_top_link ul li {
    display: inline-block;
    padding: 5px 15px;
    position: relative;
}

.footer_top_link ul li:after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer_top_link ul li:last-child:after {
    display: none;
}

.footer_top_link ul li a:hover {
    color: #0068b7;
}

@media (max-width: 1199px) {
    #popuplayer8 {
        left: 10vw !important;
        top: 30vw !important;
    }

    #popuplayer8>div:first-child {
        width: 80vw !important;
        height: 60vw !important;
    }

    #popuplayer8 iframe {
        width: 100% !important;
        height: 100% !important;
    }
}

@media (max-width: 1199px) {
    .main_layer_pop_box {
        left: 10vw !important;
        top: 30vw !important;
    }

    .main_layer_pop_box>div:first-child {
        width: 80vw !important;
        height: auto !important;
    }

    .main_layer_pop_box iframe {
        width: 100% !important;
        height: 100% !important;
    }
}

/* main */
.main_visual {
    position: relative;
}

.main_visual .visualSlide .slide_pager {
    position: absolute;
    left: 0;
    bottom: 30px;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.main_visual .visualSlide .slide_pager span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #fff;
    margin: 0 5px;
    cursor: pointer;
    opacity: 1;
}

.main_visual .visualSlide .slide_pager span.swiper-pagination-bullet-active {
    width: 40px;
    background-color: #0068b7;
    border-radius: 5px;
}

.main_visual .visualSlide>div>div {
    overflow: hidden;
    text-align: center;
    position: relative;
    height: 0;
    padding-bottom: 56.5%;
    font-size: 0;
}

@media (max-width: 575px) {
    .main_visual .visualSlide>div>div:nth-child(1) {
        background-color: #eee;
    }

    .main_visual .visualSlide>div>div:nth-child(1) video {
        max-width: 120%;
        height: auto;
        max-height: none;
        min-height: auto;
        min-width: 120%;
        width: 120%;
    }
}

.main_visual .visualSlide>div>div:nth-child(2) {
    background: url("../images/img_main_banner01.jpg") no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .main_visual .visualSlide>div>div:nth-child(2) {
        background-image: url("../images/img_main_banner01_m.jpg");
    }
}

.main_visual .visualSlide>div>div:nth-child(3) {
    background: url("../images/img_main_banner02.jpg") no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .main_visual .visualSlide>div>div:nth-child(3) {
        background-image: url("../images/img_main_banner02_m.jpg");
    }
}

.main_visual .visualSlide>div>div>* {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}

.main_visual .visualSlide>div>div .txt_wrap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    height: auto !important;
    min-height: auto !important;
}

.main_visual .visualSlide>div>div .txt_wrap h2 strong {
    display: block;
    font-size: 65px;
    font-weight: 550;
    line-height: 75px;
    margin-bottom: 30px;
    color: #fff;
}

@media (max-width: 767px) {
    .main_visual .visualSlide>div>div .txt_wrap h2 strong {
        font-size: 48px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .main_visual .visualSlide>div>div .txt_wrap h2 strong {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}

.main_visual .visualSlide>div>div .txt_wrap p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
}

@media (max-width: 575px) {
    .main_visual .visualSlide>div>div .txt_wrap p {
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .main_visual .visualSlide>div>div {
        padding-bottom: 78%;
    }
}

@media (max-width: 575px) {
    .main_visual .visualSlide>div>div {
        padding-bottom: 130%;
    }
}

.main_visual .visualSlide2 .slide_pager2 {
    position: absolute;
    left: 0;
    bottom: 30px;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.main_visual .visualSlide2 .slide_pager2 span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #fff;
    margin: 0 5px;
    cursor: pointer;
    opacity: 1;
}

.main_visual .visualSlide2 .slide_pager2 span.swiper-pagination-bullet-active {
    width: 40px;
    background-color: #0068b7;
    border-radius: 5px;
}

.main_visual .visualSlide2>div>div {
    overflow: hidden;
    text-align: center;
    position: relative;
    height: 0;
    padding-bottom: 44.5%;
    font-size: 0;
}

@media (max-width: 575px) {
    .main_visual .visualSlide2>div>div:nth-child(1) {
        background-color: #eee;
    }

    .main_visual .visualSlide2>div>div:nth-child(1) video {
        max-width: 120%;
        height: auto;
        max-height: none;
        min-height: auto;
        min-width: 120%;
        width: 120%;
    }
}
/* 
.main_visual .visualSlide2>div>div:nth-child(2) {
    background: url("../images/img_main_banner01.jpg") no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .main_visual .visualSlide2>div>div:nth-child(2) {
        background-image: url("../images/img_main_banner01_m.jpg");
    }
}

.main_visual .visualSlide2>div>div:nth-child(3) {
    background: url("../images/img_main_banner02.jpg") no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .main_visual .visualSlide2>div>div:nth-child(3) {
        background-image: url("../images/img_main_banner02_m.jpg");
    }
} */

.main_visual .visualSlide2>div>div>* {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}

.main_visual .visualSlide2>div>div .txt_wrap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    height: auto !important;
    min-height: auto !important;
}

.main_visual .visualSlide2>div>div .txt_wrap h2 strong {
    display: block;
    font-size: 65px;
    font-weight: 550;
    line-height: 75px;
    margin-bottom: 30px;
    color: #fff;
}

@media (max-width: 767px) {
    .main_visual .visualSlide2>div>div .txt_wrap h2 strong {
        font-size: 48px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .main_visual .visualSlide2>div>div .txt_wrap h2 strong {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}

.main_visual .visualSlide2>div>div .txt_wrap p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
}

@media (max-width: 575px) {
    .main_visual .visualSlide2>div>div .txt_wrap p {
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .main_visual .visualSlide2>div>div {
        padding-bottom: 78%;
    }
}

@media (max-width: 575px) {
    .main_visual .visualSlide2>div>div {
        padding-bottom: 104%;
        margin-top: 56px;
    }
}

.main_visual__slider {
    margin-bottom: 0 !important;
}

.main_visual__slider.bounce {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.main_visual__slider.bounce.forward {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}

.main_visual__slider.bounce.backwrad {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}

.slider_item {
    position: relative;
    height: 700px;
}

@media (max-width: 575px) {
    .slider_item {
        background-size: cover !important;
    }
}

.slider_item.item01 {
    background: url("../images/img_main_visual01.jpg") no-repeat center/cover;
}

.slider_item.item02 {
    background: url("../images/img_main_visual02.jpg") no-repeat center/cover;
}

.slider_item.item03 {
    background: url("../images/img_main_visual03.jpg") no-repeat center/cover;
}

.slider_item:not(:first-of-type) {
    display: none;
}

.slick-initialized .slider_item:not(:first-of-type) {
    display: block;
}

.slider_item__inner {
    display: table;
    text-align: center;
    color: #fff;
    width: 100%;
    height: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider_item__inner .slider_item__inner__txtbox {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 120px;
    font-size: 0;
}

.slider_item__inner .slider_item__inner__txtbox>* {
    position: relative;
    opacity: 0;
}

.slider_item__inner .slider_item__inner__txtbox h2 strong {
    display: block;
    font-weight: 700;
    font-size: 65px;
    font-weight: 550;
    line-height: 75px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .slider_item__inner .slider_item__inner__txtbox h2 strong {
        font-size: 48px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .slider_item__inner .slider_item__inner__txtbox h2 strong {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}

.slider_item__inner .slider_item__inner__txtbox p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

@media (max-width: 575px) {
    .slider_item__inner .slider_item__inner__txtbox p {
        font-size: 15px;
        line-height: 25px;
    }

    .slider_item__inner .slider_item__inner__txtbox p br {
        display: none;
    }
}

.slider_item__inner .slider_item__inner__txtbox a {
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    padding: 10px 15px;
    margin-top: 20px;
    background-color: #0068b7;
}

@media (min-width: 1200px) {
    .slider_item__inner .slider_item__inner__txtbox a:hover {
        background-color: #0068b7;
    }
}

.slider_item__more {
    margin-top: 70px;
    font-size: 0;
}

.slider_item__more a {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    background: #90d353 url("../images/icon_main_visual_more.png") no-repeat right 25px center;
    text-transform: uppercase;
    padding: 20px 70px;
    border-radius: 30px;
}

.main_visual_quick {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.main_visual_quick ul {
    display: flex;
    margin: 0 -16px;
}

.main_visual_quick ul li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 33.333333%;
    padding: 0 16px;
    opacity: 0;
}

.main_visual_quick__inner {
    position: relative;
    height: 100%;
}

.main_visual_quick ul li figure {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    font-size: 0;
}

.main_visual_quick ul li figure img {
    width: 100%;
}

.main_visual_quick__txt {
    position: relative;
    vertical-align: middle;
    padding: 35px 50px 55px;
    height: 100%;
    background-color: #efefef;
    color: #111;
    letter-spacing: -.5px;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_visual_quick__txt h6 {
    font-size: 20px;
    font-weight: 700;
}

.main_visual_quick__txt p {
    font-size: 15px;
    font-weight: 300;
    margin-top: 20px;
    text-align: justify;
}

.main_visual_quick ul li a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.main_visual__slider .slick-dots {
    bottom: 45px;
}

.main_visual__slider .slick-dots li {
    width: 10px;
    height: 10px;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_visual__slider .slick-dots li.slick-active {
    width: 40px;
}

.main_visual__slider .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 5px;
    background-color: #fff;
}

.main_visual__slider .slick-dots li.slick-active button {
    border-radius: 5px;
    background-color: #0068b7;
}

.slick-dots li button:before {
    display: none;
}

@media (max-width: 1199px) {
    .main_visual_quick ul {
        margin: 0 -10px;
    }

    .main_visual_quick ul li {
        padding: 0 10px;
    }

    .main_visual_quick__txt {
        padding: 35px 40px 40px;
    }

    .main_visual_quick__txt p {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .slider_item__more a:hover {
        background-color: #94de50;
    }

    .main_visual_quick ul li:hover .main_visual_quick__txt {
        background-color: #fff;
        -webkit-box-shadow: 0 5px 10px -1px rgba(0, 0, 0, 0.2);
        box-shadow: 0 5px 10px -1px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 1199px) {
    .slider_item {
        height: 700px;
    }

    .main_visual_quick__txt {
        padding: 20px 25px 25px;
    }
}

@media (max-width: 767px) {
    .slider_item {
        height: 520px;
        min-height: 360px;
    }

    .slider_item__inner {
        margin-top: 0;
    }

    .slider_item__inner .slider_item__inner__txtbox {
        padding-bottom: 0;
    }

    .slider_item__inner .slider_item__inner__txtbox h2 {
        font-size: 25px;
    }

    .slider_item__inner .slider_item__inner__txtbox p {
        font-size: 14px;
        margin-top: 15px;
    }

    .slider_item__inner .slider_item__inner__txtbox a {
        font-size: 12px;
        margin-top: 15px;
        padding: 6px 10px;
    }

    .main_visual__slider .slick-dots {
        bottom: 20px;
    }

    .main_visual_quick ul {
        display: block;
        margin: 0;
    }

    .main_visual_quick ul li {
        display: block;
        padding: 0;
        width: 100%;
        margin-top: 20px;
    }

    .main_visual_quick ul li figure {
        position: relative;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .main_visual_quick__txt {
        padding: 20px 25px 25px;
    }

    .main_visual_quick__txt h6 {
        font-size: 16px;
        font-weight: 500;
    }

    .main_visual_quick__txt p {
        font-size: 14px;
        margin-top: 10px;
    }
}

/* main section */
.main_section {
    padding: 100px 0;
}

.main_conts_tit {
    font-size: 45px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.3;
    margin-bottom: 40px;
}

.main_conts_tit small {
    font-size: 35px;
    font-weight: 300;
}

@media (max-width: 767px) {
    .main_section {
        padding: 55px 0;
    }

    .main_conts_tit {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .main_conts_tit small {
        font-size: 16px;
    }
}

/* main section 01 */
.main_product_wrap .main_conts_tit small {
    font-size: inherit;
}

.main_product__inner {
    overflow: hidden;
}

.main_product__inner>ul {
    display: flex;
    margin: 0 -75px;
    flex-direction: row-reverse;
}

.main_product__inner>ul>li {
    width: 33.333333%;
    padding: 0 75px;
}

.main_product_tit {
    font-size: 25px;
    font-weight: 700;
    color: #200000;
}

.main_product_txt {
    font-size: 15px;
    font-weight: 300;
    color: #111;
    text-align: justify;
    margin-top: 10px;
}

.main_product__btn {
    margin-top: 50px;
}

.main_product__btn a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #111;
    padding: 15px 85px 15px 20px;
    background: url("../images/icon_main_section02_arrow.png") no-repeat right 16px center;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_section02__txt__box__link a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #111;
    padding: 15px 85px 15px 20px;
    background: url("../images/icon_main_section02_arrow.png") no-repeat right 16px center;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_product__btn a {
    border-color: #0068b7;
    background-color: #0068b7;
}

.sub-tab--fc>ul>li>a {
    display: flex;
    height: 54px;
    background-color: #fff;
    padding: 3px 20px 0;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
    color: #111;
    border-bottom: 1px solid #e5e5e5;
}

.sub-tab--fc>ul>li>a.on {
    font-weight: 700;
    background-color: #f7f7f7;
}

.sub-tab__conts--fc>ul>li {
    display: block;
}

.sub-tab__conts--fc>ul>li:not(:first-child) {
    display: none;
}

.no_product {
    text-align: center;
}

.product_slider--fc .item_name--fc {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.product_slider--fc .slick-prev,
.product_slider--fc .slick-next {
    top: 38%;
    width: 40px;
    height: 60px;
    border-radius: 5px;
    z-index: 1;
}

.product_slider--fc .slick-prev {
    background: url(../images/icon_main_product_prev.png) no-repeat center;
    left: -40px;
}

.product_slider--fc .slick-next {
    background: url(../images/icon_main_product_next.png) no-repeat center;
    right: -40px;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.product_slider--fc .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 40px;
}

.product_slider--fc .slick-dots li {
    width: auto;
    height: 10px;
    vertical-align: top;
}

.product_slider--fc .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: #c8cace;
    border-radius: 50%;
}

.product_slider--fc .slick-dots li.slick-active button {
    width: 28px;
    background-color: #0068b7;
    border-radius: 15px;
}

@media (max-width: 1199px) {
    .main_product__inner>ul {
        margin: 0 -30px;
    }

    .main_product__inner>ul>li {
        padding: 0 30px;
    }

    .main_product_txt {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .sub-tab--fc>ul>li>a:hover {
        background-color: #f7f7f7;
    }

    .product_slider--fc .slick-prev:hover,
    .product_slider--fc .slick-next:hover {
        background-color: #eee;
    }

    .main_product__btn a:hover {
        background-color: #fff;
        border-color: #111;
    }
}

@media (max-width: 767px) {
    .main_product__inner>ul {
        display: block;
        margin: 0;
    }

    .main_product__inner>ul>li {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .sub-tab--fc>ul {
        display: flex;
        flex-wrap: wrap;
    }

    .sub-tab--fc>ul>li {
        flex: 1;
    }

    .sub-tab--fc>ul>li>a {
        height: 100%;
        padding: 5px 10px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
    }

    .product_slider--fc {
        margin-bottom: 0 !important;
        padding: 0 20px;
    }

    .product_slider--fc .slick-prev,
    .product_slider--fc .slick-next {
        background-size: 20px !important;
    }

    .product_slider--fc .slick-prev {
        left: 0;
    }

    .product_slider--fc .slick-next {
        right: 0;
    }

    .product_slider--fc .item_name--fc {
        font-size: 16px;
    }

    .product_slider--fc .slick-dots {
        margin-top: 20px;
        height: 10px;
    }

    .main_product_tit {
        font-size: 16px;
    }

    .main_product_txt {
        font-size: 14px;
    }

    .main_product__btn {
        margin-top: 25px;
    }

    .main_product__btn a {
        font-size: 13px;
        padding: 8px 40px 8px 15px;
        background-size: 10px;
    }

    .main_section02__txt__box__link a {
        font-size: 13px;
        padding: 8px 40px 8px 15px;
        background-size: 10px;
    }
}

/* main section 02 */
.main_section02__inner {
    display: flex;
}

.main_section02__img {
    width: 50%;
    font-size: 0;
    order: 2;
    margin-left: auto;
}

.main_section02__img img {
    opacity: 0;
}

.main_section02__txt {
    display: flex;
    width: 50%;
    background-color: #efefef;
    align-items: center;
    padding-bottom: 20px;
}

.main_section02__txt__box {
    width: 100%;
    max-width: 660px;
    padding: 20px;
    margin-left: auto;
}

.main_section02__txt__box p {
    font-size: 18px;
    font-weight: 300;
}

.main_section02__txt__box__link {
    margin-top: 70px;
    font-size: 0;
}

@media (min-width: 1200px) {
    .main_section02__txt__box__link a:hover {
        background-color: #fff;
    }
}

@media (max-width: 1199px) {
    .main_section02__img {
        width: 35%;
    }

    .main_section02__txt {
        width: 65%;
    }
}

@media (max-width: 767px) {
    .main_section02__inner {
        display: block;
    }

    .main_section02__img {
        width: 100%;
        background: none !important;
    }

    .main_section02__img img {
        opacity: 1;
        width: 100%;
    }

    .main_section02__txt {
        display: block;
        width: 100%;
        padding-bottom: 10px;
    }

    .main_section02__txt__box p {
        font-size: 14px;
    }

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

/* main section 03 */
.main_section03__list ul {
    font-size: 0;
    margin: 0 -13px;
}

.main_section03__list ul li {
    display: inline-block;
    width: 25%;
    padding: 0 13px;
    vertical-align: top;
}

.main_section03__list__inner {
    position: relative;
}

.main_section03__list__inner p {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0 10px;
    height: 80px;
    line-height: 1.2;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_section03__list__inner p:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 4px;
    background-color: #111;
    border-radius: 5px;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_section03__list__inner figure {
    position: relative;
}

.main_section03__list__inner figure:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    border-width: 2px 0 0 2px;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_section03__list__inner figure:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    border-width: 0 2px 2px 0;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_section03__list__inner figure img {
    width: 100%;
}

.main_section03__list__inner a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (min-width: 1200px) {
    .main_section03__list__inner:hover p {
        color: #0068b7;
    }

    .main_section03__list__inner:hover p:before {
        background-color: #0068b7;
    }

    .main_section03__list__inner:hover figure:before,
    .main_section03__list__inner:hover figure:after {
        width: 100%;
        height: 100%;
        border-color: #0068b7;
    }
}

@media (max-width: 767px) {
    .main_section03__list ul {
        margin: 0;
    }

    .main_section03__list ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    .main_section03__list ul li+li {
        margin-top: 30px;
    }

    .main_section03__list__inner p {
        font-size: 16px;
        padding: 10px 0;
        height: auto;
    }
}

/* img background */
.img-bg-copy {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main_section {
    text-align: center;
}

.main_section h2 {
    font-size: 38px;
    color: #111;
    font-weight: 300;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .main_section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .main_section h2 {
        margin-bottom: 50px;
    }
}

.main_section h2 strong {
    display: inline-block;
    color: #0068b7;
}

.main_section h2 span {
    display: block;
    font-size: 18px;
    color: #444;
    font-weight: 300;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .main_section h2 span {
        font-size: 14px;
    }
}

/* main section01 */
.main_section.section01 .about-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 70px 30px;
    border: 2px solid #0068b7;
    text-align: center;
}

@media (max-width: 575px) {
    .main_section.section01 .about-list {
        padding: 30px 10px;
    }
}

.main_section.section01 .about-list>li {
    display: inline-block;
    width: 170px;
    margin: 0 10px;
}

@media (max-width: 1199px) {
    .main_section.section01 .about-list>li {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .main_section.section01 .about-list>li {
        margin-bottom: 20px;
        width: 120px;
    }
}

.main_section.section01 .about-list>li .ico-wrap {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    border-radius: 170px;
    background: #f2f2f2;
    position: relative;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

@media (max-width: 767px) {
    .main_section.section01 .about-list>li .ico-wrap {
        width: 100%;
        height: 170px;
    }
}

@media (max-width: 575px) {
    .main_section.section01 .about-list>li .ico-wrap {
        height: 120px;
    }
}

.main_section.section01 .about-list>li .ico-wrap i {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.main_section.section01 .about-list>li h3 {
    font-size: 18px;
    color: #222;
    font-weight: 400;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .main_section.section01 .about-list>li h3 {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .main_section.section01 .about-list>li h3 {
        margin-top: 10px;
    }
}

.main_section.section01 .about-list>li:hover .ico-wrap {
    box-shadow: 4px 10px 10px 1px rgba(0, 0, 0, 0.1);
    background: url("../images/bg_section01_li.png") center center no-repeat;
    background-size: cover;
}

.main_section.section01 .about-list>li:nth-child(1) .ico-wrap i {
    background: url("../images/ico_section01_li1.png") no-repeat;
    width: 72px;
    height: 64px;
}

.main_section.section01 .about-list>li:nth-child(1):hover .ico-wrap i {
    background-image: url("../images/ico_section01_li1_on.png");
}

.main_section.section01 .about-list>li:nth-child(2) .ico-wrap i {
    background: url("../images/ico_section01_li2.png") no-repeat;
    width: 70px;
    height: 73px;
}

.main_section.section01 .about-list>li:nth-child(2):hover .ico-wrap i {
    background-image: url("../images/ico_section01_li2_on.png");
}

.main_section.section01 .about-list>li:nth-child(3) .ico-wrap i {
    background: url("../images/ico_section01_li3.png") center center no-repeat;
    width: 60px;
    height: 70px;
}

.main_section.section01 .about-list>li:nth-child(3):hover .ico-wrap i {
    background-image: url("../images/ico_section01_li3_on.png");
}

.main_section.section01 .about-list>li:nth-child(4) .ico-wrap i {
    background: url("../images/ico_section01_li4.png") center center no-repeat;
    width: 70px;
    height: 70px;
}

.main_section.section01 .about-list>li:nth-child(4):hover .ico-wrap i {
    background-image: url("../images/ico_section01_li4_on.png");
}

.main_section.section01 .about-list>li:nth-child(5) .ico-wrap i {
    width: 74px;
    height: 63px;
    background: url("../images/ico_section01_li5.png") center center no-repeat;
}

.main_section.section01 .about-list>li:nth-child(5):hover .ico-wrap i {
    background-image: url("../images/ico_section01_li5_on.png");
}

.main_section.section01 .about-list>li:nth-child(6) .ico-wrap i {
    background: url("../images/ico_section01_li6.png") center center no-repeat;
    width: 66px;
    height: 77px;
}

.main_section.section01 .about-list>li:nth-child(6):hover .ico-wrap i {
    background-image: url("../images/ico_section01_li6_on.png");
}

/* main section02 */
.main_section.section02 {
    background: url("../images/bg_section02.jpg") center no-repeat;
    background-size: cover;
}

.main_section.section02 .scr-list {
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 0;
}

.main_section.section02 .scr-list li {
    width: 25%;
    padding: 0 10px;
    flex: auto;
}

@media (max-width: 767px) {
    .main_section.section02 .scr-list li {
        width: 50%;
        margin-bottom: 30px;
    }
}

.main_section.section02 .scr-list li:hover a {
    background-color: #0068b7;
}

.main_section.section02 .scr-list li a {
    display: block;
    height: 100%;
    background: #363636;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_section.section02 .scr-list li a .img_wrap {
    width: 100%;
}

.main_section.section02 .scr-list li a .img_wrap img {
    width: 100%;
    height: 100%;
}

.main_section.section02 .scr-list li a h3 {
    line-height: 3;
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

@media (max-width: 1199px) {
    .main_section.section02 .scr-list li a h3 {
        padding: 15px 0;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .main_section.section02 .scr-list li a h3 {
        font-size: 12px;
    }
}

/* main section03 */
.main_section.section03 {
    background: url("../images/bg_section03.jpg") center no-repeat;
    background-size: cover;
}

.main_section.section03 h2 strong {
    color: #fff;
}

.main_section.section03 h2 span {
    color: #fff;
}

.main_section.section03 .btn-viewmore {
    display: inline-block;
    min-width: 190px;
    height: 55px;
    line-height: 55px;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    padding: 0 20px;
    background: #0068b7;
}

.main_section.section03 .btn-viewmore img {
    vertical-align: middle;
    margin-left: 50px;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

.main_section.section03 .btn-viewmore:hover img {
    margin-left: 60px;
}

/* main section04 */
.main_section.section04 h2 strong {
    color: #111;
}

.main_section.section04 .news-list li {
    float: left;
    width: 33.33333%;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .main_section.section04 .news-list li {
        padding: 0 5px;
    }
}

@media (max-width: 575px) {
    .main_section.section04 .news-list li {
        float: none;
        width: 100%;
        padding: 0;
        margin-bottom: 50px;
    }
}

.main_section.section04 .news-list li:hover .img-wrap img {
    transform: translate(-50%, -50%) scale(1.1);
}

.main_section.section04 .news-list li a {
    display: block;
    position: relative;
    border: 1px solid #eee;
}

.main_section.section04 .news-list li a .ico-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -45px;
    z-index: 1;
    width: 90px;
    height: 90px;
    border-radius: 90px;
    border: 1px solid #eee;
    background: #fff;
}

@media (max-width: 767px) {
    .main_section.section04 .news-list li a .ico-wrap {
        width: 70px;
        height: 70px;
        border-radius: 70px;
    }
}

.main_section.section04 .news-list li a .ico-wrap img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

@media (max-width: 767px) {
    .main_section.section04 .news-list li a .ico-wrap img {
        transform: translate3d(-50%, -50%, 0) scale(0.7);
    }
}

.main_section.section04 .news-list li a .txt-wrap {
    padding: 70px 20px;
    text-align: center;
    max-height: 200px;
}

@media (max-width: 767px) {
    .main_section.section04 .news-list li a .txt-wrap {
        padding: 50px 10px;
        max-height: 160px;
    }
}

@media (max-width: 575px) {
    .main_section.section04 .news-list li a .txt-wrap {
        min-height: auto;
        padding: 30px 10px;
    }
}

.main_section.section04 .news-list li a .txt-wrap h3 {
    font-size: 25px;
    color: #111;
    font-weight: 500;
}

@media (max-width: 767px) {
    .main_section.section04 .news-list li a .txt-wrap h3 {
        font-size: 20px;
    }
}

.main_section.section04 .news-list li a .txt-wrap h3 span {
    display: block;
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 25px;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .main_section.section04 .news-list li a .txt-wrap h3 span {
        font-size: 14px;
        line-height: 20px;
    }
}

.main_section.section04 .news-list li a .img-wrap {
    padding-bottom: 50%;
}

.main_section.section04 .news-list li a .img-wrap img {
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

/* ---------------------------------- sub page */
/*
  sub layout
*/
#subWrap {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    #subWrap {
        width: 100%;
    }
}

sub,
sup {
    font-size: 75% !important;
}

.sup {
    vertical-align: super;
}

.ce_item {
    opacity: 0;
}

.mt40_20 {
    margin-top: 40px;
}

.mt0 {
    margin-top: 0 !important;
}

.t_c {
    text-align: center !important;
}

.t_l {
    text-align: left !important;
}

.t_r {
    text-align: right !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.bg_f2f2f2 {
    background-color: #f2f2f2;
}

.w100 {
    width: 100% !important;
}

.sub-visual {
    display: table;
    width: 100%;
    height: 280px;
    text-align: center;
}

.sub-visual.sub01 {
    background: url("../images/bg_sub_visual_01.jpg") no-repeat center/cover;
}

.sub-visual.sub02 {
    background: url("../images/bg_sub_visual_02.jpg") no-repeat center/cover;
}

.sub-visual.sub03 {
    background: url("../images/bg_sub_visual_03.jpg") no-repeat center/cover;
}

.sub-visual.sub04 {
    background: url("../images/bg_sub_visual_04.jpg") no-repeat center/cover;
}

.sub-visual>div {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding-bottom: 10px;
}

.sub-visual h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 1;
    color: #fff;
}

@media (max-width: 991px) {
    .sub-visual {
        height: 270px;
    }

    .sub-visual>div {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .mt40_20 {
        margin-top: 20px;
    }

    .sub-visual {
        height: 200px;
    }

    .sub-visual h2 {
        font-size: 20px;
    }
}

/* location */
.location-wrap {
    position: relative;
    width: 100%;
    font-family: 'Noto Sans KR', 'Montserrat';
    background-color: #0068b7;
}

.location-wrap ul.location-ul {
    width: 1420px;
    margin: 0 auto;
    font-size: 0;
    line-height: 0;
}

@media (max-width: 1199px) {
    .location-wrap ul.location-ul {
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }
}

@media (max-width: 575px) {
    .location-wrap ul.location-ul {
        padding: 0 10px;
    }
}

.location-wrap ul.location-ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.location-wrap ul.location-ul>li:before {
    position: absolute;
    top: 50%;
    right: 15px;
    content: "";
    width: 13px;
    height: 7px;
    background: url(../images/ico_navigation_arrow.png) no-repeat center;
    margin-top: -3.5px;
    pointer-events: none;
    z-index: 1;
}

.location-wrap ul.location-ul>li.location-home a {
    display: flex;
    padding: 0;
    min-width: 65px;
    height: 60px;
    text-align: center;
    border-left: 0;
    align-items: center;
    justify-content: center;
}

.location-wrap ul.location-ul>li.location-home:before {
    display: none;
}

.location-wrap li a {
    display: block;
    padding: 0 40px 0 20px;
    min-width: 160px;
    font-size: 15px;
    line-height: 60px;
    word-break: keep-all;
    font-weight: 300;
    color: #fff;
    position: relative;
}

@media (max-width: 575px) {
    .location-wrap li a {
        font-size: 12px;
        padding: 0 30px 0 10px;
    }
}

.location-wrap li a:after {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background-color: #fff;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.location-wrap ul.location-ul>li:last-child>a,
.location-wrap ul.location-ul>li.on>a {
    background: #0068b7;
}

.location-wrap .location-depth2 {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
}

.location-wrap .location-depth2 a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    line-height: 15px;
    color: #333;
}

.location-wrap .location-depth2 li.on a {
    color: #0068b7 !important;
    font-weight: 500;
}

/* 2depth */
@media (min-width: 1200px) {

    .location-wrap li:not(.location-home) a:hover,
    .location-wrap ul.location-ul>li:last-child>a:hover {
        background: #0068b7;
    }

    .location-wrap .location-depth2 li:not(.location-home) a:hover {
        background: #f1f1f1;
        color: #000;
    }
}

@media (max-width: 767px) {
    .location-wrap ul.location-ul>li {
        display: none;
    }

    .location-wrap ul.location-ul>li.location-home {
        display: inline-block;
    }

    .location-wrap ul.location-ul>li:last-of-type {
        display: inline-block;
        width: calc(100% - 70px);
    }

    .location-wrap ul.location-ul>li:last-of-type>a {
        background: #0068b7;
        text-align: center;
    }

    .location-wrap li a {
        line-height: 50px;
    }

    .location-wrap ul.location-ul>li.location-home a {
        min-width: 55px;
        height: 50px;
    }

    .location-wrap ul.location-ul>li.location-home img {
        width: 16px;
    }

    .location-wrap .location-depth2 {
        top: 50px;
    }
}

/*
  --- sub conts
*/
#subConts {
    width: 100%;
}

@media (max-width: 1199px) {
    #subConts {
        float: none;
        width: 100%;
    }
}

.YouTubePopUp-Close:before {
    content: 'X';
    position: relative;
    top: -10px;
    font-weight: 300;
    font-size: 35px;
    font-family: 'NanumSquare';
    color: #fff;
}

/* question */
.qtable {
    max-width: 600px;
    margin: 0 auto;
}

.qtable table {
    width: 100%;
}

.qtable table tr th,
.qtable table tr td {
    padding: 10px;
    vertical-align: middle;
}

.qtable table tr th {
    font-size: 0;
}

.qtable table tr td {
    text-align: right;
}

.q_name--fc {
    display: inline-block;
    font-size: 16px;
    color: #666;
    vertical-align: middle;
}

.q_num--fc {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    line-height: 20px;
    text-align: center;
    background-color: #999;
    color: #fff;
    font-size: 13px;
    margin-right: 10px;
}

.qtable .board-write-btn-wrap--fc {
    margin: 20px 0 30px;
    padding-top: 35px;
    border-top: 1px solid #ddd;
}

.qtable .board-write-btn-wrap--fc .btn-cancel--fc {
    background: #fff;
    color: #464646;
    border: 1px solid #d2d2d3;
}

.qtable .board-write-btn-wrap--fc .btn-confirm--fc {
    background: #ffa500;
    border: 1px solid #ffa500;
}

.qtable .jq-star {
    width: 30px !important;
    height: 30px !important;
}

@media (max-width: 767px) {
    .qtable table {
        display: block;
    }

    .qtable table tbody {
        display: block;
    }

    .qtable table tr {
        display: block;
    }

    .qtable table tr th {
        display: block;
    }

    .qtable table tr td {
        display: block;
        padding: 0 10px 20px 10px;
    }
}

/* 회원가입 */
#displaySearch,
#displaySearchCount {
    margin-right: 0 !important;
}

@media (max-width: 767px) {
    #zipcode {
        width: 60% !important;
        margin-bottom: 5px;
    }

    .member-wrap .form-table {
        display: block;
        width: 100%;
    }

    .member-wrap .form-table tbody {
        display: block;
        width: 100%;
    }

    .member-wrap .form-table tr {
        display: block;
        width: 100%;
    }

    .member-wrap .form-table tr th,
    .member-wrap .form-table tr td {
        display: block;
        width: 100%;
    }

    .member-wrap .form-table tr th {
        padding: 20px 10px 0 !important;
        background: #fff;
    }

    .member-wrap .form-table tr td {
        margin-bottom: 20px;
    }

    #displaySearch {
        margin-right: 5px !important;
    }

    .member-wrap .form-table tr td input+input {
        margin-top: 5px;
    }
}

/*  */
.sub_data__tit {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    padding-left: 20px;
    color: #333;
    margin: 60px 0 30px;
}

.sub_data__tit:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 4px;
    height: 25px;
    background-color: #0068b7;
}

.sub_data__tit span {
    font-weight: 400;
}

.sub_data__txt {
    font-size: 18px;
    font-weight: 350;
    color: #333;
}

.dtable {
    overflow-x: auto;
}

.dtable table {
    width: 100%;
    border-top: 2px solid #0068b7;
}

.dtable table tbody tr th,
.dtable table tbody tr td {
    font-size: 18px;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    vertical-align: middle;
}

.dtable table tbody tr th:last-child,
.dtable table tbody tr td:last-child {
    border-right: 1px solid #e9e9e9;
}

.dtable table tbody tr th {
    color: #333;
    font-weight: 400;
    background-color: #f4f5f7;
}

.dtable table tbody tr td {
    color: #444;
    font-weight: 300;
    background-color: #fff;
}

.bullet_ul li {
    position: relative;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 350;
    color: #333;
}

.bullet_ul li+li {
    margin-top: 5px;
}

.bullet_ul li:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #333;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .sub_data__tit {
        font-size: 16px;
        margin: 30px 0 15px;
        padding-left: 10px;
    }

    .sub_data__tit:before {
        top: 6px;
        width: 3px;
        height: 14px;
    }

    .sub_data__txt {
        font-size: 14px;
    }

    .dtable table tbody tr th,
    .dtable table tbody tr td {
        font-size: 12px;
        padding: 10px;
    }

    .bullet_ul li {
        font-size: 14px;
    }

    .bullet_ul li:before {
        top: 9px;
        width: 3px;
        height: 3px;
    }
}

/* shop */
.category_list--fc {
    display: flex;
}

.category_list--fc>li {
    flex: 1;
    text-align: center;
    color: #666;
}

.category_list--fc>li a {
    position: relative;
    display: flex;
    border: 1px solid #dadada;
    border-right-width: 0;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 350;
    padding: 16px 10px;
}

.category_list--fc>li.on a {
    color: #111 !important;
    font-weight: 700;
    border-bottom-color: transparent;
}

.category_list--fc>li.on a:after {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    height: 2px;
    background-color: #0068b7;
}

.category_list--fc>li:last-child a {
    border-right-width: 1px;
}

@media (min-width: 1200px) {
    .category_list--fc>li a:hover {
        background-color: #f7f7f7;
    }
}

@media (max-width: 767px) {
    .category_list--fc {
        flex-wrap: wrap;
    }

    .category_list--fc>li {
        flex: auto;
        padding: 1px;
    }

    .category_list--fc>li a {
        font-size: 12px;
        padding: 5px;
        border: 1px solid #dadada;
    }

    .category_list--fc>li.on a {
        border-bottom-color: #dadada;
    }
}

.img_full_wrap {
    font-size: 0;
    text-align: center;
}

figure.img_full_wrap figcaption {
    font-size: 0;
    color: transparent;
    background: none;
    text-indent: -9999px;
    line-height: 0;
    width: 0;
    height: 0;
    border: 0;
    overflow: hidden;
}

figure.img_full_wrap figcaption * {
    font-size: 0;
    color: transparent;
    background: none;
    text-indent: -9999px;
    line-height: 0;
    width: 0;
    height: 0;
    border: 0;
    overflow: hidden;
}

.subCommon--fc h2 {
    position: relative;
    font-size: 50px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .subCommon--fc h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .subCommon--fc h2 {
        font-size: 20px;
        margin-bottom: 30px;
        margin-top: 30px;
    }
}

.subCommon--fc h2 span {
    display: block;
    font-size: 16px;
    color: #0068b7;
}

.cateBox {
    border-top: 1px solid #dadada;
    padding-top: 50px;
    margin-bottom: 50px;
    display: none;
}

.sub-cont-section {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .sub-cont-section {
        padding: 50px 0;
    }
}

.sub-cont-section.section-01 {
    padding-top: 0;
}

.sub-cont-section:last-of-type {
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .sub-cont-section:last-of-type {
        padding-bottom: 50px;
    }
}

.tab_btn_box {
    background-color: #f2f2f2;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    margin-bottom: 80px;
}

.tab_btn_box>ul {
    font-size: 0;
    text-align: center;
}

.tab_btn_box>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 55px;
}

.tab_btn_box>ul>li:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 8px;
    height: 1px;
    background-color: #dadada;
    margin-left: -4px;
}

.tab_btn_box>ul>li>a {
    position: relative;
    display: block;
    font-size: 17px;
    font-weight: 350;
    color: #666;
    padding: 22px 5px;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
}

.tab_btn_box>ul>li>a.on {
    font-weight: 400;
    color: #0068b7;
    border-bottom: 1px solid #0068b7;
}

.tab_btn_box>ul>li>a.on:before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    border-top: 8px solid #0068b7;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    margin-left: -5px;
}

.tab_btn_box>ul>li>a.on:after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    border-top: 7px solid #fff;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    margin-left: -4px;
}

.tab_conts_box>ul>li {
    display: block;
}

.tab_conts_box>ul>li:not(:first-child) {
    display: none;
}

.sub_cont_tit {
    font-size: 30px;
    font-weight: 350;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .cateBox {
        padding-top: 25px;
        margin-bottom: 25px;
    }

    .sub-cont-section {
        padding: 50px 0;
    }

    .sub-cont-section.section-01 {
        padding-top: 0;
    }

    .sub-cont-section:last-of-type {
        padding-bottom: 60px;
    }

    .tab_btn_box {
        margin-bottom: 40px;
    }

    .tab_btn_box>ul>li {
        padding: 0 20px;
    }

    .tab_btn_box>ul>li>a {
        font-size: 12px;
        padding: 5px 3px;
    }

    .sub_cont_tit {
        font-size: 17px;
        margin-bottom: 15px;
    }
}

/* ISO */
.iso_top {
    position: relative;
}

.iso_top__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
}

.iso_top__inner h3 {
    font-size: 25px;
    font-weight: 700;
}

.iso_top__inner p {
    font-size: 18px;
    font-weight: 350;
}

.iso_top__inner p:before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    margin: 0 auto 20px;
    background-color: #fff;
}

.iso_top__inner h3+p:before {
    margin-top: 30px;
}

.iso_icon_layout>ul {
    display: flex;
    flex-wrap: wrap;
    margin: -20px -20px 0;
}

.iso_icon_layout>ul>li {
    width: 50%;
    padding: 20px;
}

.iso_icon_layout__inner {
    display: table;
    padding: 30px 40px 30px 50px;
    background-color: #f2f2f2;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

.iso_icon_layout__inner__txt {
    display: table-cell;
    color: #333;
    padding-right: 30px;
    vertical-align: middle;
}

.iso_icon_layout__inner__txt h6 {
    font-size: 18px;
    font-weight: 500;
}

.iso_icon_layout__inner__txt p {
    font-size: 17px;
    font-weight: 350;
}

.iso_icon_layout__inner figure {
    display: table-cell;
    width: 120px;
    vertical-align: middle;
    text-align: center;
}

.iso_icon_layout.type_02 .iso_icon_layout__inner {
    background-color: #fff;
    border-top: 2px solid #0068b7;
}

.iso_icon_layout.type_02 .iso_icon_layout__inner__txt {
    vertical-align: top;
}

.iso_icon_layout.type_02 .iso_icon_layout__inner__txt h6 {
    margin-bottom: 20px;
    font-size: 22px;
}

.iso_icon_layout.type_02 .iso_icon_layout__inner figure {
    vertical-align: bottom;
    text-align: right;
}

.iso_icon_layout.type_02 .iso_icon_layout__inner figure img {
    margin-top: 70px;
}

.general_p {
    font-size: 16px;
    font-weight: 350;
    color: #333;
    letter-spacing: -.5px;
}

.img_tit {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.iso_icon_layout02>ul {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    margin: 0 -13px;
}

.iso_icon_layout02>ul>li {
    width: 33.333333%;
    padding: 0 13px;
    margin-top: 65px;
}

.iso_icon_layout02__inner {
    height: 100%;
    background-color: #fff;
    padding: 25px 20px;
}

.iso_icon_layout02__inner figure {
    font-size: 0;
    margin-top: -65px;
}

.iso_icon_layout02__inner p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 350;
    color: #333;
    letter-spacing: -.5px;
}

.img_table_layout {
    display: flex;
    width: 100%;
    table-layout: fixed;
    align-items: center;
}

.img_table_layout__img {
    width: 50%;
    font-size: 0;
    vertical-align: middle;
    text-align: center;
}

.img_table_layout__img p {
    font-size: 18px;
    font-weight: 300;
    color: #333;
    margin-top: 10px;
}

.img_table_layout__txt {
    width: 50%;
    vertical-align: middle;
    padding: 50px;
    padding-right: 0;
    font-size: 18px;
    font-weight: 350;
    color: #333;
}

.img_table_layout.type_reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.img_table_layout.type_reverse>div:first-child {
    /*
        order: 2;
        margin-left: auto;
      */
}

.img_table_layout.type_reverse .img_table_layout__txt {
    padding-right: 50px;
    padding-left: 0;
}

.img_table_layout+.img_table_layout {
    margin-top: 80px;
}

.type_num {
    position: relative;
    padding-left: 70px;
}

.type_num>div {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #4d4d4d;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.type_num>div strong {
    display: inline-block;
    font-size: 18px;
    font-weight: 350;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 2px solid #b8b8b8;
    line-height: 1;
}

.img_table_layout__txt h6 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .img_table_layout {
        align-items: flex-start;
    }

    .img_table_layout__img {
        vertical-align: top;
    }

    .img_table_layout__txt {
        vertical-align: top;
        padding-top: 0;
        padding-bottom: 0;
    }

    .img_table_layout.type_reverse {
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    .iso_icon_layout>ul {
        margin: -10px -10px 0;
    }

    .iso_icon_layout>ul>li {
        padding: 10px;
    }

    .iso_icon_layout__inner {
        display: block;
        padding: 30px 40px;
    }

    .iso_icon_layout__inner__txt {
        display: block;
        padding-right: 0;
        text-align: center;
    }

    .iso_icon_layout__inner figure {
        display: block;
        width: auto;
        margin-top: 20px;
    }

    .iso_icon_layout.type_02 .iso_icon_layout__inner {
        position: relative;
    }

    .iso_icon_layout.type_02 .iso_icon_layout__inner__txt {
        text-align: left;
        padding-right: 60px;
    }

    .iso_icon_layout.type_02 .iso_icon_layout__inner figure {
        position: absolute;
        right: 30px;
        bottom: 30px;
        margin-top: 0;
        width: 60px;
    }

    .iso_icon_layout.type_02 .iso_icon_layout__inner figure img {
        margin-top: 0;
        max-height: 65px;
    }
}

@media (max-width: 767px) {
    .iso_top__inner {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        color: #333;
        margin-top: 20px;
    }

    .iso_top__inner h3 {
        font-size: 15px;
    }

    .iso_top__inner p {
        font-size: 14px;
    }

    .iso_top__inner p:before {
        width: 20px;
        margin: 0 auto 8px;
        background-color: #333;
    }

    .iso_top__inner h3+p:before {
        margin-top: 8px;
    }

    .iso_icon_layout>ul {
        display: block;
        margin: 0;
    }

    .iso_icon_layout>ul>li {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .iso_icon_layout__inner {
        padding: 20px;
    }

    .iso_icon_layout__inner__txt h6,
    .iso_icon_layout__inner__txt p {
        font-size: 14px;
    }

    .iso_icon_layout__inner figure {
        width: 60px;
        margin: 20px auto 0;
    }

    .iso_icon_layout.type_02 .iso_icon_layout__inner__txt {
        padding-right: 0;
    }

    .iso_icon_layout.type_02 .iso_icon_layout__inner__txt h6 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .iso_icon_layout.type_02 .iso_icon_layout__inner figure {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 20px 0 0 auto;
    }

    .general_p {
        font-size: 14px;
    }

    .img_tit {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .iso_icon_layout02>ul {
        display: block;
        margin: 0;
    }

    .iso_icon_layout02>ul>li {
        width: 100%;
        padding: 0;
        margin-top: 40px;
    }

    .iso_icon_layout02__inner {
        padding: 20px;
    }

    .iso_icon_layout02__inner figure {
        max-width: 40px;
        margin: -40px auto 0;
    }

    .iso_icon_layout02__inner p {
        font-size: 14px;
        margin-top: 8px;
    }

    .img_table_layout {
        display: block;
    }

    .img_table_layout__img,
    .img_table_layout__txt {
        display: block;
        width: 100%;
    }

    .img_table_layout__img p {
        font-size: 15px;
        margin-top: 5px;
    }

    .img_table_layout__txt {
        margin-top: 20px;
        font-size: 14px;
        padding: 0;
    }

    .img_table_layout.type_reverse {
        display: block;
        width: 100%;
    }

    .img_table_layout.type_reverse .img_table_layout__txt {
        padding-right: 0;
        padding-left: 0;
    }

    .img_table_layout+.img_table_layout {
        margin-top: 40px;
    }

    .type_num {
        padding-left: 40px;
    }

    .type_num>div {
        width: 30px;
        height: 30px;
    }

    .type_num>div strong {
        font-size: 14px;
        padding-bottom: 4px;
        border-bottom-width: 1px;
    }

    .img_table_layout__txt h6 {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

/* 경영이념 */
.philosophy_comment {
    margin-top: 70px;
}

.philosophy_comment>ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.philosophy_comment>ul>li {
    margin-top: 30px;
    padding: 0 15px;
    width: 33.333333%;
}

.philosophy_comment__inner {
    padding: 30px 20px 50px;
    background-color: #f2f2f2;
    height: 100%;
}

.philosophy_comment__inner figure {
    text-align: center;
    font-size: 0;
}

.philosophy_comment__inner h6 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 20px 0 30px;
}

.philosophy_comment__inner .bullet_ul li {
    font-size: 16px;
}

@media (max-width: 767px) {
    .philosophy_comment {
        margin-top: 50px;
    }

    .philosophy_comment>ul {
        display: block;
        margin: 0;
    }

    .philosophy_comment>ul>li {
        margin-top: 20px;
        padding: 0;
        width: 100%;
    }

    .philosophy_comment__inner {
        padding: 20px 20px 25px;
    }

    .philosophy_comment__inner figure {
        width: 70px;
        margin: 0 auto;
    }

    .philosophy_comment__inner h6 {
        font-size: 15px;
        margin: 10px 0 15px;
    }

    .philosophy_comment__inner .bullet_ul li {
        font-size: 14px;
    }
}

/* R&D */
.bg_rnd {
    background: url("../images/bg_rnd.png") no-repeat bottom center/cover;
}

.rnd_txtbox {
    background-color: #f2f2f2;
    padding: 30px 0;
    font-size: 0;
    margin-bottom: 30px;
}

.rnd_txtbox dl {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    text-align: center;
    padding: 0 20px;
}

.rnd_txtbox dl dt {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
}

.rnd_txtbox dl dd {
    font-size: 18px;
    font-weight: 300;
    color: #555;
}

@media (max-width: 767px) {
    .rnd_txtbox {
        margin-bottom: 15px;
        padding: 20px 0;
    }

    .rnd_txtbox dl {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }

    .rnd_txtbox dl dt {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .rnd_txtbox dl dd {
        font-size: 14px;
    }
}

/* 제품사양 테이블 */
.m_scroll {
    position: relative;
    margin: auto;
    overflow: hidden;
    border: 0;
}

.btable {
    width: 100%;
}

.m_scroll table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.m_scroll.scroll_x .btable {
    overflow-x: auto;
}

.m_scroll.scroll_x table {
    min-width: 850px;
}

.m_scroll th,
.m_scroll td {
    padding: 5px 10px;
    border: 0;
    color: #444;
    text-align: center;
    font-size: 13px;
    font-weight: 350;
    vertical-align: middle;
    border-right: 1px solid #fff;
}

.m_scroll tr th:last-child,
.m_scroll tr td:last-child {
    border-right: 0;
}

.m_scroll tr:nth-child(odd) td {
    background: #d7d7d7;
}

.m_scroll tr:nth-child(even) td {
    background: #ebebeb;
}

.m_scroll thead {
    background: transparent;
}

.m_scroll thead th {
    background: #fff;
    padding: 20px;
}

.m_scroll thead th figure {
    font-size: 0;
    text-align: center;
}

.m_scroll thead th figure figcaption {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
}

.btable_clone {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.btable_clone th {
    visibility: hidden;
}

.btable_clone td {
    visibility: hidden;
    border-color: transparent;
}

.btable_clone th {
    border-color: transparent;
}

.btable_clone tbody th {
    visibility: visible;
}

.btable_clone .fixed_side {
    border: 0;
    visibility: visible;
}

.btable_clone thead .fixed_side {
    background: #fff;
}

.m_scroll tbody tr:nth-child(odd) .fixed_side {
    background: #0068b7;
    color: #fff;
}

.m_scroll tbody tr:nth-child(even) .fixed_side {
    background: #ebebeb;
    color: #0068b7;
}

.btable_clone thead {
    background: transparent;
}

.m_scroll .fixed_side,
.btable_clone .fixed_side {
    border-right: 5px solid #fff;
    width: 118px;
}

/* 오시는길 */
.location_section__top ul {
    text-align: center;
    font-size: 0;
}

.location_section__top ul li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 60px;
    margin-bottom: 20px;
}

.location_section__top ul li+li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 20px;
    margin-top: -10px;
    background-color: #dadada;
}

.location_section__top ul li img {
    display: inline-block;
    vertical-align: middle;
}

.location_section__top ul li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    font-weight: 300;
    color: #111;
    margin-left: 10px;
}

.location_section__inner #map1 {
    height: 470px !important;
}

.location_section_layout {
    margin-top: 30px;
    font-size: 0;
}

.location_section__subway {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.location_section__tit {
    margin-bottom: 20px;
}

.location_section__tit img {
    display: inline-block;
    vertical-align: middle;
}

.location_section__tit span {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-left: 10px;
}

.location_section__subway ul li {
    display: inline-block;
    vertical-align: middle;
}

.location_section__subway ul li+li {
    margin-left: 30px;
}

.subway_line {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border-radius: 50%;
}

.subway_line+.subway_line {
    margin-left: 5px;
}

.subway_line.type01 {
    background-color: #0052A4;
}

.subway_line.type02 {
    background-color: #009D3E;
}

.subway_line.type03 {
    background-color: #EF7C1C;
}

.subway_line.type04 {
    background-color: #00A5DE;
}

.subway_line.type05 {
    background-color: #996CAC;
}

.subway_line.type06 {
    background-color: #CD7C2F;
}

.subway_line.type07 {
    background-color: #747F00;
}

.subway_line.type08 {
    background-color: #EA545D;
}

.subway_line.type09 {
    background-color: #BDB092;
}

.subway_name {
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    font-weight: 300;
    color: #333;
    margin-left: 10px;
}

.location_section__bus {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.location_section__bus ul li {
    position: relative;
    padding-left: 60px;
    min-height: 26px;
}

.location_section__bus ul li+li {
    margin-top: 8px;
}

.bus_line {
    position: absolute;
    display: inline-block;
    top: 1px;
    left: 0;
    width: 50px;
    height: 25px;
    border-radius: 3px;
    color: #fff;
    line-height: 25px;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}

.bus_line.type01 {
    background-color: #7182f6;
}

.bus_line.type02 {
    background-color: #58b034;
}

.bus_line.type03 {
    background-color: #ac8975;
}

.bus_line.type04 {
    background-color: #00b0ad;
}

.bus_number {
    font-size: 17px;
    font-weight: 300;
    color: #333;
}

@media (max-width: 1199px) {
    .location_section__top ul li {
        padding: 0 30px;
    }
}

@media (max-width: 767px) {
    .location_section__top ul {
        margin-bottom: 20px;
    }

    .location_section__top ul li {
        display: block;
        padding: 0;
        margin-bottom: 0;
    }

    .location_section__top ul li+li {
        margin-top: 5px;
    }

    .location_section__top ul li+li:before {
        display: none;
    }

    .location_section__top ul li img {
        height: 15px;
    }

    .location_section__top ul li span {
        font-size: 14px;
    }

    .location_section__inner #map1 {
        height: 320px !important;
    }

    .location_section_layout {
        margin-top: 20px;
    }

    .location_section__subway {
        display: block;
        width: 100%;
    }

    .location_section__tit {
        margin-bottom: 10px;
    }

    .location_section__tit img {
        max-height: 20px;
        max-width: 18px;
    }

    .location_section__tit span {
        font-size: 15px;
    }

    .location_section__subway ul li {
        display: block;
    }

    .location_section__subway ul li+li {
        margin-left: 0;
        margin-top: 10px;
    }

    .subway_line {
        width: 20px;
        height: 20px;
        font-size: 12px;
        line-height: 20px;
    }

    .subway_name {
        font-size: 14px;
    }

    .location_section__bus {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .location_section__bus ul li {
        padding-left: 45px;
        min-height: 21px;
    }

    .location_section__tit {
        margin-bottom: 10px;
    }

    .bus_line {
        width: 35px;
        height: 20px;
        line-height: 20px;
    }

    .bus_number {
        font-size: 14px;
    }
}

/* business */
.bg_shipyard_consulting {
    background: url("../images/bg_shipyard_consulting.jpg") no-repeat bottom center/cover;
}

.shipyard_consulting_section02 {
    display: table;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

.shipyard_consulting_section02__img {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    font-size: 0;
    text-align: center;
}

.shipyard_consulting_section02__img img {
    opacity: 0;
}

.shipyard_consulting_section02__txt {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding: 50px;
    padding-right: 0;
}

.shipyard_consulting_section02__txt__inner h6 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 500;
}

.shipyard_consulting_section02__txt__inner h6 small {
    font-size: smaller;
}

.img_flex_layout {
    margin-top: 80px;
}

.img_flex_layout ul {
    display: flex;
    justify-content: center;
    text-align: center;
}

.img_flex_layout ul+ul {
    margin-top: 50px;
}

.img_flex_layout ul li {
    flex: 1;
}

.img_flex_layout ul li+li {
    margin-left: 40px;
}

.img_flex_layout ul li p {
    font-size: 18px;
    font-weight: 300;
    color: #333;
    margin-top: 10px;
}

.sns_slider ul {
    padding: 0 40px;
}

.sns_slider .slick-prev,
.sns_slider .slick-next {
    width: 24px;
    height: 40px;
}

.sns_slider .slick-prev {
    background: url(../images/icon_cnc_slider_prev.png) no-repeat center;
    left: 0;
}

.sns_slider .slick-next {
    background: url(../images/icon_cnc_slider_next.png) no-repeat center;
    right: 0;
}

.sns_slider .slick-slide img {
    margin: 0 auto;
}

.business_video {
    margin-top: 60px;
    text-align: center;
}

.business_video video {
    max-width: 100%;
}

.co2_mig_flex {
    display: flex;
}

.co2_mig_flex>div:first-child {
    padding-right: 25px;
}

.co2_mig_flex>div:last-child {
    padding-left: 25px;
}

.co2_mig_flex>.m_scroll {
    width: 440px;
}

.co2_mig_flex__img {
    width: calc(100% - 440px);
}

@media (min-width: 1200px) {

    .sns_slider .slick-prev:hover,
    .sns_slider .slick-next:hover {
        opacity: .6;
    }
}

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

    .shipyard_consulting_section02__img {
        display: block;
        width: 100%;
        background: none !important;
    }

    .shipyard_consulting_section02__img img {
        opacity: 1;
    }

    .shipyard_consulting_section02__txt {
        display: block;
        width: 100%;
        padding: 30px 20px;
    }

    .co2_mig_flex {
        display: block;
    }

    .co2_mig_flex>div:first-child {
        padding-right: 0;
    }

    .co2_mig_flex>div:last-child {
        padding-left: 0;
        margin-top: 30px;
    }

    .co2_mig_flex .m_scroll {
        width: 100%;
    }

    .co2_mig_flex__img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .shipyard_consulting_section02__txt__inner h6 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .img_flex_layout {
        margin-top: 40px;
    }

    .img_flex_layout ul+ul {
        margin-top: 25px;
    }

    .img_flex_layout ul li+li {
        margin-left: 20px;
    }

    .img_flex_layout ul li p {
        font-size: 15px;
        margin-top: 5px;
    }

    .sns_slider ul {
        padding: 0 20px;
    }

    .sns_slider .slick-prev,
    .sns_slider .slick-next {
        width: 12px;
        background-size: 100% !important;
    }

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

/* product */
.product_form_wrap--fc {
    margin-top: 80px;
}

.product_form__head--fc {
    text-align: center;
}

.product_form__head--fc>p {
    font-size: 18px;
    font-weight: 400;
    color: #222;
}

.product_form__head--fc>h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-top: 5px;
}

.product_form__head--fc>h2 small {
    display: block;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    margin-top: 10px;
}

.product_form__body--fc {
    margin-top: 50px;
}

.product_form__body__inner--fc {
    background-color: #f1f1f1;
    padding: 10px 0 60px;
}

.product_form__body__inner--fc figure {
    text-align: center;
    font-size: 0;
    padding: 0 240px;
}

.product_form__body__inner--fc figure img {
    max-width: 100%;
}

.product_form__contact--fc {
    font-size: 0;
    text-align: center;
    padding: 0 20px;
}

.product_form__contact--fc a {
    position: relative;
    display: inline-block;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    padding: 19px 70px 19px 30px;
    width: 100%;
    max-width: 250px;
    background: #3a3a3a;
    background: -webkit-linear-gradient(-45deg, #3a3a3a, #252525);
    background: -moz-linear-gradient(-45deg, #3a3a3a, #252525);
    background: -ms-linear-gradient(-45deg, #3a3a3a, #252525);
    background: -o-linear-gradient(-45deg, #3a3a3a, #252525);
    background: linear-gradient(to right bottom, #3a3a3a, #252525);
}

.icon_arrow_right {
    position: absolute;
    width: 21px;
    height: 15px;
    background: url("../images/icon_btn_arrow.png") no-repeat center/100%;
    top: 50%;
    right: 20px;
    margin-top: -7.5px;
}

.product_form__foot--fc {
    margin-top: 90px;
}

.sub-tab--fc:not(.type-main)>ul {
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #0068b7;
}

.sub-tab--fc:not(.type-main)>ul>li {
    display: inline-block;
    vertical-align: top;
    min-width: 90px;
    flex: auto;
    max-width: 216px;
    margin-bottom: -1px;
}

.sub-tab--fc:not(.type-main)>ul>li+li {
    margin-left: -1px;
}

.sub-tab--fc:not(.type-main)>ul>li>a {
    display: block;
    background-color: #f2f2f2;
    color: #555;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    padding: 14px;
    border: 1px solid #ccc;
    border-bottom: 1px solid #0068b7;
}

.sub-tab--fc:not(.type-main)>ul>li>a.on {
    background: #0068b7;
    color: #fff;
}

.sub-tab__conts--fc {
    padding-top: 40px;
}

.sub-tab__conts--fc>ul>li {
    display: block;
}

.sub-tab__conts--fc>ul>li:not(:first-child) {
    display: none;
}

.product_form__foot--fc .sub-tab02--fc .sub-tab__conts__inner--fc p {
    position: relative;
    font-size: 17px;
    font-weight: 400;
    color: #555;
    margin-top: 15px;
    padding-left: 20px;
}

.product_form__foot--fc .sub-tab02--fc .sub-tab__conts__inner--fc p:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 10px;
    height: 1px;
    background-color: #0068b7;
}

.sub-tab__conts__inner--fc iframe {
    display: block;
    width: 100%;
    max-width: 560px;
    height: 315px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .product_form__contact--fc a:hover {
        opacity: .9;
    }

    .sub-tab--fc:not(.type-main)>ul>li>a:hover {
        background-color: #0068b7;
        color: #fff;
    }
}

@media (max-width: 767px) {
    .product_form_wrap--fc {
        margin-top: 40px;
    }

    .product_form__head--fc>p {
        font-size: 15px;
    }

    .product_form__head--fc>h2 {
        font-size: 20px;
    }

    .product_form__head--fc>h2 small {
        font-size: 15px;
        margin-top: 5px;
    }

    .product_form__body--fc {
        margin-top: 25px;
    }

    .product_form__body__inner--fc {
        padding: 10px 0 30px;
    }

    .product_form__body__inner--fc figure {
        padding: 0 50px;
    }

    .product_form__contact--fc a {
        font-size: 12px;
        padding: 10px 30px 10px 15px;
        max-width: 120px;
    }

    .icon_arrow_right {
        width: 12px;
        right: 15px;
    }

    .product_form__foot--fc {
        margin-top: 25px;
    }

    .sub-tab--fc:not(.type-main)>ul {
        border-bottom: 0;
    }

    .sub-tab--fc:not(.type-main)>ul>li {
        padding: 3px;
        max-width: 100%;
    }

    .sub-tab--fc:not(.type-main)>ul>li>a {
        font-size: 12px;
        padding: 7px;
    }

    .sub-tab__conts--fc {
        padding-top: 20px;
    }
}

/* product list */
.products--fc.list2 {
    margin-top: 50px;
}

@media (max-width: 767px) {
    .products--fc.list2 {
        margin-top: 25px;
    }
}

.imgUl1--fc {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
}

.imgUl1--fc li {
    width: 25%;
    padding: 0 7px;
    margin-bottom: 30px;
}

.imgUl1__inner--fc {
    position: relative;
    text-align: center;
    height: 100%;
    border-bottom: 1px solid #dadada;
}

.imgUl1__inner--fc figure {
    font-size: 0;
    background-color: #f2f2f2;
}

.imgUl1__inner--fc figure img {
    max-width: 100%;
    max-height: 260px;
}

.imgUl1__inner--fc p {
    font-size: 17px;
    font-weight: 400;
    color: #333;
    padding: 12px 10px;
}

@media (min-width: 1200px) {
    .imgUl1__inner--fc:hover:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(229, 27, 36, 0.7) url("../images/icon_product_list_more.png") no-repeat center;
        -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 767px) {
    .imgUl1--fc li {
        width: 100%;
    }
}

/* history */
.history_wrap1--fc {
    overflow: hidden;
    padding-top: 60px;
    padding-left: 60px;
    margin-top: 50px;
    position: relative;
}

.history_wrap1--fc:before {
    content: "";
    display: block;
    width: 1px;
    min-height: 300px;
    max-height: 100%;
    height: 92%;
    background-color: #e4e4e4;
    position: absolute;
    left: 17px;
    top: 0;
}

.history_wrap1--fc:after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    border: 5px solid #0068b7;
    position: absolute;
    left: 5px;
    top: 0px;
    background-color: #fff;
}

.history_wrap1--fc .col-md-6 {
    display: block;
    padding: 0;
    flex: auto;
    max-width: none;
}

.history_wrap1--fc .offset-md-6 {
    margin-left: 0;
    width: 100%;
}

.history_wrap1--fc .col-md-6,
.history_wrap1--fc .offset-md-6 {
    margin-bottom: 50px;
    padding-top: 20px;
}

@media (max-width: 767px) {

    .history_wrap1--fc .col-md-6,
    .history_wrap1--fc .offset-md-6 {
        width: 100%;
    }
}

.history_wrap1--fc dl {
    clear: both;
}

.history_wrap1--fc dl dt,
.history_wrap1--fc dl dd {
    margin-bottom: 20px;
    color: #666;
    font-family: 'Noto Sans KR', 'Noto Sans JP';
}

.history_wrap1--fc dl dt {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    display: none;
}

.history_wrap1--fc dl dd {
    font-size: 18px;
    color: #111;
    position: relative;
    padding-left: 20px;
}

@media (max-width: 1199px) {
    .history_wrap1--fc dl dd {
        font-size: 16px;
    }
}

.history_wrap1--fc dl dd:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    border: 2px solid #111;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 9px;
}

.history_tit1--fc {
    font-weight: bold;
    font-size: 25px;
    color: #111;
    position: relative;
}

.history_tit1--fc:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    background-color: #e4e4e4;
    position: absolute;
    left: -50px;
    top: 12px;
    z-index: 1;
}

.history_tit1--fc:after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background-color: #e4e4e4;
    position: absolute;
    left: -40px;
    top: 18px;
}

/* history2 */
.history_line--fc {
    position: relative;
    display: block;
    width: 50%;
    padding-bottom: 30px;
}

.history_line--fc:nth-child(odd) {
    margin: 0 auto 0 0;
    padding-right: 30px;
}

.history_line--fc:nth-child(even) {
    display: block;
    margin: 0 0 0 auto;
    padding-left: 30px;
}

.history_line--fc:last-child {
    padding-bottom: 0;
}

.history_line--fc:before {
    content: "";
    position: absolute;
    top: 0;
    right: -.5px;
    bottom: 0;
    width: 1px;
    background-color: #bdbdbd;
    z-index: 1;
}

.history_line--fc:nth-child(even):before {
    right: auto;
    left: -.5px;
}

.history_line--fc:first-child:before {
    top: 10px;
}

.history_line--fc:last-child:before {
    bottom: auto;
    height: 10px;
}

.history_tit--fc {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    text-align: right;
    line-height: 1;
    margin-bottom: 5px;
}

.history_tit--fc:before {
    content: "";
    position: absolute;
    right: -30.5px;
    top: 13px;
    width: 26px;
    height: 1px;
    background-color: #bdbdbd;
    z-index: 1;
}

.history_tit--fc:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #0068b7;
    border: 2px solid #0068b7;
    border-radius: 50%;
    top: 9px;
    right: -35.5px;
    z-index: 2;
    box-sizing: content-box;
}

.history_line--fc:nth-child(even) .history_tit--fc {
    text-align: left;
}

.history_line--fc:nth-child(even) .history_tit--fc:before {
    right: auto;
    left: -30.5px;
}

.history_line--fc:nth-child(even) .history_tit--fc:after {
    right: auto;
    left: -35.5px;
}

.history_line--fc .offset-md-6 {
    text-align: right;
    word-break: keep-all;
    margin-left: 0;
}

.history_line--fc:nth-child(even) .offset-md-6 {
    text-align: left;
}

.history_line--fc dl {
    margin-top: 20px;
}

.history_line--fc dt {
    display: none;
}

.history_line--fc dd {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #333132;
    padding-left: 30px;
}

.history_line--fc dd span {
    position: absolute;
    top: 0;
    left: 0;
    color: #555;
}

.history_inner_img {
    width: 220px;
}

@media (max-width: 767px) {
    .history_line--fc {
        width: 100%;
        margin: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .history_line--fc:before {
        display: none;
    }

    .history_line--fc dl {
        margin-top: 10px;
    }

    .history_tit--fc {
        text-align: left;
        font-size: 18px;
    }

    .history_tit--fc:before,
    .history_tit--fc:after {
        display: none;
    }

    .history_line--fc .offset-md-6 {
        text-align: left;
    }

    .history_line--fc dd {
        font-size: 14px;
    }
}

/* sitemap */
.sitemap__nav__depth1 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.625rem;
}

.sitemap__nav__depth1>li {
    width: 25%;
    padding: 0 0.625rem;
    margin-bottom: 1.25rem;
}

.sitemap__nav__depth1>li>a {
    display: block;
    padding: 1.1875rem 0;
    background: #333;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1;
    color: #fff;
    border-left: 6px solid #0068b7;
    padding-left: 14px;
}

@media (min-width: 1200px) {
    .sitemap__nav__depth1>li>a:hover {
        background: #525252;
    }
}

@media (max-width: 991px) {
    .sitemap__nav__depth1>li {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .sitemap__nav__depth1>li {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .sitemap__nav__depth1 {
        margin: 0;
    }
}

.sitemap__nav__depth2 {
    padding: 1.25rem;
    font-size: 1.125rem;
}

.sitemap__nav__depth2>li+li {
    margin-top: 0.625rem;
}

.sitemap__nav__depth2>li>a {
    position: relative;
    display: inline-block;
    padding-left: 0.625rem;
}

.sitemap__nav__depth2>li>a:before {
    content: "";
    position: absolute;
    top: 0.6875rem;
    left: 0;
    width: 0.1875rem;
    height: 0.1875rem;
    border-radius: 50%;
    background-color: #0068b7;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

@media (min-width: 1200px) {
    .sitemap__nav__depth2>li>a:hover:before {
        top: 0;
        height: 100%;
        border-radius: 0;
    }
}

.sitemap__nav__depth3 {
    padding-left: 0.625rem;
    font-size: 1rem;
}

.sitemap__nav__depth3>li {
    margin-top: 0.3125rem;
}

.sitemap__nav__depth3>li>a {
    position: relative;
    display: inline-block;
    padding-left: 0.9375rem;
    color: #999;
}

.sitemap__nav__depth3>li>a:before {
    content: "-";
    position: absolute;
    top: -0.0625rem;
    left: 0;
}

@media (min-width: 1200px) {
    .sitemap__nav__depth3>li>a:hover {
        color: #333;
    }
}

/* board */
@media (max-width: 767px) {

    .basic-board-list--fc colgroup,
    .webzine-board-list--fc colgroup {
        display: none;
    }

    .basic-board-list--fc .no-data--fc td,
    .webzine-board-list--fc .no-data--fc td {
        width: 100%;
    }
}

/* company-overview */
.company-overview .section01 {
    background: url("../picture/bg_section01.jpg") center no-repeat;
    background-size: cover;
    padding: 0;
    font-size: 0;
    overflow: hidden;
}

.company-overview .section01 .left {
    float: left;
    width: 50%;
    padding-top: 100px;
}

@media (max-width: 1199px) {
    .company-overview .section01 .left {
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .company-overview .section01 .left {
        float: none;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .company-overview .section01 .left {
        padding-top: 50px;
        padding-bottom: 150px;
    }
}

.company-overview .section01 .left .txt1 {
    font-size: 38px;
    color: #111;
    font-weight: 350;
    line-height: 50px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .company-overview .section01 .left .txt1 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .company-overview .section01 .left .txt1 {
        font-size: 28px;
        line-height: 38px;
    }

    .company-overview .section01 .left .txt1 br {
        display: none;
    }
}

@media (max-width: 575px) {
    .company-overview .section01 .left .txt1 {
        font-size: 22px;
        line-height: 32px;
    }
}

.company-overview .section01 .left .txt1 strong {
    color: #0068b7;
}

.company-overview .section01 .left .txt1 span {
    font-weight: bold;
}

.company-overview .section01 .left .txt2 {
    font-size: 18px;
    color: #222;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .company-overview .section01 .left .txt2 {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .company-overview .section01 .left .txt2 {
        font-size: 14px;
        line-height: 22px;
    }
}

.company-overview .section01 .left .txt3 {
    font-size: 25px;
    color: #222;
    font-weight: 300;
    margin-bottom: 20px;
}

.company-overview .section01 .left .txt3 span {
    display: block;
    font-size: 20px;
}

@media (max-width: 1199px) {
    .company-overview .section01 .left .txt3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .company-overview .section01 .left .txt3 {
        font-size: 18px;
    }
}

.company-overview .section01 .left ul li {
    font-size: 18px;
    color: #444;
    font-weight: 300;
    position: relative;
    padding-left: 17px;
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .company-overview .section01 .left ul li {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .company-overview .section01 .left ul li {
        font-size: 14px;
        padding-left: 10px;
    }
}

.company-overview .section01 .left ul li:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background-color: #0068b7;
    position: absolute;
    left: 0;
    top: 11px;
}

@media (max-width: 575px) {
    .company-overview .section01 .left ul li:before {
        width: 2px;
        height: 2px;
        top: 9px;
    }
}

.company-overview .section01 .right {
    float: left;
    width: 50%;
    padding-top: 100px;
}

@media (max-width: 1199px) {
    .company-overview .section01 .right {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

.company-overview .section01 .right img {
    position: relative;
    top: 70px;
}

/* technology-introduction */
.technology-introduction .section01 {
    padding: 0;
}

.technology-introduction .section01 .img-box {
    background: url("../images/bg_section01.jpg") center no-repeat;
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}

.technology-introduction .section01 .img-box p {
    font-size: 30px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .technology-introduction .section01 .img-box p {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.technology-introduction .section01 .img-box ul {
    margin-bottom: 30px;
}

.technology-introduction .section01 .img-box ul li {
    display: inline-block;
    margin: 0 10px;
}

@media (max-width: 575px) {
    .technology-introduction .section01 .img-box ul li {
        margin-bottom: 10px;
    }
}

.technology-introduction .section01 .img-box span {
    display: block;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}

.technology-introduction .section01 .arrow {
    margin: 50px 0;
}

.technology-introduction .section02 {
    background: url("../images/bg_section02.jpg") center no-repeat;
    background-size: cover;
    padding: 0;
}

.technology-introduction .section02 .txt-wrap {
    padding: 150px 0;
    text-align: center;
    font-size: 25px;
    color: #fff;
    font-weight: 400;
    line-height: 35px;
}

@media (max-width: 575px) {
    .technology-introduction .section02 .txt-wrap {
        font-size: 20px;
        line-height: 25px;
        padding: 100px 0;
    }
}

.technology-introduction .section02 .txt-wrap img {
    margin-top: 30px;
}

.technology-introduction .section03 {
    background-color: #f8f8f8;
}

.technology-introduction .section03 .img-list {
    padding: 0 50px;
}

@media (max-width: 991px) {
    .technology-introduction .section03 .img-list {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .technology-introduction .section03 .img-list {
        padding: 0;
    }
}

.technology-introduction .section03 .img-list .row {
    margin-bottom: 110px;
}

@media (max-width: 575px) {
    .technology-introduction .section03 .img-list .row {
        margin-bottom: 50px;
    }
}

.technology-introduction .section03 .img-list .row:last-child {
    margin-bottom: 0;
}

.technology-introduction .section03 .img-list .row h3 {
    text-align: center;
    font-size: 30px;
    color: #111;
    font-weight: bold;
    margin-bottom: 50px;
}

@media (max-width: 575px) {
    .technology-introduction .section03 .img-list .row h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.technology-introduction .section03 .img-list .row em {
    display: block;
    text-align: center;
    font-style: normal;
    font-size: 18px;
    color: #111;
    font-weight: 350;
    margin-top: 10px;
}

@media (max-width: 575px) {
    .technology-introduction .section03 .img-list .row em {
        font-size: 12px;
    }
}

.technology-introduction .section03 .img-list .row>div .img_wrap {
    width: 50%;
}

@media (max-width: 991px) {
    .technology-introduction .section03 .img-list .row>div .img_wrap {
        width: 100%;
    }
}

.technology-introduction .section03 .img-list .row>div .img_wrap {
    width: 50%;
    float: left;
}

@media (max-width: 991px) {
    .technology-introduction .section03 .img-list .row>div .img_wrap {
        width: 100%;
    }
}

.technology-introduction .section03 .img-list .row>div .img_wrap img {
    width: 100%;
}

.technology-introduction .section03 .img-list .row>div .txt-wrap {
    width: 50%;
    padding-top: 90px;
    padding-left: 50px;
}

@media (max-width: 991px) {
    .technology-introduction .section03 .img-list .row>div .txt-wrap {
        width: 100%;
        padding-top: 40px;
    }
}

@media (max-width: 575px) {
    .technology-introduction .section03 .img-list .row>div .txt-wrap {
        padding-top: 20px;
    }
}

.technology-introduction .section03 .img-list .row>div .txt-wrap h4 {
    font-size: 30px;
    color: #111;
    font-weight: bold;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .technology-introduction .section03 .img-list .row>div .txt-wrap h4 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .technology-introduction .section03 .img-list .row>div .txt-wrap h4 br {
        display: none;
    }
}

.technology-introduction .section03 .img-list .row>div .txt-wrap p {
    font-size: 18px;
    color: #111;
    font-weight: 350;
    line-height: 30px;
}

@media (max-width: 575px) {
    .technology-introduction .section03 .img-list .row>div .txt-wrap p {
        font-size: 16px;
        line-height: 25px;
    }
}

.technology-introduction .section03 .img-list .row>div .txt-wrap p strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .technology-introduction .section03 .img-list .row>div .txt-wrap p strong {
        font-size: 18px;
    }
}

.technology-introduction .section03 .img-list .row:nth-child(odd) .img_wrap {
    float: left;
}

@media (max-width: 991px) {
    .technology-introduction .section03 .img-list .row:nth-child(odd) .img_wrap {
        float: none;
        margin-bottom: 30px;
    }
}

.technology-introduction .section03 .img-list .row:nth-child(odd) .txt-wrap {
    float: right;
    padding-left: 40px;
}

@media (max-width: 991px) {
    .technology-introduction .section03 .img-list .row:nth-child(odd) .txt-wrap {
        float: none;
        padding-left: 0;
    }
}

.technology-introduction .section03 .img-list .row:nth-child(even) .img_wrap {
    float: right;
}

.technology-introduction .section03 .img-list .row:nth-child(even) .txt-wrap {
    float: left;
    padding-right: 40px;
}

@media (max-width: 991px) {
    .technology-introduction .section03 .img-list .row:nth-child(even) .txt-wrap {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .technology-introduction .section03 .img-list .row:nth-child(even) .txt-wrap {
        padding-right: 0;
    }
}

.technology-introduction .section03 .img-list .row:last-child .txt-wrap {
    padding-top: 10px;
}

.technology-introduction .section03 .img-list .row:last-child .txt-wrap h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.technology-introduction .section03 .img-list .row:last-child .txt-wrap p {
    margin-bottom: 10px;
}

.technology-introduction .section04 .txt-list li {
    float: left;
    width: 50%;
    padding: 0 15px 15px 0;
}

@media (max-width: 575px) {
    .technology-introduction .section04 .txt-list li {
        float: none;
        width: 100%;
        margin-bottom: 30px;
    }
}

.technology-introduction .section04 .txt-list li>div {
    border: 1px solid #eee;
    padding: 40px 0 0 70px;
    text-align: left;
    min-height: 300px;
    border-top: 2px solid #0068b7;
}

@media (max-width: 991px) {
    .technology-introduction .section04 .txt-list li>div {
        padding: 20px 10px 0 20px;
    }
}

@media (max-width: 575px) {
    .technology-introduction .section04 .txt-list li>div {
        min-height: auto;
        padding: 20px;
    }
}

.technology-introduction .section04 .txt-list li>div h5 {
    font-size: 20px;
    color: #222;
    font-weight: bold;
    margin: 15px 0;
}

.technology-introduction .section04 .txt-list li>div span {
    font-size: 16px;
    color: #222;
    font-weight: 400;
    line-height: 25px;
}

@media (max-width: 991px) {
    .technology-introduction .section04 .txt-list li>div span {
        font-size: 14px;
        line-height: 22px;
    }

    .technology-introduction .section04 .txt-list li>div span br {
        display: none;
    }
}

.technology-introduction .section04 .txt-list li>div span em {
    display: block;
    color: #0068b7;
    font-weight: bold;
    font-style: normal;
}

.technology-introduction .section04 .txt-list li>div .btn-popup {
    display: inline-block;
    margin-top: 20px;
    width: 110px;
    height: 35px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 34px;
    margin-right: 10px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .technology-introduction .section04 .txt-list li>div .btn-popup {
        width: 95px;
        font-size: 12px;
    }
}

.technology-introduction .section04 .txt-list li>div .btn-popup img {
    vertical-align: middle;
    position: relative;
    top: -2px;
}

/* ceo greeting */
.ceo-greeting .section01 {
    padding-top: 0;
}

.ceo-greeting .section01 .img-box {
    background: url("../images/bg_section01.jpg") center no-repeat;
    background-size: cover;
    min-height: 600px;
    position: relative;
}

@media (max-width: 575px) {
    .ceo-greeting .section01 .img-box {
        min-height: 350px;
    }
}

.ceo-greeting .section01 .img-box em {
    display: block;
    width: 250px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    color: #fff;
    font-weight: 350;
    text-align: center;
    font-style: normal;
    background-color: #0068b7;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (max-width: 575px) {
    .ceo-greeting .section01 .img-box em {
        width: 200px;
        height: 55px;
        line-height: 55px;
        font-size: 15px;
    }
}

.ceo-greeting .section01 .img-box em img {
    position: relative;
    top: -2px;
    margin-left: 10px;
}

.ceo-greeting .section01 .txt-wrap {
    margin-top: 60px;
}

@media (max-width: 575px) {
    .ceo-greeting .section01 .txt-wrap {
        margin-top: 30px;
    }
}

.ceo-greeting .section01 .txt-wrap>div {
    float: left;
    width: 50%;
    padding: 0 40px;
}

@media (max-width: 1199px) {
    .ceo-greeting .section01 .txt-wrap>div {
        padding: 0 10px;
    }
}

@media (max-width: 991px) {
    .ceo-greeting .section01 .txt-wrap>div {
        float: none;
        width: 100%;
    }
}

.ceo-greeting .section01 .txt-wrap>div:first-child {
    padding-left: 0;
}

.ceo-greeting .section01 .txt-wrap>div:last-child {
    padding-right: 0;
    padding-top: 70px;
}

@media (max-width: 575px) {
    .ceo-greeting .section01 .txt-wrap>div:last-child {
        padding-top: 30px;
        padding-left: 0;
    }
}

.ceo-greeting .section01 .txt-wrap>div p {
    font-size: 20px;
    color: #111;
    font-weight: bold;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .ceo-greeting .section01 .txt-wrap>div p {
        font-size: 16px;
        line-height: 20px;
    }
}

.ceo-greeting .section01 .txt-wrap>div p strong {
    font-size: 30px;
    margin-left: 10px;
}

@media (max-width: 575px) {
    .ceo-greeting .section01 .txt-wrap>div p strong {
        font-size: 26px;
    }
}

.ceo-greeting .section01 .txt-wrap>div span {
    display: inline-block;
    font-size: 16px;
    color: #111;
    font-weight: 300;
    line-height: 30px;
    text-align: justify;
    width: 100%;
}

@media (max-width: 575px) {
    .ceo-greeting .section01 .txt-wrap>div span {
        font-size: 14px;
        line-height: 25px;
    }
}

.ceo-greeting .section01 .txt-wrap>div .sign {
    margin-top: 50px;
    font-size: 20px;
    font-weight: 400;
}

@media (max-width: 575px) {
    .ceo-greeting .section01 .txt-wrap>div .sign {
        font-size: 16px;
        margin-top: 30px;
    }
}

.ceo-greeting .section01 .txt-wrap>div .sign em {
    display: block;
    font-style: normal;
    font-size: 14px;
    color: #111;
    font-weight: 300;
    margin-bottom: 5px;
}

.ceo-greeting .section01 .txt-wrap>div .sign strong {
    font-size: 25px;
    margin-left: 10px;
}

@media (max-width: 575px) {
    .ceo-greeting .section01 .txt-wrap>div .sign strong {
        font-size: 20px;
    }
}

.dim {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99998;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

.popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    width: 1400px;
    display: none;
}

@media (max-width: 1399px) {
    .popup {
        width: 75%;
    }
}

.popup .inner {
    position: relative;
}

@media (max-width: 1399px) {
    .popup .inner {
        padding: 0;
    }
}

.popup .inner .inner-wrap {
    background-color: #fff;
    padding: 70px;
    overflow: auto;
    max-height: 85vh;
}

@media (max-width: 1199px) {
    .popup .inner .inner-wrap {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .popup .inner .inner-wrap {
        max-height: 75vh;
    }
}

.popup .inner .inner-wrap h3 {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
}

.popup .inner .inner-wrap h3 b {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

@media (max-width: 575px) {
    .popup .inner .inner-wrap h3 b {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .popup .inner .inner-wrap h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.popup .inner .inner-wrap h3 span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin-top: 5px;
}

.popup .inner .btn-close {
    display: block;
    position: absolute;
    right: -55px;
    top: 0px;
    cursor: pointer;
}

@media (max-width: 575px) {
    .popup .inner .btn-close {
        right: -30px;
    }
}

@media (max-width: 575px) {
    .popup .inner .btn-close img {
        width: 25px;
    }
}

.ceo-popup .inner-wrap .list-wrap .ceo-info {
    float: left;
    width: 50%;
    padding-right: 30px;
}

@media (max-width: 767px) {
    .ceo-popup .inner-wrap .list-wrap .ceo-info {
        float: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
}

.ceo-popup .inner-wrap .list-wrap .ceo-info>li {
    margin-bottom: 30px;
}

.ceo-popup .inner-wrap .list-wrap .ceo-info>li h4 {
    font-size: 22px;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

@media (max-width: 575px) {
    .ceo-popup .inner-wrap .list-wrap .ceo-info>li h4 {
        font-size: 18px;
    }
}

.ceo-popup .inner-wrap .list-wrap .ceo-info>li>ul>li {
    padding-left: 20px;
    margin-bottom: 7px;
    position: relative;
}

.ceo-popup .inner-wrap .list-wrap .ceo-info>li>ul>li:after {
    content: "";
    display: block;
    clear: both;
}

.ceo-popup .inner-wrap .list-wrap .ceo-info>li>ul>li:before {
    content: "-";
    display: block;
    position: absolute;
    left: 10px;
    top: 0px;
}

.ceo-popup .inner-wrap .list-wrap .ceo-info>li>ul>li h5 {
    float: left;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-right: 10px;
}

@media (max-width: 575px) {
    .ceo-popup .inner-wrap .list-wrap .ceo-info>li>ul>li h5 {
        float: none;
    }
}

/* management-philosophy-and-management-goal */
.management-philosophy-and-management-goal .section01 {
    padding-top: 0;
}

.management-philosophy-and-management-goal .section01 .inner>img {
    width: 100%;
    margin-bottom: 70px;
}

@media (max-width: 575px) {
    .management-philosophy-and-management-goal .section01 .inner>img {
        margin-bottom: 30px;
    }
}

.management-philosophy-and-management-goal .section01 .inner .goal-list {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    width: 900px;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list {
        width: 100%;
        margin: 0;
    }
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li {
    width: 33.333333%;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li {
        padding: 0 5px;
    }
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(1)>div:before,
.management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(2)>div:before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    border: 2px solid #0068b7;
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 1199px) {

    .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(1)>div:before,
    .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(2)>div:before {
        right: -60px;
    }
}

@media (max-width: 767px) {

    .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(1)>div:before,
    .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(2)>div:before {
        right: -20px;
    }
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(1)>div:after,
.management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(2)>div:after {
    content: "";
    display: block;
    width: 2px;
    height: 20px;
    border: 2px solid #0068b7;
    position: absolute;
    right: -72px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    z-index: 1;
}

@media (max-width: 1199px) {

    .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(1)>div:after,
    .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(2)>div:after {
        right: -52px;
    }
}

@media (max-width: 767px) {

    .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(1)>div:after,
    .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(2)>div:after {
        right: -12px;
    }
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li:last-child:after {
    display: none;
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li:last-child h3 {
    font-size: 16px !important;
}

@media (max-width: 575px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li:last-child h3 {
        font-size: 11px !important;
    }
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li>div {
    position: relative;
    z-index: 1;
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap {
    position: relative;
    padding-top: 85px;
}

@media (max-width: 575px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap {
        padding-top: 50px;
    }
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap .btn-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

@media (max-width: 575px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap .btn-center img {
        transform: scale(0.7);
    }
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap h3 {
    font-size: 17px;
    line-height: 22px;
    color: #111;
    font-weight: 350;
    margin: 10px 0;
}

@media (max-width: 1199px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap h3 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap h3 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap h3 {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap h3 {
        line-height: 12px;
    }
}

.management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap h3 span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap h3 span {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .management-philosophy-and-management-goal .section01 .inner .goal-list li>div .inner-wrap h3 span {
        font-size: 12px;
        line-height: 12px;
    }
}

/* history */
.history .section01 {
    padding-top: 0;
}

.history .section01 .top-area {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .history .section01 .top-area {
        margin-bottom: 30px;
    }
}

.history .section01 .top-area h3 {
    float: left;
    font-size: 30px;
    color: #222;
    font-weight: 700;
    line-height: 38px;
}

@media (max-width: 991px) {
    .history .section01 .top-area h3 {
        float: none;
    }
}

@media (max-width: 575px) {
    .history .section01 .top-area h3 {
        font-size: 18px;
        line-height: 25px;
    }
}

.history .section01 .top-area .btn-wrap {
    float: right;
}

@media (max-width: 991px) {
    .history .section01 .top-area .btn-wrap {
        float: none;
        margin-top: 30px;
    }
}

.history .section01 .top-area .btn-wrap p {
    cursor: pointer;
    min-width: 200px;
    height: 55px;
    line-height: 55px;
    font-size: 15px;
    color: #0068b7;
    border: 1px solid #0068b7;
    padding: 0 20px;
    text-align: center;
    display: inline-block;
    margin-left: 10px;
    -moz-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
}

@media (max-width: 767px) {
    .history .section01 .top-area .btn-wrap p {
        min-width: 120px;
        height: 50px;
        line-height: 49px;
        font-size: 13px;
        margin-left: 0;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

.history .section01 .top-area .btn-wrap p:hover {
    color: #fff;
    background-color: #0068b7;
}

.history .section01 .top-area .btn-wrap p:hover:after {
    background-image: url("../images/ico_btn_arrow_on.png");
}

.history .section01 .top-area .btn-wrap p:after {
    content: "";
    display: inline-block;
    background: url("../images/ico_btn_arrow.png") no-repeat;
    width: 18px;
    height: 15px;
    vertical-align: middle;
    margin-left: 10px;
}

.history .section01 .history-wrap {
    border-top: 2px solid #111;
}

.history .section01 .history-wrap>div {
    float: left;
    width: 50%;
}

@media (max-width: 767px) {
    .history .section01 .history-wrap>div {
        float: none;
        width: 100%;
    }
}

.history-popup .history-list {
    padding-left: 20px;
}

.history-popup .history-list>li {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .history-popup .history-list>li {
        margin-bottom: 20px;
    }
}

.history-popup .history-list>li h4 {
    font-size: 22px;
    color: #000;
    font-weight: 400;
    margin-bottom: 5px;
}

@media (max-width: 575px) {
    .history-popup .history-list>li h4 {
        font-size: 16px;
    }
}

.history-popup .history-list>li>ul {
    padding-left: 30px;
}

@media (max-width: 575px) {
    .history-popup .history-list>li>ul {
        padding-left: 0;
    }
}

.history-popup .history-list>li>ul>li {
    font-size: 16px;
    color: #000;
    font-weight: 350;
    margin-bottom: 5px;
}

@media (max-width: 575px) {
    .history-popup .history-list>li>ul>li {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/* global-map */
.global-map .section01 {
    padding-top: 0;
}

.global-map .section01 .inner .btn-center>img {
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .global-map .section01 .inner .btn-center>img {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .global-map .section01 .inner .btn-center>img {
        margin-bottom: 30px;
    }
}

.global-map .section01 .global-list {
    width: 1410px;
    margin-left: -15px;
}

@media (max-width: 1399px) {
    .global-map .section01 .global-list {
        width: 100%;
        margin-left: 0;
    }
}

.global-map .section01 .global-list>li {
    float: left;
    width: 33.333333%;
    padding: 0 15px 30px;
}

@media (max-width: 1199px) {
    .global-map .section01 .global-list>li {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .global-map .section01 .global-list>li {
        float: none;
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
}

.global-map .section01 .global-list>li>div {
    border: 1px solid #e6e6e6;
    padding: 30px;
    text-align: left;
    min-height: 400px;
    /*max-height: 400px;*/
    position: relative;
}

@media (max-width: 575px) {
    .global-map .section01 .global-list>li>div {
        min-height: auto;
    }
}

.global-map .section01 .global-list>li>div .btn-viewmore {
    display: block;
    font-style: normal;
    width: 85px;
    height: 30px;
    border: 1px solid #e6e6e6;
    font-size: 13px;
    color: #444;
    font-weight: 400;
    line-height: 29px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
}

.global-map .section01 .global-list>li>div h3 {
    font-size: 25px;
    color: #232323;
    font-weight: 450;
}

@media (max-width: 991px) {
    .global-map .section01 .global-list>li>div h3 {
        font-size: 18px;
    }
}

.global-map .section01 .global-list>li>div h3 span {
    display: block;
    font-size: 20px;
    color: #444;
    font-weight: 300;
}

@media (max-width: 991px) {
    .global-map .section01 .global-list>li>div h3 span {
        font-size: 16px;
    }
}

.global-map .section01 .global-list>li>div h3:after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: #e60122;
    margin: 20px 0;
}

.global-map .section01 .global-list>li>div .global-info>li {
    margin-bottom: 20px;
}

.global-map .section01 .global-list>li>div .global-info>li h4 {
    font-size: 18px;
    color: #232323;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .global-map .section01 .global-list>li>div .global-info>li h4 {
        font-size: 16px;
    }
}

.global-map .section01 .global-list>li>div .global-info>li p {
    font-size: 16px;
    color: #575757;
    font-weight: 400;
    line-height: 25px;
}

@media (max-width: 1199px) {
    .global-map .section01 .global-list>li>div .global-info>li p {
        font-size: 14px;
        line-height: 20px;
    }
}

.global-popup .china-wrap>div {
    float: left;
    width: 660px;
    padding-right: 20px;
}

.global-popup .china-wrap>ul {
    float: left;
    width: calc(100% - 660px);
}

.global-popup .china-wrap>ul li {
    margin-bottom: 10px;
}

.global-popup .global-info {
    margin-top: 30px;
}

.global-popup .global-info h4 {
    font-size: 22px;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

@media (max-width: 575px) {
    .global-popup .global-info h4 {
        font-size: 16px;
    }
}

.global-popup .global-info p {
    font-size: 16px;
    color: #000;
    font-weight: 300;
    line-height: 27px;
    padding-left: 30px;
}

@media (max-width: 575px) {
    .global-popup .global-info p {
        font-size: 12px;
        line-height: 20px;
    }
}

/* scr-catalyst */
.scr-catalyst h4 {
    font-size: 18px;
    color: #111;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .scr-catalyst h4 {
        font-size: 15px;
    }
}

.scr-catalyst .section01 {
    padding-top: 0;
}

.scr-catalyst .section01 .scr-title {
    font-size: 30px;
    color: #111;
    font-weight: 400;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .scr-catalyst .section01 .scr-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
}

.scr-catalyst .section01 .scr-title:before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #0068b7;
    vertical-align: middle;
    margin-right: 20px;
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-title:before {
        width: 25px;
        margin-right: 5px;
    }
}

.scr-catalyst .section01 .scr-top .left {
    float: left;
    width: 50%;
    padding-right: 70px;
}

@media (max-width: 991px) {
    .scr-catalyst .section01 .scr-top .left {
        float: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
}

.scr-catalyst .section01 .scr-top .left .img_wrap {
    border: 1px solid #e6e6e6;
    position: relative;
    min-height: 500px;
}

@media (max-width: 991px) {
    .scr-catalyst .section01 .scr-top .left .img_wrap {
        min-height: 620px;
    }
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .left .img_wrap {
        min-height: 300px;
    }
}

.scr-catalyst .section01 .scr-top .left .img_wrap img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .scr-catalyst .section01 .scr-top .left .img_wrap img {
        width: 80%;
    }
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .left .img_wrap img {
        width: 100%;
    }
}

.scr-catalyst .section01 .scr-top .left em {
    display: block;
    text-align: center;
    font-style: normal;
    font-size: 16px;
    color: #111;
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .left em {
        font-size: 12px;
        line-height: 15px;
    }
}

.scr-catalyst .section01 .scr-top .left .img-list {
    margin-top: 30px;
}

.scr-catalyst .section01 .scr-top .left .img-list>li {
    float: left;
    width: 33.33333%;
    padding: 0 10px;
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .left .img-list>li {
        padding: 0 3px;
    }
}

.scr-catalyst .section01 .scr-top .left .img-list>li .img_wrap {
    min-height: 300px;
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .left .img-list>li .img_wrap {
        min-height: 150px;
    }
}

.scr-catalyst .section01 .scr-top .right {
    float: left;
    width: 50%;
}

@media (max-width: 991px) {
    .scr-catalyst .section01 .scr-top .right {
        float: none;
        width: 100%;
    }
}

.scr-catalyst .section01 .scr-top .right h3 {
    font-size: 18px;
    color: #333;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 50px;
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .right h3 {
        font-size: 14px;
        line-height: 23px;
        margin-bottom: 30px;
    }
}

.scr-catalyst .section01 .scr-top .right h3 strong {
    display: block;
    font-size: 25px;
    color: #0068b7;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .right h3 strong {
        font-size: 18px;
        line-height: 22px;
    }
}

.scr-catalyst .section01 .scr-top .right>ul>li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 110px;
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .right>ul>li {
        padding-left: 90px;
    }
}

.scr-catalyst .section01 .scr-top .right>ul>li>ul>li {
    margin-bottom: 10px;
}

.scr-catalyst .section01 .scr-top .right>ul>li h4 {
    position: absolute;
    left: 0;
    top: 0;
}

.scr-catalyst .section01 .scr-top .right>ul>li p {
    font-size: 18px;
    color: #333;
    font-weight: 400;
    line-height: 25px;
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .right>ul>li p {
        font-size: 16px;
        line-height: 23px;
    }
}

.scr-catalyst .section01 .scr-top .right>ul>li p span {
    font-size: 16px;
}

@media (max-width: 575px) {
    .scr-catalyst .section01 .scr-top .right>ul>li p span {
        font-size: 13px;
    }
}

.scr-catalyst .section01 .scr-top .right>ul>li p span.span_block {
    display: block;
}

.scr-catalyst .section01 .scr-top .right b {
    display: block;
    font-size: 16px;
    color: #111;
    font-weight: bold;
    margin-top: 20px;
}

.scr-catalyst .section02 {
    background-color: #f8f8f8;
    text-align: center;
}

.scr-catalyst .section02 h3 {
    font-size: 25px;
    color: #333;
    font-weight: 400;
}

@media (max-width: 575px) {
    .scr-catalyst .section02 h3 {
        font-size: 18px;
    }
}

.scr-catalyst .section02 h3 strong,
.scr-catalyst .section02 h3 span {
    color: #0068b7;
}

.scr-catalyst .section02 p {
    font-size: 18px;
    color: #333;
    font-weight: 400;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .scr-catalyst .section02 p {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 575px) {
    .scr-catalyst .section02 p {
        font-size: 14px;
        line-height: 22px;
    }
}

.scr-catalyst .section02 .ct-wrap {
    text-align: left;
}

.scr-catalyst .section02 .ct-wrap .left {
    float: left;
    width: 50%;
    padding-right: 20px;
    min-height: 410px;
}

@media (max-width: 767px) {
    .scr-catalyst .section02 .ct-wrap .left {
        float: none;
        width: 100%;
        padding-right: 0;
        min-height: auto;
        margin-bottom: 20px;
    }
}

.scr-catalyst .section02 .ct-wrap .left h4 {
    font-size: 18px;
    color: #111;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .scr-catalyst .section02 .ct-wrap .left h4 {
        font-size: 15px;
    }
}

.scr-catalyst .section02 .ct-wrap .left table td {
    padding: 16px 0;
}

.scr-catalyst .section02 .ct-wrap .right {
    float: right;
    width: 50%;
    min-height: 410px;
}

@media (max-width: 767px) {
    .scr-catalyst .section02 .ct-wrap .right {
        float: none;
        width: 100%;
        min-height: auto;
    }
}

.scr-catalyst .section02 .ct-wrap.type2 img {
    margin-bottom: 50px;
}

.scr-catalyst .section02 .ct-wrap.type2 h4 {
    margin-bottom: 10px;
}

.scr-catalyst .section03 {
    background-color: #fff;
}

.scr-catalyst .section03 h3 strong {
    color: #111;
}

/* catalyst-regeneration-nanoart */
.catalyst-regeneration-nanoart .section01 .scr-top .left .img-wrap {
    padding-bottom: 75%;
}

/* catalyst-design */
.catalyst-design .section01 {
    padding-top: 0;
}

.catalyst-design .section01 .txt1 {
    font-size: 18px;
    color: #111;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .catalyst-design .section01 .txt1 {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 40px;
    }
}

.catalyst-design .section01 h3 {
    font-size: 20px;
    color: #222;
    font-weight: 400;
    margin: 70px 0 30px;
}

.catalyst-design .section01 .txt-list li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #222;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

@media (max-width: 991px) {
    .catalyst-design .section01 .txt-list li {
        font-size: 16px;
    }
}

.catalyst-design .section01 .txt-list li:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: #222;
    position: absolute;
    left: 0;
    top: 13px;
}

.catalyst-design .section02 {
    background-color: #f8f8f8;
    text-align: center;
}

.catalyst-design .section02 h3 {
    font-size: 30px;
    color: #111;
    font-weight: bold;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .catalyst-design .section02 h3 {
        font-size: 22px;
        margin-bottom: 40px;
    }
}

.catalyst-design .section03 {
    background-color: #fff;
    text-align: center;
}

.catalyst-design .section03 em {
    display: block;
    font-style: normal;
    font-size: 18px;
    color: #222;
    font-weight: bold;
    margin: 30px 0;
}

.catalyst-design .section03 p {
    font-size: 18px;
    color: #222;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

@media (max-width: 991px) {
    .catalyst-design .section03 p {
        font-size: 16px;
        line-height: 26px;
    }
}

/* company-affiliated-research-institute */
.company-affiliated-research-institute .section01 {
    padding-top: 0;
}

.company-affiliated-research-institute .section01 .area {
    margin-bottom: 100px;
    text-align: left;
}

@media (max-width: 1199px) {
    .company-affiliated-research-institute .section01 .area {
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .company-affiliated-research-institute .section01 .area {
        margin-bottom: 50px;
    }
}

.company-affiliated-research-institute .section01 .area h3 {
    font-size: 30px;
    color: #111;
    font-weight: bold;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .company-affiliated-research-institute .section01 .area h3 {
        font-size: 26px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .company-affiliated-research-institute .section01 .area h3 {
        font-size: 22px;
    }
}

.company-affiliated-research-institute .section01 .area h3 span {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.company-affiliated-research-institute .section01 .area:last-child h3 {
    margin-bottom: 60px;
}

.company-affiliated-research-institute .section01 .area .status-wrap li {
    float: left;
    width: 33.3333333%;
    margin-left: -40px;
}

@media (max-width: 575px) {
    .company-affiliated-research-institute .section01 .area .status-wrap li {
        margin-left: -20px;
        width: 36.5%;
    }
}

.company-affiliated-research-institute .section01 .area .status-wrap li>div {
    width: 100%;
    height: 100px;
    text-align: center;
    border-radius: 50px;
    position: relative;
}

@media (max-width: 991px) {
    .company-affiliated-research-institute .section01 .area .status-wrap li>div {
        height: 80px;
    }
}

@media (max-width: 575px) {
    .company-affiliated-research-institute .section01 .area .status-wrap li>div {
        height: 50px;
    }
}

.company-affiliated-research-institute .section01 .area .status-wrap li>div:after {
    content: "";
    display: block;
    background: url("../images/img_section01_status_plus.png") no-repeat;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

@media (max-width: 575px) {
    .company-affiliated-research-institute .section01 .area .status-wrap li>div:after {
        width: 10px;
        height: 10px;
        background-size: 100% 100%;
        right: 6px;
    }
}

.company-affiliated-research-institute .section01 .area .status-wrap li>div p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 100px;
}

@media (max-width: 991px) {
    .company-affiliated-research-institute .section01 .area .status-wrap li>div p {
        line-height: 80px;
    }
}

@media (max-width: 575px) {
    .company-affiliated-research-institute .section01 .area .status-wrap li>div p {
        font-size: 16px;
        line-height: 50px;
    }
}

.company-affiliated-research-institute .section01 .area .status-wrap li:nth-child(1) {
    margin-left: 0;
}

.company-affiliated-research-institute .section01 .area .status-wrap li:nth-child(1)>div {
    background: rgba(120, 120, 120, 0.8);
}

.company-affiliated-research-institute .section01 .area .status-wrap li:nth-child(2)>div {
    background: rgba(0, 16, 51, 0.8);
}

.company-affiliated-research-institute .section01 .area .status-wrap li:nth-child(3)>div {
    background: rgba(243, 0, 18, 0.8);
}

.company-affiliated-research-institute .section01 .area .status-wrap li:nth-child(3)>div:after {
    display: none;
}

.company-affiliated-research-institute .section01 .area .history-wrap>div {
    float: left;
    width: 50%;
    position: relative;
    overflow: hidden;
    padding: 50px 0 0 55px;
}

@media (max-width: 767px) {
    .company-affiliated-research-institute .section01 .area .history-wrap>div {
        float: none;
        width: 100%;
        margin-bottom: 30px;
    }
}

.company-affiliated-research-institute .section01 .area .history-wrap>div:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    min-height: 300px;
    background-color: #e4e4e4;
    position: absolute;
    left: 13px;
    top: -130px;
}

.company-affiliated-research-institute .section01 .area .history-wrap>div:last-child:before {
    top: -400px;
}

@media (max-width: 991px) {
    .company-affiliated-research-institute .section01 .area .history-wrap>div:last-child:before {
        top: -310px;
    }
}

@media (max-width: 575px) {
    .company-affiliated-research-institute .section01 .area .history-wrap>div:last-child:before {
        top: -275px;
    }
}

.company-affiliated-research-institute .section01 .area .history-wrap>div:after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    border: 5px solid #0068b7;
    background-color: #fff;
    position: absolute;
    left: 0px;
    top: 0px;
}

.company-affiliated-research-institute .section01 .area .history-wrap>div>div.row {
    padding-bottom: 60px;
}

.company-affiliated-research-institute .section01 .area .history-wrap>div>div.row h4 {
    display: block;
    font-size: 25px;
    color: #111;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

@media (max-width: 575px) {
    .company-affiliated-research-institute .section01 .area .history-wrap>div>div.row h4 {
        font-size: 22px;
    }
}

.company-affiliated-research-institute .section01 .area .history-wrap>div>div.row h4:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    background: #e4e4e4;
    position: absolute;
    left: -49px;
    top: 50%;
    transform: translateY(-50%);
}

.company-affiliated-research-institute .section01 .area .history-wrap>div>div.row h4:after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: #e4e4e4;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li {
    margin-bottom: 10px;
}

.company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li h5 {
    font-size: 18px;
    color: #111;
    font-weight: bold;
    float: left;
    width: 60px;
    position: relative;
    z-index: 1;
}

.company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li h5:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    border: 2px solid #111;
    background-color: #fff;
    vertical-align: middle;
    margin-right: 15px;
}

.company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li p {
    float: left;
    width: calc(100% - 60px);
    font-size: 18px;
    color: #111;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li p {
        font-size: 16px;
    }
}

.company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li img {
    margin-top: 15px;
}

/* rnd-achievements */
.rnd-achievements .section01 {
    padding-top: 0;
    padding-bottom: 0;
}

.rnd-achievements .section01 h3 {
    font-size: 30px;
    color: #111;
    font-weight: bold;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .rnd-achievements .section01 h3 {
        font-size: 22px;
    }
}

.rnd-achievements .section01 h4 {
    font-size: 25px;
    color: #111;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .rnd-achievements .section01 h4 {
        font-size: 18px;
    }
}

.rnd-achievements .section01 .area {
    margin-bottom: 100px;
}

@media (max-width: 767px) {
    .rnd-achievements .section01 .area {
        margin-bottom: 50px;
    }
}

.rnd-achievements .section01 .area table th {
    padding: 20px 0;
}

/* patent-and-certification */
.patent-and-certification .section01 {
    padding-top: 0;
    padding-bottom: 0;
}

.patent-and-certification .section01 .category-tab {
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 575px) {
    .patent-and-certification .section01 .category-tab {
        margin-bottom: 40px;
    }
}

.patent-and-certification .section01 .category-tab li {
    display: inline-block;
    padding: 0 40px;
    position: relative;
}

@media (max-width: 575px) {
    .patent-and-certification .section01 .category-tab li {
        padding: 0 20px;
    }
}

.patent-and-certification .section01 .category-tab li:after {
    content: "";
    display: block;
    width: 1px;
    height: 17px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.patent-and-certification .section01 .category-tab li:last-child:after {
    display: none;
}

.patent-and-certification .section01 .category-tab li.on a:before {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background: #f7babd;
    position: absolute;
    left: 0;
    bottom: -3px;
    z-index: -1;
}

.patent-and-certification .section01 .category-tab li a {
    font-size: 18px;
    color: #111;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

@media (max-width: 575px) {
    .patent-and-certification .section01 .category-tab li a {
        font-size: 13px;
    }
}

.patent-and-certification .section01 .board-inner-wrap {
    background: #f8f8f8;
    padding: 80px 0;
}

.patent-and-certification .section01 .board-inner-wrap table .btn-viewmore {
    cursor: pointer;
}

.patent-and-certification .section01 .board-inner-wrap table .btn-viewmore:hover {
    color: #0068b7;
    text-decoration: underline;
}

.patent-and-certification .section01 .board-wrap--fc {
    display: none;
}

.patent-and-certification .section01 .board-wrap {
    display: none;
}

.patent-and-certification .section01 .tab_wrap .tab_menu {
    text-align: center;
    margin-bottom: 30px;
}

.patent-and-certification .section01 .tab_wrap .tab_menu li {
    display: inline-block;
    position: relative;
    padding: 0 40px;
}

.patent-and-certification .section01 .tab_wrap .tab_menu li:after {
    content: "";
    display: block;
    width: 1px;
    height: 17px;
    background-color: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.patent-and-certification .section01 .tab_wrap .tab_menu li:last-child:after {
    display: none;
}

.patent-and-certification .section01 .tab_wrap .tab_menu li.on p {
    position: relative;
}

.patent-and-certification .section01 .tab_wrap .tab_menu li.on p:after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background: #f7babd;
    position: absolute;
    left: 0;
    bottom: -3px;
    z-index: -1;
}

.patent-and-certification .section01 .tab_wrap .tab_menu li p {
    font-size: 18px;
    color: #111;
    font-weight: 400;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.patent-and-certification .section01 .tab_wrap .tab_c {
    display: none;
}

.patent-and-certification .section01 .tab_wrap .tab_c.on {
    display: block;
}

/* evaluation-equipment */
.evaluation-equipment .section01 {
    padding-top: 0;
}

.evaluation-equipment .section01 h4 {
    font-size: 30px;
    color: #111;
    font-weight: bold;
    margin-bottom: 30px;
}

.evaluation-equipment .section01 .board-search-wrap--fc {
    display: none;
}

.evaluation-equipment .section01 .board-wrap--fc .gallery-list--fc {
    border-top: none;
}

.evaluation-equipment .section01 .board-wrap--fc .gallery-list--fc figure {
    width: 33.33333%;
}

@media (max-width: 575px) {
    .evaluation-equipment .section01 .board-wrap--fc .gallery-list--fc figure {
        width: 50%;
        padding: 0 5px;
    }
}

.evaluation-equipment .section01 .board-wrap--fc .gallery-list--fc figure a {
    border-bottom: none;
}

.evaluation-equipment .section01 .board-wrap--fc .gallery-list--fc figure a .thumb-wrap--fc {
    padding-bottom: 100%;
    border: 10px solid #ebebeb;
}

.evaluation-equipment .section01 .board-wrap--fc .gallery-list--fc figure a .gallery-date--fc {
    display: none;
}

.evaluation-equipment .section01 .board-wrap--fc .gallery-list--fc figure a figcaption {
    text-align: center;
    font-size: 18px;
    color: #333;
    font-weight: 400;
}

/* research-content */
.research-content .section01 {
    padding-top: 0;
    background: url("../images/bg_section01.png") right 0 top 0 no-repeat;
    background-size: cover;
}

.research-content .section01 .research-list {
    display: flex;
    flex-wrap: wrap;
}

.research-content .section01 .research-list>li {
    float: left;
    width: 50%;
    padding: 0 30px;
    margin-bottom: 100px;
    min-height: 600px;
}

@media (max-width: 991px) {
    .research-content .section01 .research-list>li {
        min-height: 500px;
        margin-bottom: 60px;
    }

    .research-content .section01 .research-list>li:nth-child(5),
    .research-content .section01 .research-list>li:nth-child(6) {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .research-content .section01 .research-list>li {
        float: none;
        width: 100%;
        padding: 0;
        min-height: auto;
    }

    .research-content .section01 .research-list>li:nth-child(5),
    .research-content .section01 .research-list>li:nth-child(6) {
        margin-bottom: 50px;
    }
}

.research-content .section01 .research-list>li .img-wrap {
    padding-bottom: 60%;
    margin-bottom: 30px;
}

.research-content .section01 .research-list>li h3 {
    font-size: 25px;
    color: #111;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .research-content .section01 .research-list>li h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }
}

.research-content .section01 .research-list>li h3 span {
    display: inline-block;
    font-weight: 400;
}

@media (max-width: 991px) {
    .research-content .section01 .research-list>li h3 span {
        font-size: 18px;
    }
}

.research-content .section01 .research-list>li p {
    font-size: 16px;
    color: #111;
    font-weight: 400;
    line-height: 28px;
}

@media (max-width: 991px) {
    .research-content .section01 .research-list>li p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* green-new-deal-project */
.green-new-deal-project .section02 {
    padding-top: 0;
    background-color: #fff;
}

.green-new-deal-project .section02 .ct-wrap .left {
    width: 80%;
    min-height: auto;
}

@media (max-width: 767px) {
    .green-new-deal-project .section02 .ct-wrap .left {
        width: 100%;
    }
}

.green-new-deal-project .section02 .ct-wrap .left table th {
    padding: 15px 0;
}

.green-new-deal-project .section02 .ct-wrap .left table td.color {
    background-color: #f6f1eb;
    color: #0068b7;
    font-weight: 500;
}

.green-new-deal-project .section02 .ct-wrap .right {
    width: 20%;
    min-height: auto;
}

@media (max-width: 575px) {
    .green-new-deal-project .section02 .ct-wrap .right {
        width: 100%;
    }
}

.green-new-deal-project .section02 .img_wrap {
    border: 1px solid #ddd;
    margin: 30px 0;
}

.green-new-deal-project .section02 .txt-list li {
    font-size: 18px;
    color: #111;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

@media (max-width: 575px) {
    .green-new-deal-project .section02 .txt-list li {
        font-size: 16px;
    }
}

.green-new-deal-project .section02 .txt-list li:before {
    content: "";
    display: block;
    width: 8px;
    height: 1px;
    background-color: #111;
    position: absolute;
    left: 0;
    top: 15px;
}

/* financial-information */
.financial-information .section01 {
    padding-top: 0;
    margin-bottom: 30px;
}

.financial-information .section01 .top {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .financial-information .section01 .top {
        margin-bottom: 10px;
    }
}

.financial-information .section01 .top h3 {
    float: left;
    font-size: 30px;
    color: #111;
    font-weight: bold;
}

@media (max-width: 575px) {
    .financial-information .section01 .top h3 {
        font-size: 18px;
    }
}

.financial-information .section01 .top em {
    float: right;
    font-size: 16px;
    color: #111;
    font-weight: 300;
    font-style: normal;
    position: relative;
    top: 30px;
}

@media (max-width: 575px) {
    .financial-information .section01 .top em {
        top: 10px;
        font-size: 12px;
    }
}

.financial-information .section01 .area {
    margin-bottom: 70px;
}

.financial-information .section01 .area:last-child {
    margin-bottom: 0;
}

/* ir-center */
.ir-center .section01 {
    padding-top: 0;
}

.ir-center .section01 .search-total-num__accent--fc {
    color: #eb2a2e;
}

.ir-center .section01 .basic-board-list--fc,
.ir-center .section01 .webzine-board-list--fc {
    border-top-color: #111;
}

.ir-center .section01 .basic-board-list--fc thead th,
.ir-center .section01 .webzine-board-list--fc thead th {
    background-color: #fff;
    padding: 20px 0;
}

.ir-center .section01 .basic-board-list--fc thead th:before,
.ir-center .section01 .webzine-board-list--fc thead th:before {
    display: none;
}

.ir-center .section01 .basic-board-list--fc td,
.ir-center .section01 .webzine-board-list--fc td {
    font-size: 16px;
    color: #111;
    font-weight: 300;
    padding: 20px 0;
}

/* promotional-video */
.promotional-video .section01 {
    padding-top: 0;
}

.promotional-video .section01 .search-total-num__accent--fc {
    color: #eb2a2e;
}

.promotional-video .section01 .board-wrap--fc .gallery-list--fc {
    border-top: none;
}

.promotional-video .section01 .board-wrap--fc .gallery-list--fc figure {
    width: 33.33333%;
}

@media (max-width: 767px) {
    .promotional-video .section01 .board-wrap--fc .gallery-list--fc figure {
        width: 50%;
    }
}

.promotional-video .section01 .board-wrap--fc .gallery-list--fc figure a {
    border: none;
}

.promotional-video .section01 .board-wrap--fc .gallery-list--fc figure a .thumb-wrap--fc {
    padding-bottom: 60%;
}

.promotional-video .section01 .gallery-date--fc {
    display: none;
}

.promotional-video .section01 .board-wrap--fc .gallery-list--fc figure a figcaption {
    background-color: #f2f2f2;
}

.promotional-video .section01 .board-wrap--fc .gallery-list--fc figure a figcaption .gallery-title--fc {
    font-size: 18px;
    color: #111;
    font-weight: 500;
}

@media (max-width: 575px) {
    .promotional-video .section01 .board-wrap--fc .gallery-list--fc figure a figcaption .gallery-title--fc {
        font-size: 14px;
    }
}

/* brochure */
.brochure .section01 {
    padding-top: 0;
}

.brochure .section01 .search-total-num__accent--fc {
    color: #eb2a2e;
}

.brochure .section01 .category-tab {
    display: none;
}

.brochure .section01 .top {
    margin-bottom: 30px;
}

.brochure .section01 .top .count {
    float: left;
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.brochure .section01 .top .count span {
    color: #eb2a2e;
}

@media (max-width: 575px) {
    .brochure .section01 .top .count {
        float: none;
    }
}

.brochure .section01 .top .search-form {
    float: right;
    position: relative;
}

.brochure .section01 .top .search-form select {
    width: 100px;
    height: 45px;
    border: 1px solid #ddd;
    padding: 0 10px;
}

.brochure .section01 .top .search-form input[type="text"] {
    width: calc(100% - 110px);
    height: 45px;
    border: 1px solid #ddd;
    padding: 0 50px 0 10px;
}

@media (max-width: 380px) {
    .brochure .section01 .top .search-form input[type="text"] {
        padding-right: 20px;
    }
}

.brochure .section01 .top .search-form input[type="button"] {
    display: block;
    width: 16px;
    height: 15px;
    background: url("../images/ico_btn-search.png") no-repeat;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    cursor: pointer;
}

@media (max-width: 575px) {
    .brochure .section01 .top .search-form {
        float: none;
    }
}

.brochure .section01 .brochure-list {
    background-color: #f8f8f8;
    padding: 50px;
    text-align: center;
}

@media (max-width: 575px) {
    .brochure .section01 .brochure-list {
        padding: 20px;
    }
}

.brochure .section01 .brochure-list>li {
    float: left;
    width: 25%;
    padding: 0 20px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .brochure .section01 .brochure-list>li {
        width: 33.333333%;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .brochure .section01 .brochure-list>li {
        width: 50%;
        padding: 0 5px;
    }
}

.brochure .section01 .brochure-list>li .img-wrap {
    padding-bottom: 150%;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    border: 2px solid #fff;
}

.brochure .section01 .brochure-list>li .img-wrap .title {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    padding: 10px 0;
    text-align: center;
}

@media (max-width: 575px) {
    .brochure .section01 .brochure-list>li .img-wrap .title {
        font-size: 12px;
    }
}

.brochure .section01 .brochure-list>li .img-wrap .title span {
    display: block;
    font-size: 14px;
    font-weight: 300;
}

.brochure .section01 .brochure-list>li .btn-download {
    display: inline-block;
    width: 120px;
    height: 35px;
    border-radius: 20px;
    border: 1px solid #111;
    background-color: #fff;
    line-height: 34px;
    font-size: 14px;
    color: #111;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 575px) {
    .brochure .section01 .brochure-list>li .btn-download {
        width: 100px;
        height: 30px;
        line-height: 29px;
        font-size: 12px;
    }
}

.brochure .section01 .brochure-list>li .btn-download img {
    margin-right: 5px;
}

/* consultation-inquiries */
.consultation-inquiries .section01 {
    padding-top: 0;
}

.consultation-inquiries .section01 .st1 {
    display: block;
    text-align: center;
    font-size: 25px;
    color: #111;
    font-weight: bold;
    margin-bottom: 100px;
}

@media (max-width: 575px) {
    .consultation-inquiries .section01 .st1 {
        font-size: 16px;
        margin-bottom: 50px;
    }
}

.consultation-inquiries .section01 .consult-wrap>div {
    float: left;
    width: 50%;
    padding: 0 30px;
}

@media (max-width: 767px) {
    .consultation-inquiries .section01 .consult-wrap>div {
        float: none;
        width: 100%;
        padding: 0 15px;
        margin-bottom: 50px;
    }
}

.consultation-inquiries .section01 .consult-wrap>div:first-child {
    padding-left: 0;
}

.consultation-inquiries .section01 .consult-wrap>div:last-child {
    padding-right: 0;
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: left;
    width: 50%;
}

@media (max-width: 575px) {
    .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
        float: none;
        width: 100%;
    }
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area {
    border-bottom: 1px solid #ddd;
    padding: 5px 0 40px 100px;
    position: relative;
    margin-bottom: 40px;
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area span {
    display: table;
    width: 80px;
    height: 80px;
    background-color: #0068b7;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area span i {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 20px;
    display: table-cell;
    vertical-align: middle;
    font-style: normal;
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    font-size: 25px;
    color: #111;
    font-weight: 400;
}

@media (max-width: 991px) {
    .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
        font-size: 22px;
    }
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p em {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    font-style: normal;
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    margin-bottom: 10px;
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li h3 {
    font-size: 16px;
    color: #111;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 575px) {
    .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li h3 {
        font-size: 14px;
    }
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li h3 img {
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li p {
    display: inline-block;
    font-size: 16px;
    color: #111;
    font-weight: 300;
    vertical-align: middle;
}

@media (max-width: 575px) {
    .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li p {
        font-size: 14px;
    }
}

.consultation-inquiries .section01 .consult-wrap>div .img_wrap {
    float: left;
    width: 50%;
}

@media (max-width: 575px) {
    .consultation-inquiries .section01 .consult-wrap>div .img_wrap {
        float: none;
        width: 100%;
    }
}

/* table style */
table.style1 {
    border: 1px solid #e6e6e6;
    width: 100%;
}

@media (max-width: 575px) {
    table.style1 {
        width: auto;
    }
}

table.style1 th {
    background-color: #0068b7;
    font-size: 16px;
    color: #fff;
    line-height: 20px;
    padding: 10px 5px;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    vertical-align: middle;
    text-align: center;
}

@media (max-width: 575px) {
    table.style1 th {
        font-size: 13px;
        line-height: 18px;
    }
}

table.style1 th:last-child {
    border-right: none;
}

table.style1 td {
    padding: 10px;
    text-align: center;
    font-size: 15px;
    color: #333;
    font-weight: 350;
    line-height: 24px;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    background: rgba(255, 255, 255, 0.6);
    vertical-align: middle;
}

@media (max-width: 575px) {
    table.style1 td {
        font-size: 13px;
        line-height: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

table.style1 td:last-child {
    border-right: none;
}

.table-wrap {
    overflow-x: auto;
}

table.style2 {
    width: 100%;
    border-top: 2px solid #111;
    border-left: 1px solid #ddd;
}

@media (max-width: 575px) {
    table.style2 {
        width: auto;
    }
}

table.style2 thead th {
    background-color: #f5f5f5;
    font-size: 16px;
    color: #111;
    font-weight: bold;
    padding: 20px 0;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 575px) {
    table.style2 thead th {
        font-size: 13px;
    }
}

table.style2 thead th:first-child {
    background-color: #eed9d9;
}

table.style2 tbody th {
    background-color: #fcf7f7;
    text-align: left;
    font-size: 16px;
    color: #111;
    font-weight: 400;
    padding: 20px 15px 20px 20px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 575px) {
    table.style2 tbody th {
        font-size: 13px;
    }
}

table.style2 tbody td {
    padding: 0 20px;
    font-size: 16px;
    color: #111;
    font-weight: 400;
    text-align: right;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 575px) {
    table.style2 tbody td {
        font-size: 13px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.board-paging li>a {
    background: none;
    font-size: 16px;
    color: #666;
    font-weight: 300;
    margin: 0 3px;
}

.board-paging li>a.page-num-current,
.board-paging li:hover>a {
    background: none;
    font-weight: 500;
    text-decoration: underline;
    color: #111;
    border: none;
}

.dim {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

.red-circle {
    position: relative;
}

.red-circle:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 3px solid #0068b7;
    border-radius: 10px;
    background-color: #fff;
    vertical-align: middle;
    margin-right: 5px;
}

.red-circle .red-txt {
    color: #0068b7;
}

.tab-menu {
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .tab-menu {
        margin-bottom: 40px;
    }
}

.tab-menu>li {
    float: left;
    width: 33.33333%;
    display: table;
    height: 60px;
}

@media (max-width: 575px) {
    .tab-menu>li {
        height: 50px;
    }
}

.tab-menu>li a {
    display: table-cell;
    vertical-align: middle;
    background: #f5f5f5;
    border: 1px solid #ddd;
    font-size: 18px;
    color: #333;
    font-weight: 400;
    text-align: center;
    margin-left: -1px;
}

@media (max-width: 575px) {
    .tab-menu>li a {
        font-size: 12px;
    }
}

.tab-menu>li a.on {
    background-color: #fff;
    font-weight: bold;
    border: 2px solid #0068b7;
    position: relative;
    z-index: 1;
}

.tab-menu.type2>li {
    width: 50%;
}

.showroom-box .slick-prev:before {
    content: "<";
    display: block;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    opacity: 1;
}

@media (max-width: 575px) {
    .showroom-box .slick-prev:before {
        font-size: 22px;
    }
}

.showroom-box .slick-next:after {
    content: ">";
    display: block;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    opacity: 1;
}

@media (max-width: 575px) {
    .showroom-box .slick-next:after {
        font-size: 22px;
    }
}

html:not(:lang(ko)) {
    font-family: 'Noto Sans', sans-serif !important;
}

html:not(:lang(ko)) .history_wrap1--fc dl dt,
html:not(:lang(ko)) .history_wrap1--fc dl dd {
    font-family: 'Noto Sans', sans-serif !important;
}

html:lang(en) .scr-catalyst h4 {
    font-size: 16px;
}

html:lang(en) .scr-catalyst .section01 .scr-top .right>ul>li p {
    font-size: 16px;
}

html:lang(en) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 140px;
}

html:lang(en) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    padding-left: 20px;
}

html:lang(en) .scr-catalyst .section01 .scr-top .right>ul>li h4:before {
    position: absolute;
    left: 0;
    top: 10px;
}

html:lang(en) .board-search-wrap--fc p:nth-of-type(2) {
    width: 235px;
}

@media (max-width: 575px) {
    html:lang(en) .board-search-wrap--fc p:nth-of-type(2) {
        width: 67%;
    }
}

html:lang(en) .research-content .section01 .research-list>li {
    min-height: 650px;
}

@media (max-width: 767px) {
    html:lang(en) .research-content .section01 .research-list>li {
        min-height: 550px;
    }
}

html:lang(en) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(en) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(en) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(en) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(en) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(zh) .ceo-greeting .section01 .txt-wrap>div span {
    text-align: left;
}

html:lang(zh) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 140px;
}

html:lang(zh) * {
    font-family: 'Noto Sans SC', sans-serif;
}

html:lang(jp) * {
    font-family: 'Noto Sans JP', 'Noto Sans KR', sans-serif;
}

html:lang(jp) .ceo-greeting .section01 .txt-wrap>div span {
    text-align: left;
}

html:lang(jp) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 140px;
}

html:lang(jp) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(jp) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(jp) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(jp) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(jp) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(jp) * {
    word-break: break-word;
}

html:lang(vn) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 220px;
}

html:lang(vn) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: 195px;
}

@media (min-width: 1200px) {
    html:lang(vn) #header .gnb>ul>li>a {
        position: relative;
        display: block;
        font-weight: 450;
        font-size: 16px;
        padding: 0 25px;
        line-height: 100px;
        color: #222;
    }

    html:lang(vn) #header .logo {
        left: 20px;
    }
}

html:lang(vn) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    padding-left: 20px;
}

html:lang(vn) .scr-catalyst .section01 .scr-top .right>ul>li h4:before {
    position: absolute;
    left: 0;
    top: 10px;
}

html:lang(vn) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(vn) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(vn) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(vn) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(vn) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(es) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 185px;
}

html:lang(es) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    padding-left: 20px;
}

html:lang(es) .scr-catalyst .section01 .scr-top .right>ul>li h4:before {
    position: absolute;
    left: 0;
    top: 10px;
}

html:lang(es) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: 220px;
}

@media (min-width: 1200px) {
    html:lang(es) #header .gnb>ul>li>a {
        position: relative;
        display: block;
        font-weight: 450;
        font-size: 16px;
        padding: 0 25px;
        line-height: 100px;
        color: #222;
    }

    html:lang(es) #header .logo {
        left: 20px;
    }
}

@media (max-width: 991px) {
    html:lang(es) .scr-catalyst .section01 .scr-top .left .img_wrap img {
        width: 100%;
        height: 100%;
    }
}

html:lang(es) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(es) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(es) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(es) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(es) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(pt) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 230px;
}

html:lang(pt) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    padding-left: 20px;
}

html:lang(pt) .scr-catalyst .section01 .scr-top .right>ul>li h4:before {
    position: absolute;
    left: 0;
    top: 10px;
}

html:lang(pt) .page-101 .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 255px;
}

html:lang(pt) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: 230px;
}

html:lang(pt) .history .section01 .top-area .btn-wrap {
    margin-top: 20px;
}

html:lang(pt) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(pt) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(pt) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(pt) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(pt) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(hi) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: 195px;
}

html:lang(hi) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 170px;
}

html:lang(hi) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(hi) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(hi) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(hi) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(hi) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(hi) .brochure .section01 .brochure-list>li .btn-download {
    width: 150px;
}

html:lang(tr) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 190px;
}

html:lang(tr) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: 195px;
}

html:lang(tr) .global-map .section01 .global-list>li>div .btn-viewmore {
    width: 180px;
}

html:lang(tr) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(tr) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(tr) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(tr) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(tr) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(fr) .technology-introduction .section03 .img-list .row>div .txt-wrap {
    padding-top: 20px;
}

html:lang(fr) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: auto;
    padding-left: 1em;
    padding-right: 1em;
}

html:lang(fr) .ceo-greeting .section01 .txt-wrap>div .sign sup {
    vertical-align: super;
}

html:lang(fr) .history .section01 .top-area .btn-wrap {
    margin-top: 20px;
}

html:lang(fr) .global-map .section01 .global-list>li>div .btn-viewmore {
    width: 110px;
}

html:lang(fr) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 230px;
}

html:lang(fr) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    padding-left: 20px;
}

html:lang(fr) .scr-catalyst .section01 .scr-top .right>ul>li h4:before {
    position: absolute;
    left: 0;
    top: 10px;
}

html:lang(fr) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(fr) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(fr) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(fr) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area {
    padding-left: 120px;
}

html:lang(fr) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(fr) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(de) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: auto;
    padding-left: 1em;
    padding-right: 1em;
}

html:lang(de) .history .section01 .top-area .btn-wrap {
    margin-top: 20px;
}

html:lang(de) .global-map .section01 .global-list>li>div .btn-viewmore {
    width: 110px;
}

html:lang(de) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 225px;
}

html:lang(de) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    padding-left: 20px;
}

html:lang(de) .scr-catalyst .section01 .scr-top .right>ul>li h4:before {
    position: absolute;
    left: 0;
    top: 10px;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area {
    padding-left: 130px;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area>span {
    width: 110px;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li h3 {
    position: relative;
    padding-left: 30px;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li h3 img {
    position: absolute;
    top: 3px;
    left: 0;
}

html:lang(de) .green-new-deal-project .section02 .img_wrap img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

html:lang(de) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area span i {
    word-break: break-all;
}

html:lang(de) .brochure .section01 .brochure-list>li .btn-download {
    width: 150px;
}

html:lang(pl) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: auto;
    padding-left: 1em;
    padding-right: 1em;
}

html:lang(pl) .history .section01 .top-area .btn-wrap {
    margin-top: 20px;
}

html:lang(pl) .global-map .section01 .global-list>li>div .btn-viewmore {
    width: 120px;
}

html:lang(pl) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 250px;
}

html:lang(pl) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(pl) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(pl) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(pl) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(pl) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(pl) .green-new-deal-project .section02 .img_wrap img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

html:lang(ru) .main_section.section01 .about-list>li h3 {
    font-weight: 400;
}

html:lang(ru) .technology-introduction .section03 .img-list .row>div .txt-wrap {
    padding-top: 10px;
}

html:lang(ru) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: auto;
    padding-left: 1em;
    padding-right: 1em;
}

html:lang(ru) .history .section01 .top-area .btn-wrap {
    margin-top: 20px;
}

html:lang(ru) .global-map .section01 .global-list>li>div .btn-viewmore {
    width: 130px;
}

html:lang(ru) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 290px;
}

html:lang(ru) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    padding-left: 20px;
}

html:lang(ru) .scr-catalyst .section01 .scr-top .right>ul>li h4:before {
    position: absolute;
    left: 0;
    top: 10px;
}

html:lang(ru) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(ru) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(ru) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(ru) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(ru) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(ru) .green-new-deal-project .section02 .img_wrap img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

html:lang(id) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: 170px;
}

html:lang(id) .history .section01 .top-area .btn-wrap {
    margin-top: 20px;
}

html:lang(id) .global-map .section01 .global-list>li>div .btn-viewmore {
    width: 130px;
}

html:lang(id) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 220px;
}

html:lang(id) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    padding-left: 20px;
}

html:lang(id) .scr-catalyst .section01 .scr-top .right>ul>li h4:before {
    position: absolute;
    left: 0;
    top: 10px;
}

html:lang(id) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(id) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(id) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(id) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(id) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(id) .green-new-deal-project .section02 .img_wrap img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

html:lang(th) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: auto;
    padding-left: 1em;
    padding-right: 1em;
}

html:lang(th) .history .section01 .top-area .btn-wrap {
    margin-top: 20px;
}

html:lang(th) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 210px;
}

html:lang(th) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    padding-left: 20px;
}

html:lang(th) .scr-catalyst .section01 .scr-top .right>ul>li h4:before {
    position: absolute;
    left: 0;
    top: 10px;
}

html:lang(th) .company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li h5 {
    width: 120px;
}

html:lang(th) .company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li p {
    width: calc(100% - 120px);
}

html:lang(th) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(th) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(th) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(th) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(th) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(th) .green-new-deal-project .section02 .img_wrap img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

html:lang(ar) {
    direction: rtl;
}

html:lang(ar) .dir-ltr {
    display: inline-block;
    direction: ltr;
}

html:lang(ar) #header .logo {
    left: auto;
    right: 60px;
}

html:lang(ar) #header .gnb {
    text-align: right;
}

html:lang(ar) #header .langW {
    right: auto;
    left: 90px;
}

html:lang(ar) #header .langW p {
    text-align: center;
    direction: ltr;
}

html:lang(ar) #header .langW ul {
    text-align: center;
}

html:lang(ar) #header .m-menu-btn {
    right: auto;
    left: 30px;
}

@media (max-width: 1199px) {
    html:lang(ar) #header .gnb ul a {
        padding-left: 0;
        padding-right: 36px;
    }

    html:lang(ar) #header .gnb>ul>li>a {
        padding-left: 0;
        padding-right: 36px;
    }

    html:lang(ar) #header .gnb>ul>li>a:before {
        left: 20px;
        right: auto;
    }

    html:lang(ar) #header .langW.mb {
        left: 33px;
    }

    html:lang(ar) #header .langW ul li a {
        padding: 2px 5px;
    }
}

html:lang(ar) .tab-menu>li {
    float: right;
}

html:lang(ar) .main_visual .visualSlide>div>div .txt_wrap p {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

html:lang(ar) .main_visual .visualSlide2 .slide_pager2 {
    direction: ltr;
}

html:lang(ar) .main_section.section03 .btn-viewmore img {
    margin-left: 0;
    margin-right: 50px;
}

html:lang(ar) .ceo-popup .inner-wrap .list-wrap .ceo-info>li>ul>li {
    padding-left: 20px;
    padding-right: 20px;
}

html:lang(ar) .ceo-popup .inner-wrap .list-wrap .ceo-info>li>ul>li:before {
    left: auto;
    right: 10px;
}

html:lang(ar) .ceo-popup .inner-wrap .list-wrap .ceo-info>li>ul>li h5 {
    float: right;
    margin-right: 0;
    margin-left: 10px;
}

html:lang(ar) .technology-introduction .section04 .txt-list li>div {
    text-align: right;
    padding: 40px 70px 0 0;
}

html:lang(ar) .technology-introduction .section04 .txt-list li>div .btn-left {
    text-align: right;
}

html:lang(ar) .technology-introduction .section04 .txt-list li>div .btn-popup {
    width: auto;
    padding-left: 1em;
    padding-right: 1em;
}

html:lang(ar) .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(1)>div:before,
html:lang(ar) .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(2)>div:before {
    right: auto;
    left: -80px;
}

html:lang(ar) .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(1)>div:after,
html:lang(ar) .management-philosophy-and-management-goal .section01 .inner .goal-list li:nth-child(2)>div:after {
    right: auto;
    left: -72px;
}

html:lang(ar) .history .section01 .top-area h3 {
    float: right;
}

html:lang(ar) .history .section01 .top-area .btn-wrap {
    float: left;
    margin-top: 20px;
}

html:lang(ar) .history_wrap1--fc {
    padding-left: 0;
    padding-right: 60px;
}

html:lang(ar) .history_wrap1--fc:before,
html:lang(ar) .history_wrap1--fc:after {
    left: auto;
}

html:lang(ar) .history_wrap1--fc:before {
    right: 17px;
}

html:lang(ar) .history_wrap1--fc:after {
    right: 5px;
}

html:lang(ar) .history_wrap1--fc dl dd {
    padding-left: 0;
    padding-right: 20px;
}

html:lang(ar) .history_wrap1--fc dl dd:before {
    left: auto;
    right: 0;
}

html:lang(ar) .history_tit1--fc:before {
    left: auto;
    right: -50px;
}

html:lang(ar) .history_tit1--fc:after {
    left: auto;
    right: -40px;
}

html:lang(ar) .global-map .section01 .global-list>li>div {
    text-align: right;
}

html:lang(ar) .global-map .section01 .global-list>li>div .btn-viewmore {
    right: auto;
    left: 30px;
    width: 130px;
}

html:lang(ar) .scr-catalyst .section01 .scr-top .left {
    float: right;
    padding-right: 0;
    padding-left: 70px;
}

html:lang(ar) .scr-catalyst .section01 .scr-top .right {
    float: left;
}

html:lang(ar) .scr-catalyst .section01 .scr-top .right>ul>li {
    padding-left: 0;
    padding-right: 190px;
    text-align: right;
}

html:lang(ar) .scr-catalyst .section01 .scr-top .right>ul>li:after,
html:lang(ar) .scr-catalyst .section01 .scr-top .right>ul>li:before {
    content: '';
    display: block;
    clear: both;
}

html:lang(ar) .scr-catalyst .section01 .scr-top .right>ul>li h4 {
    left: auto;
    right: 0;
}

@media (min-width: 1200px) {
    html:lang(ar) .scr-catalyst .section02 .ct-wrap .left {
        width: 56%;
    }

    html:lang(ar) .scr-catalyst .section02 .ct-wrap .right {
        width: 44%;
    }
}

html:lang(ar) .company-affiliated-research-institute .section01 .area h3 {
    text-align: right;
}

html:lang(ar) .company-affiliated-research-institute .section01 .area .status-wrap li {
    float: right;
    margin-left: 0;
    margin-right: -40px;
}

html:lang(ar) .company-affiliated-research-institute .section01 .area .history-wrap>div {
    float: right;
    text-align: right;
    padding: 50px 55px 0 0;
}

html:lang(ar) .company-affiliated-research-institute .section01 .area .history-wrap>div:before {
    left: auto;
    right: 13px;
}

html:lang(ar) .company-affiliated-research-institute .section01 .area .history-wrap>div:after {
    left: auto;
    right: 0;
}

html:lang(ar) .company-affiliated-research-institute .section01 .area .history-wrap>div>div.row h4:before {
    left: auto;
    right: -49px;
}

html:lang(ar) .company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li h5 {
    float: right;
}

html:lang(ar) .company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li h5:before {
    display: none;
}

html:lang(ar) .company-affiliated-research-institute .section01 .area .history-wrap>div>div.row>ul li h5:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    border: 2px solid #111;
    background-color: #fff;
    vertical-align: middle;
    margin-right: 15px;
}

html:lang(ar) .company-overview .section01 .left ul li,
html:lang(ar) .catalyst-design .section01 .txt-list li,
html:lang(ar) .green-new-deal-project .section02 .txt-list li {
    padding-left: 0;
    padding-right: 20px;
    text-align: right;
}

html:lang(ar) .company-overview .section01 .left ul li:before,
html:lang(ar) .catalyst-design .section01 .txt-list li:before,
html:lang(ar) .green-new-deal-project .section02 .txt-list li:before {
    left: auto;
    right: 0;
}

html:lang(ar) .catalyst-design .section03 p,
html:lang(ar) .scr-catalyst h4 {
    text-align: right;
}

html:lang(ar) .catalyst-design .section01 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

html:lang(ar) .consultation-inquiries .section01 .consult-wrap {
    text-align: center;
}

html:lang(ar) .consultation-inquiries .section01 .consult-wrap>div {
    float: none;
    display: inline-block;
}

html:lang(ar) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap {
    float: none;
    display: inline-block;
}

html:lang(ar) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap .top-area p {
    text-align: left;
}

html:lang(ar) .consultation-inquiries .section01 .consult-wrap>div .txt-wrap ul li {
    text-align: left;
}

html:lang(ar) .green-new-deal-project .section02 .img_wrap img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

html:lang(ar) .brochure .section01 .top .search-form input[type='text'] {
    padding: 0 10px 0 50px;
}

html:lang(ar) .brochure .section01 .top .search-form input[type='button'] {
    left: 20px;
    right: auto;
}

html:lang(ar) .search-input-wrap--fc a {
    right: auto;
    left: 0;
}

html:lang(ar) .search-input-wrap--fc input[type='text'] {
    padding-right: 10px;
    padding-left: 38px;
}

html:lang(ar) select {
    background-position: left 10px center;
}

html:lang(ar) #footer .footer-bottom {
    *zoom: 1;
}

html:lang(ar) #footer .footer-bottom:before,
html:lang(ar) #footer .footer-bottom:after {
    content: "";
    display: table;
    clear: both;
}

@media (min-width: 1200px) {
    html:lang(ar) #footer .footer-bottom .address {
        text-align: right;
    }

    html:lang(ar) #footer .footer-bottom .address .dir-ltr {
        display: inline-block;
        text-align: left;
    }

    html:lang(ar) #footer .footer-bottom .copyright {
        right: auto;
        left: 0;
    }
}

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