/**
* Updated: Sep 18 2023 with Bootstrap v5.3.2
*/





/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

/*.container {
  max-width: 1000px;
}*/

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.ml-1 {
  margin-left: 0.4rem !important;
}



body {
  max-width:100%
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.mask {
  position: fixed;
  background-color: rgba(0, 0, 0);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .5;
  transition: 0.5s ease;
  z-index: 9999;
}



/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1ede7;
}

.section-header {
  text-align: center;
  padding-bottom: 2vh;
}

.section-header h2 {
  font-size: 4.5vh;
  text-transform: uppercase;
  position: relative;
  color: var(--color-secondary);
}

.section-header img {
  position: relative;
  height: 2vh;
  top:-1.5vh;
}

.fc-w {
    filter: invert(99%) sepia(4%) saturate(2%) hue-rotate(300deg) brightness(117%) contrast(100%);/* white color */
}


.fc-b {
    filter: invert(21%) sepia(50%) saturate(2447%) hue-rotate(213deg) brightness(86%) contrast(96%);/* blue color */
}


.fc-bw {
    filter: invert(13%) sepia(39%) saturate(2338%) hue-rotate(19deg) brightness(93%) contrast(92%);/* brown color */
}

.section-header p {
  font-size: 2vh;
  margin: 0 auto;
  color: var(--color-secondary);
}



@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
  
}

@media (max-width: 575px) {

  .section-header h2::before {
    left: calc(50% - 80px);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(12, 11, 9, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  box-shadow: 0px 2px 20px rgba(var(--color-black-rgb), 0.4);
}

.header.sticked {
  background: rgba(12, 11, 9, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 20px rgba(var(--color-black-rgb), 0.4);
}

.header .logo img {
  max-height: 50px;
  margin-right:50px;
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-white);
    font-size: 18px;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.9);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-black-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-primary-rgb), 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-black-rgb), 0.3);
  }

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

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 26px;
    z-index: 9999;
    right: 18px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-black-rgb), 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# mobile
--------------------------------------------------------------*/


@media (min-width: 575px) {
  .mo {
    display: none;
  }
}

@media (max-width: 575px) {
  .pc {
    display: none;
  }
}


/*--------------------------------------------------------------
# Community
--------------------------------------------------------------*/

.social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.social-links img {
  height: 26px;
}



@media (max-width: 1279px) {

  .social-links {
    position: relative;
    right: 43px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .social-links img {
    height: 22px;
  }
}


/*--------------------------------------------------------------
# Slide
--------------------------------------------------------------*/

.swiper-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /*overflow: hidden;*/
  z-index: 1;
  transition-duration: 0.4s;
  width: 100%;
  min-height: 100vh;
}

.swiper-img::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.0);
  position: absolute;
  inset: 0;
}




.btn_arrow{
  position:absolute;
  top:50%;
  transition: 0.3s;
  width: 86px;
  height: 86px;
  z-index:10;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.btn_arrow:hover {
  filter: brightness(120%);
}

.btn_arrow:active {
  transform: scaleX(1.2);
}

.btn_arrow.swiper-button-disabled{
  filter: grayscale(100%);
  cursor:auto;
  pointer-events:none;
}

.btn_arrow.swiper-button-disabled img {
  filter: brightness(30%);
}

.btn_arrow.swiper-button-hidden{
  opacity:0;
  cursor:auto;
  pointer-events:none
}

.swiper-navigation-disabled .btn_arrow{
  display:none!important
}

.btn_arrow:after{
  font-family:unset;
  text-transform:none!important;
  letter-spacing:0;
}

 



.swiper-mt {
  margin-top: 20px;
  position: relative;
}


.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--color-black-rgb), 0.5);;
  opacity: 1;
  border-radius: 0;

}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  width: 32px;
  transition-duration: 0.3s;
  
}




@media (max-width: 575px) {

  
  .btn_arrow {
    display: none;
  }
   
}


