@charset "UTF-8";
:root {
  --abu-white: #ffffff;
  --abu-black: #111111;
  --abu-line-gray: #ddd;
}

:root,
.lightmode {
  --abu-mode: #ffffff;
  --abu-main-color: #111111;
  --abu-gray: #AEAEAE;
  --abu-disabled: #A2A2A2;
  --abu-bar: #ddd;
  --abu-bar-thumb: #7a7b85;
  --abu-bar-active: #54585e;
  --abu-footer-arrow: #555;
  --abu-footer-border: #ddd;
  --abu-footer-color: #34363b;
  --abu-footer-select-bg: #fff;
  --abu-footer-point: #1745a5;
  --abu-footer-txt: #54585f;
}

.darkmode {
  --abu-mode: #111111;
  --abu-main-color: #ffffff;
  --abu-gray: #AEAEAE;
  --abu-disabled: #A2A2A2;
  --abu-bar: #222;
  --abu-bar-thumb: #D6D6D6;
  --abu-bar-active: #eee;
  --abu-footer-arrow: #b6b3ae;
  --abu-footer-border: #3C3E44;
  --abu-footer-color: #ccc;
  --abu-footer-point: #0384c7;
  --abu-footer-select-bg: #111111;
  --abu-footer-txt: #7A7B85;
}
.darkmode .footer .footer-bottom .footer-sns li.sns1, .darkmode .footer .footer-bottom .footer-sns li.sns2, .darkmode .footer .footer-bottom .footer-sns li.sns3, .darkmode .footer .footer-bottom .footer-sns li.sns4 {
  background-position-x: -30px;
}

html,
body,
form,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
fieldset,
table,
th,
td,
figure,
hr {
  margin: 0;
  padding: 0;
  font-weight: normal;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.blind {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

img {
  border: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
}

br {
  font-family: initial;
}

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

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

img,
fieldset,
iframe {
  border: 0 none;
}

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

em,
address {
  font-style: normal;
}

img,
input,
select,
textarea {
  vertical-align: middle;
}

input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

button,
label {
  cursor: pointer;
}

button {
  padding: 0;
  background: 0;
  color: inherit;
  border: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}
button img {
  left: -3px;
  *left: auto;
}

html:first-child select {
  height: 20px;
  padding-right: 6px;
}

option {
  padding-right: 6px;
}

textarea {
  overflow: auto;
  *margin: -1px 0;
  padding-right: 1px;
}

.blind,
legend,
caption {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

hr {
  display: none;
}

legend {
  *width: 0;
}

:root legend {
  margin-top: -1px;
  font-size: 0;
  line-height: 0;
}

caption {
  *line-height: 0;
}

sub {
  font-size: 10px;
}

.clear:after {
  clear: both;
  content: "";
  display: block;
}

#bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 1001;
}

div.ie_alert_text {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #ddd;
  z-index: 10000;
  text-align: center;
  padding-top: 10px;
  font-size: 13px;
  font-family: "Noto Sans KR", sans-serif;
}

#skip-nav {
  font-size: 16px;
  line-height: 40px;
  position: fixed;
  z-index: 100000;
  top: -40px;
  left: 0;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-align: center;
  color: var(--abu-white);
  background: rgba(0, 0, 0, 0.6);
}
#skip-nav:focus {
  top: 0;
}

.e_ {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
}

/*scrollbar*/
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--abu-bar-thumb);
  border-radius: 9px;
}

::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
  background: var(--abu-bar-active);
}

/*body*/
body {
  background: var(--abu-mode);
  color: var(--abu-main-color);
}
body.sub:not(.scroll-evt) header {
  height: 100px;
  transition: none;
}
body.scroll-evt header, body.sub header {
  height: 100px;
  background: var(--abu-mode);
  border-color: rgba(255, 255, 255, 0.3);
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  color: var(--abu-white);
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: 0.3s;
  z-index: 1000;
}
header .inner-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px 0 70px;
  box-sizing: border-box;
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo .group {
  display: flex;
  align-items: center;
}
header .logo .group:not(:last-child):after {
  display: block;
  content: "";
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 23px 0 28px;
}
header .logo a {
  display: block;
}
header .logo a.kbs {
  height: 32px;
  margin-right: 9px;
}
header .logo a.kbs50 {
  height: 26px;
}
header .logo a.abu {
  height: 23px;
}
header .logo a img {
  display: inline-block;
  vertical-align: top;
  height: 100%;
}
header .gnb {
  position: relative;
}
header .gnb .gnb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .gnb .gnb-nav li {
  color: var(--abu-white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
}
header .gnb .gnb-nav li a {
  box-sizing: border-box;
}
header .gnb .gnb-nav li.link-type1 {
  margin-left: 37px;
}
header .gnb .gnb-nav li.link-type1 a {
  padding: 6px 24px 5px 25px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transition: 0.1s;
}
header .gnb .gnb-nav li.link-type1:hover a {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--abu-white);
  transition: 0.3s;
}
header .gnb .gnb-nav li + li {
  margin-left: 64px;
}

