@charset "UTF-8";

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 10px;
}

body {
  height: calc(var(--vh, 1vh) * 100);
  color: #000;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  margin: 0;
  padding: 0;
  word-break: keep-all;
}

header,
footer,
main,
section,
article,
nav,
aside {
  display: block;
}

ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

fieldset,
hr {
  display: block;
  margin: 0;
  padding: 0;
  border: 0 none;
}

input,
select {
  max-width: 100%;
  vertical-align: middle;
}

input,
select,
button,
textarea,
optgroup {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

address,
em,
i {
  font-style: normal;
}

strong {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  border: 0 none;
  background: none;
  cursor: pointer;
}

input[type='submit'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
  border: 0 none;
  font-size: 0;
  vertical-align: middle;
}

summary {
  list-style: none;
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  font-weight: 600;
}

caption,
legend,
.sr-only,
.hidden,
.blind,
.IR {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0 none;
  clip: rect(0, 0, 0, 0);
}

iframe {
  filter: blur(0) url(#sharpen);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #9e9e9e;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #9e9e9e;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #9e9e9e;
}

input::placeholder,
textarea::placeholder {
  color: #9e9e9e;
}

.bx-wrapper .bx-loading {
  display: none;
}

.bx-wrapper .bx-viewport {
  -webkit-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #d0d9e3;
  border-radius: 5rem;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}

#skip-nav {
  position: absolute;
  left: 0;
  top: -1000px;
  width: 100%;
  height: 0px;
  z-index: 1000;
  line-height: 0px;
  font-size: 0px;
}

#skip-nav a {
  display: block;
  text-align: center;
  width: 100%;
  line-height: 0px;
  font-size: 0px;
}

#skip-nav a:focus,
#skip-nav a:hover,
#skip-nav a:active {
  position: absolute;
  left: 0px;
  top: 1000px;
  padding: 0.8rem 0;
  display: block;
  height: 4.5rem;
  background: #20262c;
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
  color: #fff;
}

.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.float_clear::after {
  display: block;
  clear: both;
  content: '';
}

/* 게시판 */
select {
  position: relative;
  padding-right: 2.8rem;
  background-size: 1.8rem;
  line-height: calc(4.8rem - 2px);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Animation */
.animation-stop,
.animation-stop:before {
  animation-play-state: paused !important;
}
@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes image-zoom-out {
  from {
    transform: scale(1.08, 1.08);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes down {
  from {
    transform: translateY(-2rem);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes up {
  from {
    transform: translateY(2rem);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes text-active-animation {
  0% {
    opacity: 0;
    filter: Alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: Alpha(opacity=100);
  }
}
@keyframes sub-visual {
  0% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(1rem);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes left {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(150px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
@keyframes right {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-60rem);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

@keyframes reveal {
  0% {
    opacity: 0;
    transform: translate(0, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes navi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translateZ(0);
  }
}


/* 스피너 스타일 */
.loader {
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 100;
  display: none;
}

/* 마스킹 스타일 */
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}