@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");
* {
  font-family: "Noto Sans KR", sans-serif;
  letter-spacing: -1px;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-primary);
  color: var(--bs-light) !important;
}

.btn-hover {
  transition: 0.5s;
}

.btn-hover:hover {
  color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Noto Sans KR", sans-serif;
  color: var(--bs-primary);
}

.section-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  /* font-family: 'Roboto', sans-serif; */
  position: relative;
  padding: 35px 15px;
  color: var(--bs-white) !important;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
  color: var(--bs-dark) !important;
  font-weight: 600;
}
.navbar-light .navbar-nav .nav-link {
  font-weight: 600;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-white) !important;
  font-weight: 600;
}

.navbar-light .navbar-brand h1 {
  color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: #1563ff !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: #fff;
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: -1px;
    left: 0;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: -1;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    height: calc(100% + 1px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

/*** Carousel Hero Header Start ***/
.slide-title {
  font-size: 48px;
  font-family: "Noto Sans KR", sans-serif;
}

.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
  background: transparent;
}

.bg-primary {
  background-color: #ffffff6c;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  opacity: 0;
}
.carousel-header .carousel-inner {
  width: 300%;
  height: 100vh;
}
.carousel-header .carousel-inner .slide-main {
  position: relative;
  width: 33.333%;
  height: 100vh;
  float: left;
}

.carousel-header .carousel-inner .slide-main img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-header .carousel-inner .slide-main .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
}