.header .logo,
.header .gnb-nav li {
  opacity: 0;
}

.footer {
  position: relative;
  padding: 0 0 60px;
  width: 100%;
  border-top: 1px solid var(--abu-footer-border);
  background: var(--abu-mode);
  z-index: 21;
}
.footer .footer-top {
  margin: 0 auto;
  width: 1200px;
  height: 50px;
  border-bottom: 1px solid var(--abu-footer-border);
}
.footer .footer-top:after {
  clear: both;
  content: "";
}
.footer-top .all-service {
  float: right;
}
.footer-top .all-service > ul > li {
  float: left;
}
.footer-top .footer-select1 {
  position: relative;
  float: left;
}
.footer-top .footer-select2 {
  position: relative;
  float: left;
  margin: 0 20px 0 0;
}
.footer-top .footer-select3 {
  position: relative;
  float: left;
}
.footer-select1 .btn-select, .footer-select2 .btn-select, .footer-select3 .btn-select {
  margin: 0 20px 0 0;
  padding: 0 25px 0 0;
  cursor: pointer;
}
.footer-select1 .btn-select a, .footer-select2 .btn-select a, .footer-select3 .btn-select a {
  display: inline-block;
  line-height: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--abu-footer-color);
}
.footer-select1 .btn-select .ico, .footer-select2 .btn-select .ico, .footer-select3 .btn-select .ico {
  position: absolute;
  right: 25px;
  top: 50%;
  border-bottom: 6px solid var(--abu-footer-arrow);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  margin: -2px 0 0 0;
}
.footer-select1 ul, .footer-select2 ul, .footer-select3 ul {
  display: none;
  position: absolute;
  bottom: 0px;
  right: 10px;
  border: 1px solid var(--abu-footer-border);
  background: var(--abu-footer-select-bg);
  z-index: 20;
}
.footer-select1 ul.on, .footer-select2 ul.on, .footer-select3 ul.on {
  display: block;
}
.footer-select1 ul li a, .footer-select2 ul li a, .footer-select3 ul li a {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  width: 80px;
  line-height: 40px;
  font-size: 12px;
  font-weight: 700;
  color: var(--abu-footer-color);
  z-index: 10;
}
.footer-select1 ul li.on a, .footer-select2 ul li.on a, .footer-select3 ul li.on a {
  line-height: 50px;
}
.footer-select1 ul .ico, .footer-select2 ul .ico, .footer-select3 ul .ico {
  position: absolute;
  right: 13px;
  top: 50%;
  border-top: 6px solid var(--abu-footer-arrow);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: none;
  margin: -2px 0 0 0;
}
.footer-select1 ul li, .footer-select2 ul li, .footer-select3 ul li {
  position: relative;
  cursor: pointer;
}
.footer-select2 ul li a {
  width: 100px;
}
.footer-select3 ul li a {
  width: 100px;
}
.footer-top .selectric .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--abu-footer-color);
}
.footer-top .selectricItems li {
  font-size: 12px;
  font-weight: 700;
  color: var(--abu-footer-color);
}
.footer-top .selectric .button {
  background-image: url(../images/ico/bg-selectbox1.png);
}
.footer-top .footer-top-info {
  float: left;
}
.footer-top .footer-top-info li {
  float: left;
  margin: 0 20px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--abu-footer-color);
}
.footer-top .footer-top-info li a {
  display: inline-block;
  line-height: 50px;
  font-size: 12px;
  color: var(--abu-footer-color);
}
.footer-top .footer-top-info li a strong {
  color: var(--abu-footer-point);
  vertical-align: baseline;
}
.footer .footer-bottom {
  position: relative;
  width: 1200px;
  margin: 30px auto 0;
}
.footer .footer-bottom dl {
  display: flex;
  justify-content: space-between;
}
.footer .footer-bottom dt {
  margin: 0 20px 0 0;
  font-size: 12px;
  color: var(--abu-footer-color);
}
.footer .footer-bottom dd {
  float: left;
  width: 750px;
}
.footer .footer-bottom dd.sns-area {
  float: right;
  width: auto;
  text-align: right;
  padding: 0 20px 0 0;
}
.footer .footer-bottom dd ul {
  clear: both;
}
.footer .footer-bottom dd li {
  float: left;
  margin: 0 20px 5px 0;
  font-size: 12px;
  color: var(--abu-footer-txt);
}
.footer .footer-bottom .footer-sns {
  float: right;
  margin: 0 23px 0 0;
}
.footer .footer-bottom .footer-sns li {
  position: relative;
  margin: 0 4px;
  width: 30px;
  height: 30px;
  background: url(../img/common/ico-sns.png) no-repeat;
}
.footer .footer-bottom .footer-sns li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer .footer-bottom .footer-sns li a:focus {
  outline: 1px dashed;
  outline: 1px auto -webkit-focus-ring-color;
  transform: scale(0.99);
}
.footer .footer-bottom .footer-sns li.sns1 {
  background-position-y: 0;
}
.footer .footer-bottom .footer-sns li.sns2 {
  background-position-y: -31px;
}
.footer .footer-bottom .footer-sns li.sns3 {
  background-position-y: -64px;
}
.footer .footer-bottom .footer-sns li.sns4 {
  background-position-y: -96px;
}