/*--------------------------------------------------------------
# button
--------------------------------------------------------------*/
.btn-two {
  color: white; 
  padding: 10px 25px 10px;

  display: inline-block;
  border-radius: 5px;
  line-height: 20px;
  border: 1px solid rgba(0,0,0,0.21);
  border-bottom-color: rgba(0,0,0,0.34);
  text-shadow:0 1px 0 rgba(0,0,0,0.15);
  box-shadow: 0 1px 0 rgba(255,255,255,0.34) inset, 
              0 2px 0 -1px rgba(0,0,0,0.13), 
              0 3px 0 -1px rgba(0,0,0,0.08), 
              0 3px 13px -1px rgba(0,0,0,0.21);
}
.btn-two:active {
  top: 1px;
  border-color: rgba(0,0,0,0.34) rgba(0,0,0,0.21) rgba(0,0,0,0.21);
  box-shadow: 0 1px 0 rgba(255,255,255,0.89),0 1px rgba(0,0,0,0.05) inset;
  position: relative;
}
.btn-sm{
  position: relative;
  padding: 5px 10px 4px;
}
/* Colors for .btn and .btn-two */
.btn.blue, .btn-two.blue     {background-color: #7fb1bf;}
.btn.green, .btn-two.green   {background-color: #9abf7f;}
.btn.red, .btn-two.red       {background-color: #fa5a5a;}
.btn.purple, .btn-two.purple {background-color: #cb99c5;}
.btn.cyan, .btn-two.cyan     {background-color: #7fccde;}
.btn.yellow, .btn-two.yellow {background-color: #f0d264;}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    max-height: -webkit-fill-available;
    max-height: 100%;
    position: relative;
    height: auto !important;
    background: url("https://images.thumbage.co.kr/images/idlehero/launching/background/bg-main.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*------------------------ 20250522 -----------------------*/
.hero .content {
  position: relative;
  min-height: 65vh;
  top:4vh;
}

.hero .logo {
  position: relative;
  height: 10vh;
}

.hero .title {
  width: 85%;
  position: relative;
  margin-top:-150px;
  margin-bottom:25vh;
}

.hero .btn-play {
  position:absolute;
  margin-top:4vh;
  height: 10vh;
  transform: translate(-50%, -50%);
}

.hero .btn_main {
  position: relative;
  margin-top:10vh;
}

.hero .btn {
  height: 8vh;
}

.hero .ani {
  position: absolute;
}

.hero .img-1 {
  height: 15vh;
  top: 25%;
  right: 15%;
  animation: motion 0.8s ease-in 0s infinite alternate;
  margin-top: 0;
  -webkit-animation: motion 0.8s ease-in 0s infinite alternate;
  margin-top: 0;
}

.hero .img-2 {
  height: 17vh;
  top: 35%;
  left: 15%;
  animation: motion 1s ease-out 0s infinite alternate;
  margin-top: 0;
  -webkit-animation: motion 1s ease-out 0s infinite alternate;
  margin-top: 0;
}

.hero .ani img {
  width: 100%;
  height: 100%;
}

@keyframes motion {
  0% {margin-top: 0px;}
  100% {margin-top: 20px;}
}

-webkit-@keyframes motion {
  0% {margin-top: 0px;}
  100% {margin-top: 20px;}
}


@media (max-width: 575px) {
  .hero {    
    background-position-x: 50%;    
  }

/*------------------------ 20250522 -----------------------*/
  .hero .content {
    position: relative;
    top:17vh;
  }

  .hero .logo {
    margin-top: -25vh;
  }

  .hero .title {
    margin-top:-80px;
    margin-left:-15px;
    padding-bottom:7vh;
    width: 110%;
  }
  
  .hero .btn {
    padding-top: 0vh;
    height: 8vh;
  }

  .hero .btn-play {
    margin-top:-3vh;
    height: 10vh;
  }

  .hero .btn_main {
    top:-50px;
    position: relative;
  }
/*------------------------// 20250522 -----------------------*/
  .hero .img-1 {
    top: 11%;
    right: 9%;
  }

  .hero .img-2 {
    display: none;
  }
 

}


/*--------------------------------------------------------------
# Reservation Section
--------------------------------------------------------------*/
.reservation {
    width: 100%;
    min-height: 100vh;
    max-height: -webkit-fill-available;
    max-height: 100%;
    position: relative;
    height: auto !important;
    background: url("https://images.thumbage.co.kr/images/idlehero/arp/bg-reservation.webp") repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.reservation .carousel {
  min-width: 100% !important;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top:3vh;
}

.reservation h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin:10px 0 14px 0;
}

.reservation .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}

.reservation .icon-box {
  margin-top: 10px;
}

.reservation .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Worldview Section
--------------------------------------------------------------*/
.worldview {
  width: 100%;
  min-height: 100vh;
  max-height: -webkit-fill-available;
  max-height: 100%;
  position: relative;
  height: auto!important;
  background: url("https://images.thumbage.co.kr/images/idlehero/arp/background/bg-worldview.webp") repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}



.worldview .nav-tabs {
  margin: 0 auto;
  border: 0;
  width: 520px;

}

.worldview .book .num {
  position: absolute;
  margin:43px 0px 0px 30px;
}

.worldview .book img {
  width: 100px;
}

.worldview .nav-link {
  color: var(--color-secondary);
  border: 0;
  border-color:unset;
  border-radius: 0;
  cursor: pointer;
  filter: grayscale(100%);
  transition: 0.3s;
}

.worldview .nav-link h1 {
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-secondary);
}

.worldview .nav-link:hover {
  border-color:unset;
  filter: grayscale(50%);
  border: 0;
  transform: translateY(-10px);
}

.worldview .nav-link.active {
  filter: grayscale(0%);
  background-color:unset;
  border: 0;
  transform: translateY(-20px);
}

.worldview .nav-link.active h1 {
  color: var(--color-black);
}

.worldview .tab-content {
  width: 100%;
  margin:-140px auto 0;
  position: relative;
}

.worldview .tab-pane {
  padding:127px 140px 35px;
  background: url("https://images.thumbage.co.kr/images/idlehero/arp/worldview/bg-book-big.webp") no-repeat center center;
  background-size: 90%;
}

.worldview .swiper-slide img {
  padding:11px 0px;
}

.worldview .swiper-slide .margin-s {
  margin-bottom:40px;
}

.worldview .swiper-pagination {
  color: var(--color-black);
}



.worldview .swiper-slide i {
  position: absolute;
  font-size: 1.2vh;
  color: var(--color-white);
  margin: 15px 0px 0px 5px;
}

.worldview .prev {
  top:438px;
  left:0px;
}
.worldview .next {
  top:438px;
  right:0px;
}

.worldview .next img {
  transform: scaleX(-1);
}

.worldview .prev:active {
  margin-left:-20px;
}

.worldview .next:active {
  margin-right:-20px;
}



@media (max-width: 575px) {

  .worldview .tab-content {
    width: 100%;
    
  }
  .worldview .tab-pane {
    padding:150px 0px 30px 0px;
    background-size:cover;
  }

  .worldview .nav-tabs {
    width: 350px;
    margin-left:-10px;
  }

  .worldview .book .num {
    margin:23px 0px 0px 15px;
  }

  .worldview .nav-link h1 {
    font-size: 16px;
  }

  .worldview .swiper-slide img {
    padding:7px 0px;
  }

  .worldview .swiper-slide .margin-s {
    margin-bottom:40px;
  }

  .worldview .swiper-slide i {
    position: absolute;
    font-size: 2vh;
    color: var(--color-white);
    margin: 12px 0px 0px 5px;
  }

  .worldview .book img {
    width: 60px;
  }


}



@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}




/*--------------------------------------------------------------
# Character Section
--------------------------------------------------------------*/

.character {
  width: 100%;
  min-height: 100vh;
  max-height: -webkit-fill-available;
  max-height: 100%;
  position: relative;
  height: auto!important;
  background: url("https://images.thumbage.co.kr/images/idlehero/arp/background/bg-character.webp") repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}


.character .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.character .slides-4 {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  width: 87%;
}

.character .slides-4 .swiper-slide {
  width: 25%;
  height: 100%;
  filter: grayscale(100%);
  border-radius: 10px;
  border:3px solid var(--color-white);
  cursor: pointer;
}

.character .slides-4 .swiper-slide img {
  border-radius: 6px;
}

.character .slides-4 .swiper-slide-thumb-active {
  filter: grayscale(0%);
  background-color: var(--color-white);
}

.character .slides-41 {
  width: 87%;
  height:800px;
}

.character .slides-41 .swiper-slide{
  width: 100%;
}

.character .content {
  margin-left:auto;
  margin-right:auto;
  position:relative;
  /*overflow:hidden;*/
  list-style:none;
  padding:0;
  z-index:1;
}

.character .swiper-button-prev2 {
  top:330px;
  left: 0px;
}

.character .swiper-button-next2 {
  top:330px;
  right: 0px;
}

.character .swiper-button-next2 img {
  transform: scaleX(-1);
}

.character .swiper-button-prev2:active {
  margin-left:-20px;
}

.character .swiper-button-next2:active {
  margin-right:-20px;
}



.character h1 {
  font-size: 100px;
  color: var(--color-primary);
  margin-top:20px;
}

.character h4 {
  margin-top:-40px;
  margin-bottom:10px;
  color: var(--color-white);
  font-family: var(--font-default);
}


.character .box {
  margin: 10px 0px 0px 5px;
  border-radius: 10px;
  border:5px solid var(--color-white);
  width:80%;
  height:380px;
}

.character .box_t {
  border-radius: 20px;
  background-color: var(--color-white);
  width:100%;
  text-align: center;
  color: var(--color-blue);
}

.character p {
  padding:2px 0px;
  color: var(--color-white);
}

.character .ml-1 {
    margin-top:20px;
}

.character .big {
  position: absolute;
  margin-left:-300px;
}

.character .big img {
  transform: scaleX(-1);
  width:680px;
}


@media (max-width: 575px) {

  .character h1 {
    font-size: 60px;
    margin-top:0px;
  }

  .character h4 {
    margin-top:-40px;
    margin-bottom:18px;
  }

  .character .box {
    width:96%;
    height:25vh;
    border:3px solid var(--color-white);
  }

  .character .box_t {
    width:70px;
    margin-right:30px;
  }

  .character .ml-1 {
    margin-top:30px;
  }

  .character {
    background-position-x: 30%;
  }

  .character .big {
    position:relative;
    right: 4%;
    margin-left:0;
  }

  .character .big img {
    width:100%;
    height: 390px; 
  }
  
  .character .slides-4 {
    width: 100%;
  }

  .character .slides-41 {
    width:100%;
    height:100%;
  }

  
}



/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

.intro {
  width: 100%;
  min-height: 100vh;
  max-height: -webkit-fill-available;
  max-height: 100%;
  position: relative;
  height: auto!important;
  background: url("https://images.thumbage.co.kr/images/idlehero/arp/background/bg-intro.webp") repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}




.intro .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  border:4px solid var(--color-primary);
}

.intro .slides-2 {
  width: 86%;
}

.intro .content {
  margin-left:auto;
  margin-right:auto;
  position:relative;
  /*overflow:hidden;*/
  list-style:none;
  padding:0;
  z-index:1;
}

.intro .swiper-button-prev3 {
  top:280px;
  left:0px;
}

.intro .swiper-button-next3 {
  top:280px;
  right:0px;
}

.intro .swiper-button-next3 img {
  transform: scaleX(-1);
}

.intro .swiper-button-prev3:active {
  margin-left:-20px;
}

.intro .swiper-button-next3:active {
  margin-right:-20px;
}

@media (max-width: 575px) {

  .intro {
    background-position-x: 16%;
  }

  .intro .slides-2 {
    width: 100%;
  }

}


/*--------------------------------------------------------------
# Event Section
--------------------------------------------------------------*/

.event {
  width: 100%;
  min-height: 100vh;
  max-height: -webkit-fill-available;
  max-height: 100%;
  position: relative;
  height: auto!important;
  background: url("https://images.thumbage.co.kr/images/idlehero/arp/background/bg-event.webp") repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.event .content{
  margin:auto 5%;
}

.event .box {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
  border-radius: 20px;
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.3);
}

.event .box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.0);
}

.event .box .fs-7 {
  font-size: 0.8rem;
}


.event .box .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.event .box .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.event .box:hover .icon:before {
  background: var(--color-primary);
}

.event .box .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.event .box h3 {
  color: var(--color-secondary);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 2vh;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.event .box:hover h3 {
  border-color: var(--color-primary);
}

.event .box p {
  line-height: 22px;
  font-size: 14px;
  margin-bottom: 0;
}

.event .box p i {
  font-size: 16px;
  color: var(--color-primary);
  margin: 4px 4px 0px 0px;
}

.event .box .icon_p {
  position: absolute;
  margin:-60px 0px 0 -60px;
}


.event .guide {
  width: 90%;
  margin:0 auto;
  margin-top:50px;
  font-size: 18px;
  font-family: var(--font-default);
  color: var(--color-secondary);
}

.event .guide img {
  width:90px;
}

.event .btn-event {
  margin-top:2vh;
}


@media (max-width: 575px) {

  .event .guide {
    width: 100%;
    line-height: 20px;
  }

  .event .box h3 {
    font-size: 4vh;
  }

  .event .section-header p {
    font-size: 1.7vh;
    margin-bottom:20px;
  }

  .event .guide {
    font-size: 14px;
  }

  .event .guide img {
    width:60px;
  }

  .event .btn-event {
    margin-top:3vh;
  }

}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}

.footer .footer-content {
  background: var(--color-secondary);
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

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

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

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.footer .footer-legal {
  padding: 30px 0;
  background: var(--color-primary-dark);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