@media (max-width: 768px) {
  .carousel-header .carousel-inner .slide-main img,
  .carousel-header .carousel-inner .slide-main .carousel-caption {
    height: 700px;
    margin-top: -100px;
  }

  .carousel-header {
    height: 700px !important;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon,
  .carousel-header .carousel-control-next .carousel-control-next-icon {
    opacity: 0;
  }

  .search-bar {
    margin-top: -100px;
    transition: 0.5s;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/breadcrumb-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/

/* title start */
.title-desc {
  margin-top: 20px;
  font-size: 18px;
  width: 100%;
}
/* title end */

/* service start 서비스 */
.service-container {
  display: flex;
  /* width: 1230px; */
}
.service-item {
  margin-left: 30px;
  width: 33.333%;
  border-radius: 10px;
  overflow: hidden;
}
.service-top {
  position: relative;
  transition: 0.3s;
}
.service-top img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: 280px;
  position: relative;
}
.service-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2128779e;
  width: 100%;
  height: 0;
  z-index: 100;
  transition: 0.3s;
}
.service-item:hover .service-top::before {
  height: 100%;
}
.service-item:hover .service-bottom,
.service-item:hover .service-bottom h3,
.service-item:hover .service-bottom p {
  color: #fff;
  transition: 0.3s;
}
.service-item:first-of-type {
  margin-left: 0;
}
.service-bottom {
  background-color: #cfcfcf;
  padding: 15px 30px;
  height: 180px;
}

.service-bottom h3 {
  font-size: 24px;
}
.service-bottom p {
  font-size: 16px;
  color: black;
}

.service-center {
  padding: 50px;
  border-radius: 10px;
  background-color: #13357b;
  margin: 100px 0 0;
  color: #fff;
  width: 100%;
  text-align: center;
}
.owl-item .title {
  font-size: 24px;
  color: #000;
  font-weight: 600;
}
.owl-item.center .title {
  color: #fff;
}
.fa-solid {
  font-size: 3.5em;
  color: #ffb20c;
  text-align: center;
  width: 100px;
}
.flex-end {
  justify-content: flex-end;
}
.flex-start {
  justify-content: flex-start;
}
.color-orange {
  color: orange !important;
}
.color-green {
  color: #23877c !important;
}
.section-title.orange:before,
.section-title.orange::after {
  border-color: orange !important;
}
/* service end 서비스 */

/*** Services Start ***/
.service .service-content-inner {
  transition: 0.5s;
  border: 1px solid #ffb20c !important;
}
.service .service-content-inner:hover {
  position: relative;
  background: #ffd16d !important;
  /* border: 1px solid #ffb20c !important; */
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
  transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5 {
  color: #000;
}
.service .service-content-inner:hover .service-icon i {
  color: var(--bs-white) !important;
}
.service-bottom p br.mo {
  display: none;
}

@media (max-width: 1400px) {
  .service-container {
    width: 100%;
    /* max-width: 1116px; */
  }
}
@media (max-width: 991px) {
  .service-top img {
    object-fit: cover;
  }
  .service-bottom h3 {
    font-size: 20px;
  }
  .service-bottom p {
    font-size: 14px;
  }
  .service-bottom p br.mo {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-container,
  .service-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .slide-title {
    font-size: 32px;
  }
}
/*** Service End ***/

/*** Packages Start ***/
.packages .packages-item .packages-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
  background: rgba(0, 0, 0, 0.3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
  color: var(--bs-white);
  transition: 0.5s;
}

.packages .packages-item .packages-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0px solid;
  border-radius: 10px !important;
  visibility: hidden;
  transition: 0.7s;
  z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
  width: 100%;
  height: 100%;
  border: 300px solid;
  border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6)
    rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
  visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
  transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
  color: var(--bs-white) !important;
}

.packages .packages-item .packages-img img {
  transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
  transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
  position: absolute;
  width: 100px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: var(--bs-primary);
  color: var(--bs-white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 5;
}

.packages .packages-carousel {
  position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -50px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
  position: absolute;
  top: -50px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}
/*** Packages End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
  position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
  position: relative;
  width: 100px;
  height: 100px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  /* border: 3px solid var(--bs-primary); */
  /* border-style: dotted; */
  border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot.active {
  width: 40px;
  background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -55px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: -55px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}

.testimonial
  .testimonial-carousel
  .owl-item.center
  .testimonial-item
  .testimonial-comment {
  background: var(--bs-primary) !important;
  color: var(--bs-white);
  transition: 0.5s;
  text-align: left;
}
.testimonial-item p,
.testimonial-item h3 {
  text-align: left;
}
.testimonial-comment {
  height: 244px;
}

/*** Testimonial End ***/

/* 유용한 이점 start */

.img-desc {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  display: inline-block;
  margin-right: 20px;
}
.img-desc .title {
  font-size: 15px;
  font-weight: 500;
  color: #23877c;
  margin-bottom: 15px;
}
.img-desc .desc {
  margin-bottom: 0;
  font-size: 13px;
}

.title-inner .title {
  margin-bottom: 20px;
}
.title-inner p {
  margin-bottom: 30px;
}
/* 유용한 이점 end */

/*** Footer Start ***/

/* footer */
footer {
  background-color: #001d28;
}
.f_top {
  position: relative;
  background-color: #001d28;
  padding: 20px;
  width: 1320px;
  margin: auto;
  color: #fff;
  font-size: 13px;
}
.f_top .inner {
  width: 1320px;
}
.family {
  position: absolute;
  top: 40px;
  right: 0;
}
.dropdown {
  width: 200px;
  color: #303135;
  border: 1px solid #7d7d7d;
  padding: 5px;
  cursor: pointer;
  position: relative;
}
.title-family {
  color: #fff;
}
.title-family::after {
  content: "\f107";
  font-family: fontawesome;
  position: absolute;
  right: 5px;
}
.title-family.active::after {
  transform: rotate(180deg);
}
.sub-navi {
  display: none;
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  left: 0;
  bottom: 100%;
  width: 100%;
}

.sub-navi li a {
  color: #fff;
  padding: 5px;
  display: block;
  background-color: #bbb;
  border-bottom: 1px solid #aaa;
}
.sub-navi li a:last-child {
  border: none;
}
.sub-navi li a:hover {
  background-color: #333;
}

@media screen and (max-width: 1400px) {
  .family {
    position: static;
    margin-top: 20px;
  }
  .f_top,
  .f_top .inner {
    width: 100%;
  }
}
/*** Footer End ***/

/* 2차수정 */
/* navbar */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
.navbar-light .navbar-brand img {
  width: 100px;
}
.navbar-light .navbar-nav .nav-link {
  color: #000 !important;
}
.nav-li {
  position: relative;
}

.nav-sub {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  display: block;
  width: 100%;
  display: none;
  border: 1px solid #ddd;
}
.nav-sub .nav-sub-li {
  display: block;
  font-size: 15px;
  text-align: center;
  padding: 10px;
}
.nav-sub .nav-sub-li:hover {
  background-color: #0f2a62;
  transition: 0.3s;
  color: #fff;
}
.nav-li:hover .nav-sub,
.nav-li:focus .nav-sub {
  display: block;
}

/* slide */
.swiper-cube .swiper-slide {
  width: 100%;
  height: 100vh;
}
.swiper-cube-shadow {
  display: none;
}
.img-fluid {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.carousel-caption {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}
.service-bottom {
  background-color: #ffc64a;
}
.benefit-inner {
  width: 100%;
  display: flex;
}
.desc-inner {
  background-color: #f2f2f2;
  padding: 40px;
  height: 100%;
  width: 40%;
}
.img-inner {
  background-color: #ffd16d;
  /* height: 100%; */
  width: 60%;
}
.desc-inner.pc {
  width: 30%;
}
.img-inner.pc {
  width: 70%;
}
.img-inner > img,
.img-inner.pc > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.law {
  margin-top: 100px;
}
.law-inner {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  justify-content: space-between;
}
.law-desc {
  width: 50%;
}
.law-img {
  width: 40%;
}
.law-desc {
  padding: 30px;
  box-shadow: 0 0 20px #4d4d4d2b;
  border-radius: 20px;
}
.law-desc .title {
  font-weight: 500;
  color: #ffa00b;
  font-size: 24px;
  margin-bottom: 20px;
  margin-left: 30px;
}
.law-desc .desc {
  font-size: 18px;
  color: #000;
  padding-left: 30px;
}
.law-desc .desc em {
  font-style: normal;
  display: block;
  position: relative;
}
.law-desc .desc em:before {
  content: "1";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: bold;
  background-color: #ffa00b;
  border-radius: 50%;
  margin-left: -30px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
}
.law-desc .desc:nth-of-type(3) em:before {
  content: "2";
}
.text-right {
  text-align: right;
}
.container-fluid {
  padding: 0 !important;
}

/* pay start */
/* 증가 감소 시작 */
.count-wrap {
  position: relative;
  padding: 0 15px;
  border: 1px solid #787878;
  border-radius: 30px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.count-wrap > button {
  background: #fff;
  color: #333;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  font-size: 12px;
  font-size: 24px;
  border-radius: 10px;
  border: none;
}
.count-wrap > button.minus {
  left: 2px;
  top: -11px;
}
.count-wrap > button.plus {
  right: 2px;
  top: -11px;
}
.count-wrap .inp {
  border: 0;
  height: 20px;
  text-align: center;
  display: block;
  width: 50px;
}
/* 증가 감소 끝 */
.flex-pay {
  display: flex;
  width: 100%;
  gap: 60px;
}
.pay .left ul,
.pay .right ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.pay .left ul li,
.pay .right ul li {
  list-style: none;
}
/* left */
.pay .left {
  width: 60%;
  padding: 30px;
  background-color: #efefef;
  border-radius: 20px;
  height: 100%;
}
.pay .left h2 {
  color: #ffc115;
  text-align: center;
}
.pay .left p {
  text-align: center;
  color: #000;
}
.pay .left .price {
  border-radius: 20px;
  background-color: #fff;
  padding: 20px;
  color: #000;
}
.pay .left .price em {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
}
.fuction-list {
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: flex-start !important;
}
.fuction-list li {
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  .flex-pay {
    flex-direction: column;
    width: 100%;
  }
  .flex-pay .left,
  .flex-pay .right {
    width: 100% !important;
  }
}
/* right */
.pay .right {
  width: 40%;
  border-radius: 20px;
  border: 1px solid #ddd;
  padding: 30px;
  background-color: #fff;
}
.pay .right h3 {
  text-align: center;
}
.pay .right h3 em {
  color: #ffc115;
  font-style: normal;
}
.pay .right .total-price em {
  color: #ffc115;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}
.pay .right .btn-pay {
  background-color: #ffc115;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}
/* pay end */

@media (max-width: 1270px) {
  .law-desc .desc {
    font-size: 15px;
  }
  .law-img {
    width: auto;
  }
  .law-desc .title {
    font-size: 20px;
  }
  .desc-inner:first-of-type .img-desc {
    margin-bottom: 20px;
  }
  .title-inner .title {
    font-size: 20px;
  }
  .title-inner p {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .law-inner {
    flex-direction: column;
  }
  .law-desc {
    width: 100%;
  }
  .law-inner:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  .law-img {
    text-align: center;
  }
  .benefit-inner {
    flex-direction: column;
  }
  .desc-inner,
  .desc-inner.pc,
  .img-inner.pc,
  .img-inner.pc > img,
  .img-inner,
  .img-inner > img {
    width: 100%;
  }
  .flex-pay {
    font-size: 13px;
  }
  /* nav */
  .swiper-cube .swiper-slide,
  .img-fluid {
    height: 100%;
  }
  .carousel-caption .p-3 {
    width: 100%;
    max-width: 100%;
  }
  .carousel-caption {
    left: 15%;
    transform: translate(0, 50%);
  }
  .nav-sub {
    display: block;
    /* text-align: left; */
    border: none;
    position: static;
  }
  .nav-sub .nav-sub-li {
    text-align: left;
  }
  /* nav */
  
}

@media (max-width: 767px) {
    .law-img,
    .law-img > img {
      width: 100%;
    }
}

/* 배너 */
.top-banner {
    /* display: none; */
    background-color: #00a886;
    width: 100%;
    position: relative;
  }
  .top-banner.active {
    display: none;
  }
  .top-banner > div {
    margin: 0 auto;
    text-align: center;
  }
  header nav .btn-nav {
    background-color: unset !important;
    font-size: 20px;
  }
  header nav .btn-nav.btn-nav-open {
    background-color: unset !important;
    color: #fff;
    transition: none;
  }

  .banner-close {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    height: 69px;
    line-height: 69px;
  }
  #close-banner {
    cursor: pointer;
    color: #fff;
  }
  .banner-close input {
    margin-top: 29px;
    margin-right: 5px;
  }
  .banner-close label {
    margin-right: 5px;
  }
  .btn-banner-close{
    border: none;
    background-color:transparent;
  }
  @media screen and (max-width: 991px) {
    .top-banner {
      display: none !important;
    }
  }