@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}
ol, ul, li {
  list-style: none;
}
img{
  width:100%;
  /* height:100%; */
  /* object-fit: cover; */
  overflow: hidden;
}
:root{
  --dafault-font:"Noto Sans KR", sans-serif;
  --poppins-font:"Poppins", sans-serif;
}
:root {
  --background-color:#ffffff;
  --default-color: #444444;
  --heading-color: #111111;
  --accent-color: #1bbd36;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}
:root{
  --nav-color: #444444; 
  --nav-hover-color: #1bbd36;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444; 
  --nav-dropdown-hover-color: #1bbd36;
}
.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #1bbd36;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2ae149;
  --contrast-color: #ffffff;
}
:root {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans KR", sans-serif !important;
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: #444444;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  /* color: color-mix(in srgb, var(--accent-color), transparent 25%); */
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}


/* header */
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .b_logo {
  line-height: 1;
}

.header .b_logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .header-social-links{
  padding: 0 0 5px 15px;
} */

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .b_logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 3;
  }
  @media(max-width: 769px){
    .header .header-social-links{
      display:none;
    }
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* hero */
.hero{
  position: relative;
  height:600px;
}
.swiper-slide{
  text-align: center;
  position: relative;
}
.hero .bm_bansu,
.hero .bm_summer,
.hero .bm_jaesu{
  display: none;
}
.hero .slide1{
  background: linear-gradient(
    to right,
    #a4ed0a 0%,
    #a4ed0a 50%,
    #282828 50%,
    #282828 100%
  );
}
.hero .slide2{
  background-color: #1fb672;
}
.hero .slide3{
  background-color: #000;
}
.hero img{
  width:1200px !important;
  height:600px;
}
.hero-text{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
}
.hero h1, .hero p{
  color: var(--surface-color);
}
@media(max-width:1000px){
  .hero{
    height:100%;
  }
  .hero .bm_bansu,
  .hero .bm_summer,
  .hero .bm_jaesu{
    display:block;
  }
  .pc_bansu,
  .pc_summer,
  .pc_jaesu{
    display: none;
  }
  .hero img{
  width:100% !important;
  height:100%;
}
}

/* box-sevices */
/* .hero .slide1::before{
  content:"";
  position:absolute;
  height: 100%;
  width: 100%;
  background: #222;
  opacity: .6;

} */
.box-service .icon{
  position: relative;
  line-height: 1.3;
  width:120px;
  height:120px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: -60px;
  border-radius: 50%;
  z-index: 9;
}
.box-service .icon .icon-box{
  font-size: 46px;
  color:#1eaaf1;
}
.box-service h3{
  color:var(--surface-color);
  font-size: 22px;
}
.box-service p{
  font-size: 16px;
  color:rgba(255, 255, 255, 0.8);
}
.box-service .d-day{
  font-size: 50px;
  font-weight: 600;
}

@media(max-width:767px) {
  .box-service .media-body{
    padding-bottom: 3.5rem !important;
  }
}

/* edu-card */
.edu-card{
  padding: 80px 0;
}
.edu-card h1,
.success h1,
.campus h1{
  font-weight: 700;
  font-size: 48px;
}
.edu-card h4{
  font-weight: 600;
}
.edu-card .card img{
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.edu-card .card{
  width:360px;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23)
}
.edu-card .card:hover{
  transform:scale(1.08);
  transition: 0.3;
}

@media(max-width:1150px){
  .edu-card .card{
    width:100%;
  }
}
@media(max-width:767px){
.edu-card h1,
.success h1,
.campus h1{
  font-weight: 700;
  font-size: 36px;
}
}

/* success */
.success{
  padding:80px 0;
}
.success h6{
  font-family: var(--poppins-font);
  font-weight: 400;
}
.animate-rotate {
    position: absolute;
    animation: animateRotate 8s linear infinite;
}
.success span{
  display: grid;
  justify-content: center;
  padding: 8px;
  text-align: center;
  background-color: #f1f0fe;
  color:#7a6ad8;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}
@keyframes animateRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

/* bring-area */
.bring-area{
  background: url(../img/bring-bg.jpg) no-repeat scroll center center;
  background-size: cover;
  padding:150px 16px
}
.bring-area .area-inner{
  color:#fff;
}
.bring-area .area-inner h2{
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  word-break: keep-all;
}
.bring-area .area-inner p{
  /* min-width: 770px; */
  margin: 0px auto 45px;
  font-weight: 500;
}
@media(max-width:769px){
  .bring-area{
    padding: 80px 16px;
  }
}

/* event */
.campus{
  padding:80px 0;
}
.events .section-heading {
  margin-bottom: 100px;
}

.events .item {
  background-color: #f1f0fe;
  border-radius: 25px;
  position: relative;
  padding: 40px;
  margin-bottom: 96px;
}

.events .item .image {
  position: relative;
}

.events .item .image img {
  position: absolute;
  border-radius: 25px;
  max-width: 260px;
  left: 0;
  top: -70px;
}
.events .item ul{
  margin-bottom: 0;
}
.events .item ul li {
  display: inline-block;
  /* width: 17.5%; */
  vertical-align: middle;
}

.events .item ul li:first-child {
  width: 35%;
}

.events .item ul li:nth-of-type(2) {
  width: 22%;
}

.events .item ul li span.category {
  font-size: 14px;
  text-transform: uppercase;
  color: #7a6ad8;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 12px;
}

.events .item ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.events .item ul li span {
  display: inline-block;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 10px;
}

.events .item ul li h6 {
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 500;
}

.events .item a {
  position: absolute;
  right: 0;
  top: 22px;
  background-color: #7a6ad8;
  width: 60px;
  height: 120px;
  display: inline-block;
  text-align: center;
  line-height: 120px;
  font-size: 18px;
  z-index: 1;
  color: #fff;
  border-radius: 60px 0px 0px 60px;
}
.events h6{
  font-family: var(--poppins-font);
  font-weight: 400;
}
/* footer */
.footer{
  padding:80px 16px 0;
  background-color: #000;
}
.footer .b_btn{
  background-color: #484848;
  color:#fff;
  width:220px;
  height:60px;
  text-align: center;
  line-height: 60px;
}
.footer .b_btn:hover{
  background-color:#585858;
}
.footer .b_btn:nth-child(2){
  margin-left: 40px;
}
.footer .sns{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer .sns a{
  display: inline-block;
  width:50px;
  height:50px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  line-height: 45px;
  margin-left: 10px;
}
.footer .sns a img{
  width:36px;
  height:36px; 
}
.bring_logo{
  display: inline-block;
  padding:50px 0 20px 0px;
}
.bring_logo img{
  width:100px;
}
.footer .footer-menu{
  padding:10px 0;
}
.footer ul li{
  padding-right: 20px;
}
.footer ul li a{
  color:#fff;
  font-weight: 600;
}
.footer .addr p{
  margin-bottom: 8px;
  color:#999;
  font-size: 14px;
}
.footer .copyright{
  padding:30px 0;
  font-size: 12px;
  font-weight: 600;
  color:#999;
}
@media(max-width:992px){
.events .item {
    margin-bottom: 66px;
  }
  .events .item .image img {
    position: relative;
    max-width: 100%;
  }
  .events .item ul {
    margin-top: -40px;
  }
  .events .item ul li:first-child {
    width: 100% !important;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }
  .events .item ul li:nth-child(2) {
    width: 40% !important;
  }
  .events .item ul li {
    display: inline-block;
    width: 53% !important;
  }
  .events .item ul li:last-child {
    text-align: right;
  }
  .events .item a {
    bottom: 150px;
    top: auto;
  }
  .events .item ul li h6 {
    font-size: 14px;
  }
}

@media(max-width:769px){
  .footer .customer{
    margin-top:20px;
  }
  html,body{
    max-width:100%;
    overflow-x: hidden;
  }
}