footer,
footer *,
footer ul,
footer li,
footer strong,
footer dt,
footer dd {
  font-family: "Noto Sans", "Apple SD Gothic Neo", "애플 SD 산돌고딕 Neo", "Helvetica Neue", "Roboto", "sans-serif";
}

/*wrap / common*/
#wrap {
  min-width: 1300px;
  /* slider - common */
  /* btn - style1 */
  /* btn - style2 */
  /* hover */
}
#wrap .inner-wrap {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
#wrap .con-title-g {
  text-align: center;
}
#wrap .con-title-g .main-tit {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 76px;
  text-transform: uppercase;
}
#wrap .con-title-g .sub-tit {
  margin-top: 15px;
  color: var(--abu-gray);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
}
#wrap .red-dot {
  position: relative;
  width: 6px;
  height: 6px;
  background: #CD1010;
  border-radius: 50%;
  display: inline-block;
  vertical-align: top;
  margin: 3px 0 0 5px;
}
#wrap .red-dot::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 8px;
  height: 8px;
  background: #d40909;
  border-radius: 50%;
  animation: pulsate 1.5s ease-out infinite;
  box-sizing: border-box;
}
@-webkit-keyframes pulsate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(2.3);
    transform: scale(2.3);
  }
}
@keyframes pulsate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(2.3);
    transform: scale(2.3);
  }
}
#wrap #sticky-wrap {
  position: relative;
  z-index: 20;
}
#wrap #sticky-wrap .inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: fadeUpAni 0.6s 0.4s forwards;
  backdrop-filter: blur(3.5px);
}
#wrap .sticky-link {
  position: relative;
  text-align: center;
  background: rgba(38, 38, 38, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 28px 0;
  z-index: 20;
}
#wrap .sticky-link .inner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
#wrap .sticky-link .text {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 150%;
}
#wrap .sticky-link .link {
  position: relative;
  margin-left: 35px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--abu-black);
  padding: 10px 30px 8px;
  transition: 0.2s;
}
#wrap .sticky-link .link::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--abu-white);
  border-radius: 24px;
  z-index: -1;
  transition: 0.3s;
}
#wrap .sticky-link .link:hover {
  transform: scale(0.96);
}
#wrap .sticky-link .link:hover:before {
  transform: scale(0.95);
}
#wrap #top-btn {
  position: relative;
  z-index: 10;
}
#wrap #top-btn button {
  position: absolute;
  bottom: 30px;
  right: 169px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: none;
}
#wrap #top-btn button .ico {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}
#wrap #top-btn button .ico:before, #wrap #top-btn button .ico:after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/common/top-btn.png) no-repeat center/cover;
}
#wrap #top-btn button:hover .ico:before, #wrap #top-btn button:hover .ico:after {
  transform: translateY(-100%);
  transition: 0.5s;
}
#wrap .slider-container {
  overflow: hidden;
  /* slider - style 1 */
  /* slider - style 2 */
}
#wrap .slider-container .swiper-notification {
  font-size: 0;
  display: inline;
}
#wrap .slider-container .navigation {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 80px;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transform-origin: left top;
  z-index: 12;
}
#wrap .slider-container .navigation.btn {
  transition: 0.3s;
}
#wrap .slider-container .navigation.btn.prev {
  right: calc(100% + 17px + 152px);
  transform-origin: right top;
  background-image: url("../img/common/slider-arr-prev-t1.png");
}
#wrap .slider-container .navigation.btn.next {
  left: calc(100% + 17px + 152px);
  background-image: url("../img/common/slider-arr-next-t1.png");
}
#wrap .slider-container .navigation.btn.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
  visibility: visible;
}
#wrap .slider-container .navigation.btn:hover {
  transform: scale(1.25) translateY(-50%);
}
#wrap .slider-container .navigation2 {
  position: absolute;
  top: 0;
  width: 428px;
  height: 100%;
  background: transparent;
  z-index: 10;
}
#wrap .slider-container .navigation2.btn.prev {
  right: calc(100% + 17px);
}
#wrap .slider-container .navigation2.btn.next {
  left: calc(100% + 17px);
}
#wrap .slider-container .navigation2.btn.swiper-button-disabled {
  pointer-events: none;
}
#wrap .slider-container .slider-type-1 {
  position: relative;
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
}
#wrap .slider-container .slider-type-1 .slide {
  width: 100%;
}
#wrap .slider-container .slider-type-2 {
  position: relative;
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
}
#wrap .slider-container .slider-type-2 .slide {
  width: 100%;
}
#wrap .more-details-style1 {
  color: var(--abu-white);
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.1);
  padding: 10px 25px;
  transition: 0.1s;
}
#wrap .more-details-style1 span:after {
  display: inline-block;
  content: "";
  background: url(../img/common/arr-next-t2.png) no-repeat top left/100%;
  width: 20px;
  height: 15px;
  margin-left: 23px;
}
#wrap .more-details-style1:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: #fff;
  transition: 0.3s;
}
#wrap .more-details-style2 {
  position: relative;
  width: 51px;
  height: 51px;
  background: var(--abu-white);
  border-radius: 50%;
  overflow: hidden;
}
#wrap .more-details-style2::before, #wrap .more-details-style2::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/common/arr-next-t1.png);
  background-size: 51px;
  background-position: center;
  background-repeat: no-repeat;
}
#wrap .more-details-style2::after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(-100%, 0, 0);
}
#wrap .more-details-style2:hover::before {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  transition: 0.5s;
}
#wrap .more-details-style2:hover::after {
  transform: translate3d(0%, 0, 0);
  transition: 0.5s;
}
#wrap .hover .more-details-style2::before {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  transition: 0.5s;
}
#wrap .hover .more-details-style2::after {
  transform: translate3d(0%, 0, 0);
  transition: 0.5s;
}

/* animation */
.fade-in-type2 {
  opacity: 0;
}
.fade-in-type2.in-view {
  animation-name: fadeInAni2;
  animation-duration: 0.7s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

.fade-in {
  opacity: 0;
}
.fade-in.in-view {
  animation-name: fadeInAni;
  animation-duration: 0.7s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

.fade-up {
  opacity: 0;
}
.fade-up.in-view {
  animation-name: fadeUpAni;
  animation-duration: 0.7s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

/* animation */
@keyframes strokeText {
  100% {
    color: transparent;
  }
}
@keyframes showText {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 0%, 0);
  }
}
@keyframes gradient1 {
  0% {
    opacity: 1;
    width: 0%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
@keyframes fadeInAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAni2 {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translate3d(0, 0px, 0);
  }
}
@keyframes fadeUpAni {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
}
@keyframes fadeOutAni {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeRtAni {
  0% {
    opacity: 0;
    transform: translate3d(30px, 0px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
}
@keyframes fadeLtAni {
  0% {
    opacity: 0;
    transform: translate3d(-30px, 0px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
}
@keyframes scaleAni {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}
/* resize */
@media (max-width: 2060px) {
  #wrap #top-btn button {
    right: 60px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 1660px) {
  header .inner-wrap {
    padding: 0 45px;
  }
  header .gnb .gnb-nav li + li {
    margin-left: 40px;
  }
}
@media (max-width: 1540px) {
  header .gnb .gnb-nav li {
    font-size: 17px;
  }
  header .gnb .gnb-nav li.link-type1 {
    margin-left: 25px;
  }
  header .gnb .gnb-nav li + li {
    margin-left: 30px;
  }
}
@media (max-width: 1459px) {
  header .inner-wrap {
    padding: 0 35px;
  }
  header .logo a.kbs {
    height: 25px;
  }
  header .logo a.kbs50 {
    height: 21px;
  }
  header .logo a.abu {
    height: 21px;
  }
  header .gnb .gnb-nav li {
    font-size: 16px;
  }
  header .gnb .gnb-nav li.link-type1 {
    margin-left: 20px;
  }
  #wrap .slider-container .navigation.btn.prev {
    right: calc(100% + 17px + 80px);
  }
  #wrap .slider-container .navigation.btn.next {
    left: calc(100% + 17px + 80px);
  }
}
@media (max-width: 1400px) {
  .navigation {
    display: none;
  }
}

/*# sourceMappingURL=common.css.map */
