@charset "utf-8";

/*common*/
body, div, ul, li, p, span, b, strong, h1, h2, h3, h4, h5 {
  line-height: 1.5;
  word-break: keep-all;
}
h1, h2, h3, h4, h5 {line-height: 1.3}
img {max-width: 100%;}
.common-btn {
  background: #00a4ff;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 30px;
  transition: all .2s;
  text-decoration: none;
  width: fit-content;
}
.common-btn b {
  font-size: 16px;
  color: #fff;
}
.common-btn svg {
  margin-left: 10px;
  transition: all .2s;
}
.common-btn svg .color {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2px;
}
.common-btn:hover {background: #000;}
.common-btn:hover svg {margin-left: 20px;}
.more-btn {
  display: flex;
  align-items: center;
  transition: all .2s;
}
.more-btn b {
  font-size: 16px;
  color: #666;
}
.more-btn svg {
  margin-left: 5px;
  transition: all .2s;
}
.more-btn svg .color {
  fill: none;
  stroke: #666;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2px;
}
.more-btn:hover svg {margin-left: 10px;}
.arrow-btn {
  background: #000;
  border-radius: 5px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-btn svg {transform: rotate(-45deg)}
.arrow-btn svg .color {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2px;
}
.admin-btn {
    position: relative;
    z-index: 10;
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    color: #ef2727;
    display: inline-block;
}
.title {margin-bottom: 70px;}
.title h2 {font-size: 50px;}
.title p {
  font-size: 18px;
  margin-top: 40px;
}
.desc {
  font-size: 18px;
  line-height: 1.7;
}
.note {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}
.list-wrap li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.list-wrap li:last-child {margin-bottom: 0;}
.list-wrap li::before {
  content: "";
  background: #00a4ff;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  display: block;
  margin-top: 11px;
}
.list-wrap li > div {
  width: calc(100% - 4px);
  padding-left: 10px;
}
.list-wrap li .note {margin-top: 5px;}
.gallery-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -60px;
}
.gallery-list li {
  width: calc((100% - 60px)/3);
  margin-right: 30px;
  margin-bottom: 60px;
}
.gallery-list li:nth-child(3n) {margin-right: 0;}
.gallery-list li .list-a {
    display: block;
    cursor: pointer;
}
.gallery-list li .img {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 353 / 410;
  background: #fff;
}
.gallery-list li .img .inner {
  overflow-y: auto;
  padding: 15px;
  height: 100%;
}
.gallery-list li .img .inner::-webkit-scrollbar {width: 5px;}
.gallery-list li .img .inner::-webkit-scrollbar-track {background-color:#fff; border-radius: 5px}
.gallery-list li .img .inner::-webkit-scrollbar-thumb {background-color:#ddd; border-radius: 5px;}
.gallery-list li .img img {
  max-width: none;
  width: 100%;
}
.gallery-list li .txt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
}
@media all and (max-width: 1024px) {
    .title {margin-bottom: 50px;}
    .title h2 {font-size: 40px;}
}
@media all and (max-width: 767px) {
    .title {margin-bottom: 30px;}
    .title h2 {font-size: 24px;}
    .title p {
        font-size: 14px;
        margin-top: 15px;
    }
    .desc {
        font-size: 15px;
        line-height: 1.5;
    }
    .common-btn {
        height: 38px;
        padding: 0 15px;
    }
    .common-btn b {font-size: 14px;}
    .more-btn b {font-size: 14px;}
    .arrow-btn {
        width: 28px;
        height: 28px;
    }
    .gallery-list {margin-bottom: -30px;}
    .gallery-list li {
        width: calc((100% - 15px) / 2);
        margin-right: 15px;
        margin-bottom: 30px;
    }
    .gallery-list li:nth-child(3n) {margin-right: 15px;}
    .gallery-list li:nth-child(2n) {margin-right: 0;}
    .gallery-list li .img {border-radius: 5px;}
    .gallery-list li .img .inner {padding: 10px;}
    .gallery-list li .img .inner::-webkit-scrollbar {width: 3px;}
    .gallery-list li .txt {
        font-size: 15px;
        margin-top: 12px;
    }
    .note {
        font-size: 13px;
        margin-top: 12px;
    }
    .list-wrap li {margin-bottom: 5px;}
    .list-wrap li::before {margin-top: 7px;}
    .list-wrap li > div {padding-left: 8px;}
}


/*main*/
.main {padding-top: 120px;}
.main section {
  position: relative;
  padding: 180px 0;
}
.main .hero {
    padding: 7vh 0 0;
    min-height: 100vh;
    overflow: hidden;
}
.main .hero .txt {
  text-align: center;
  margin-bottom: 80px;
}
.main .hero .txt h2 {
  font-size: 80px;
  margin-bottom: 30px;
}
.main .hero .txt p {
  font-size: 30px;
  font-weight: 600;
}
.main .hero .img {position: relative;}
.main .hero .img .video {
  max-width: 1000px;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}
.main .hero .img .video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
    opacity: 0;
    transition: opacity .4s ease;
}
.main .hero .video.video-loaded video {opacity: 1;}
.main .hero .img .video .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  max-width: 1400px;
  width: 100%;
    margin: 0 auto;
}
.main .hero .img .video .logo img {width: 100%;}
.main .hero .img .object > div {
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
.main .hero .img .object .object-1 {top: -80px; right: 100px;}
.main .hero .img .object .object-2 {bottom: 60px; left: 60px;}
.main .service {
    padding-bottom: 0;
    background: #fff;
}
.main .service ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.main .service ul li {
  width: calc((100% - 40px)/3);
  margin-right: 20px;
  margin-bottom: 20px;
}
.main .service ul li:nth-child(3) {margin-right: 0;}
.main .service ul li:nth-child(4) {width: calc((100% - 20px)/2);}
.main .service ul li:nth-child(5) {
  width: calc((100% - 20px)/2);
  margin-right: 0;
}
.main .service ul li a {
  border-radius: 10px;
  padding: 40px;
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  background: #f2f4f5;
}
.main .service ul li .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .2s;
}
.main .service ul li h3 {
  font-size: 24px;
  position: relative;
  z-index: 1;
  transition: all .2s;
}
.main .service ul li .more-btn {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 1;
}
.main .service ul li .ico {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
}
.main .service ul li a:hover .bg {
  opacity: 1;
  transform: scale(1.1);
}
.main .service ul li a:hover h3 {color: #fff;}
.main .service ul li a:hover .more-btn b {color: #fff;}
.main .service ul li a:hover .more-btn svg .color {stroke: #fff;}
.main .service ul li:nth-child(1) a:hover .bg {background-image: url(/img/assets/main_service_img_1.jpg)}
.main .service ul li:nth-child(2) a:hover .bg {background-image: url(/img/assets/main_service_img_2.jpg)}
.main .service ul li:nth-child(3) a:hover .bg {background-image: url(/img/assets/main_service_img_3.jpg)}
.main .service ul li:nth-child(4) a:hover .bg {background-image: url(/img/assets/main_service_img_4.jpg)}
.main .service ul li:nth-child(5) a:hover .bg {background-image: url(/img/assets/main_service_img_5.jpg)}
.main .board .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .board .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.main .board .category {
    position: sticky;
    top: 100px;
    width: 200px;
    height: calc(100vh - 100px);
}
.main .board .category > div {margin-bottom: 30px;}
.main .board .category > div:last-child {margin-bottom: 0;}
.main .board .category h4 {
  font-size: 14px;
  margin-bottom: 20px;
}
.main .board .category li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}
.main .board .category li:last-child {margin-bottom: 0;}
.main .board .category li span {
  font-size: 16px;
  color: #888;
  transition: all .2s;
}
.main .board .category li svg {
  margin-left: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all .2s;
}
.main .board .category li svg .color {
  fill: none;
  stroke: #00a4ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2px;
}
.main .board .category li.active span,
.main .board .category li:hover span {color: #00a4ff;}
.main .board .category li.active svg,
.main .board .category li:hover svg {
  opacity: 1;
  transform: translateX(0);
}
.main .board .gallery-list {
  width: calc(100% - 200px);
  padding-left: 80px;
    overflow: hidden;
}
.main .template {background: #f2f4f5;}
@media all and (max-width: 1500px) {
    .main .hero .img .video .logo {padding: 0 10%;}
}
@media all and (max-width: 1200px) {
    .main .hero .img .object .object-2 {
        left: 40px;
        bottom: 40px;
    }
    .main .hero .img .object .object-1 {right: 30px;}
}
@media all and (max-width: 1024px) {
    .main .hero {padding-top: 10vh;}
    .main .hero .img .video {
        max-width: 50%;
        height: 40vh;
    }
    .main .board .gallery-list {padding-left: 40px;}
}
@media all and (max-width: 991px) {
    .main {padding-top: 80px;}
    .main .hero .img .object .object-1 img {width: 200px;}
    .main .hero .img .object .object-2 img {width: 160px;}
    .main .service ul li {
        width: calc((100% - 20px) / 2) !important;
        margin-right: 20px !important;
    }
    .main .service ul li:nth-child(2n) {margin-right: 0 !important;}
    .main .service ul li:last-child {
        width: 100% !important;
        margin-right: 0 !important;
    }
    .main .board .category {width: 120px;}
    .main .board .gallery-list {width: calc(100% - 120px)}
}
@media all and (max-width: 767px) {
    .main {padding-top: 60px;}
    .main section {padding: 60px 0;}
    .main .hero .txt {margin-bottom: 40px;}
    .main .hero .txt h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .main .hero .txt p {font-size: 20px;}
    .main .hero .img .video {height: 32vh;}
    .main .hero .img .object {display: none;}
    .main .hero .img .object .object-1 {
        top: 40px;
        right: 10px;
    }
    .main .hero .img .object .object-1 img {width: 100px;}
    .main .hero .img .object .object-2 {
        left: 20px;
        bottom: 20px;
    }
    .main .hero .img .object .object-2 img {width: 80px;}
    .main .service ul {margin-bottom: -15px;}
    .main .service ul li {
        width: 100% !important;
        margin: 0 0 15px !important;
    }
    .main .service ul li a {
        padding: 25px;
        min-height: 150px;
    }
    .main .service ul li h3 {font-size: 20px;}
    .main .service ul li .more-btn {
        left: 25px;
        bottom: 25px;
    }
    .main .service ul li .ico {
        right: 25px;
        bottom: 25px;
    }
    .main .service ul li .ico img {height: 40px;}
    .main .board .category {
        position: static;
        height: auto;
        width: 100%;
    }
    .main .board .category h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .main .board .category > div {margin-bottom: 12px;}
    .main .board .category ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        margin: 0 -15px;
        padding: 0 15px 5px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .main .board .category ul::-webkit-scrollbar {display: none;}
    .main .board .category li {
        flex: 0 0 auto;
        white-space: nowrap;
        margin: 0;
    }
    .main .board .category li span {font-size: 15px;}
    .main .board .category li svg {display: none;}
    .main .board .gallery-list {
        width: 100%;
        padding: 20px 0 0;
    }
}

/*footer*/
.footer-faq {padding: 180px 0;}
.footer-faq .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-faq .title {
  width: 42%;
  padding-right: 50px;
}
.footer-faq .content {width: 58%;}
.footer-faq .faq-list {margin-top: -25px;}
.footer-faq .faq-list li {
  border-bottom: 1px solid #000;
  padding: 30px 0;
}
.footer-faq .faq-list li .question {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  padding-right: 50px;
}
.footer-faq .faq-list li .question::after {
  content: "";
  background: url(/img/assets/arrow_select.svg) center / cover no-repeat;
  display: block;
  width: 12px;
  aspect-ratio: 10 / 5;
  position: absolute;
  top: 12px;
  right: 0;
  transition: all .2s;
}
.footer-faq .faq-list li .answer {
  color: #444;
  padding-top: 20px;
  display: none;
}
.footer-faq .faq-list li.active .question::after {transform: rotate(180deg)}
.footer-inquiry {padding: 0 100px 100px;}
.footer-inquiry .inner {
  background: url(/img/assets/footer_inquiry_bg.jpg) center / cover no-repeat;
  border-radius: 20px;
  padding: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-inquiry .title {
  width: 50%;
  padding-right: 50px;
}
.footer-inquiry .title h2 {color: #fff;}
.footer-inquiry ul {
  display: flex;
  align-items: center;
  width: 50%;
}
.footer-inquiry ul li {
  width: calc((100% - 20px)/2);
  margin-right: 20px;
}
.footer-inquiry ul li:last-child {margin-right: 0;}
.footer-inquiry ul li a {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  position: relative;
  height: 300px;
  display: block;
  transition: all .2s;
}
.footer-inquiry ul li h3 {
  font-size: 36px;
  position: absolute;
  left: 40px;
  bottom: 40px;
}
.footer-inquiry ul li .arrow-btn {
  position: absolute;
  top: 40px;
  right: 40px;
}
.footer-inquiry ul li a:hover {background: #000;}
.footer-inquiry ul li a:hover h3 {color: #fff;}
.footer-inquiry ul li a:hover .arrow-btn {background: #00a4ff;}
@media all and (max-width: 1400px) {
    .footer-inquiry {padding: 0 40px 100px;}
}
@media all and (max-width: 1200px) {
    .footer-inquiry .title {
        width: 100%;
        padding: 0;
    }
    .footer-inquiry ul {width: 100%;}
    .footer-inquiry ul li a {height: 200px;}
}
@media all and (max-width: 1024px) {
    .footer-inquiry .inner {padding: 60px;}
    .footer-inquiry ul li a {height: 150px;}
    .footer-inquiry ul li h3 {
        left: 30px;
        bottom: 25px;
        font-size: 28px;
    }
    .footer-inquiry ul li .arrow-btn {top: 30px; right: 30px;}
}
@media all and (max-width: 991px) {
    .footer-faq .faq-list li .question {font-size: 20px;}
}
@media all and (max-width: 767px) {
    .footer-faq {padding: 60px 0;}
    .footer-faq .title {
        width: 100%;
        padding: 0;
    }
    .footer-faq .content {width: 100%;}
    .footer-faq .faq-list li {padding: 15px 0;}
    .footer-faq .faq-list li .question {
        font-size: 16px;
        padding-right: 20px;
    }
    .footer-faq .faq-list li .answer {padding-top: 15px;}
    .footer-inquiry {padding: 0 15px 50px;}
    .footer-inquiry .inner {padding: 30px;}
    .footer-inquiry .title h2 {font-size: 20px;}
    .footer-inquiry ul li {
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
    }
    .footer-inquiry ul li a {height: 110px;}
    .footer-inquiry ul li h3 {
        font-size: 20px;
        left: 15px;
        bottom: 15px;
    }
    .footer-inquiry ul li .arrow-btn {
        top: 15px;
        right: 15px;
    }
}

/*sub*/
.sub section {padding: 180px 0;}
.sub section:first-child {padding-top: 0;}
@media all and (max-width: 767px) {
    .sub section {padding: 60px 0;}
}

/*서비스 소개*/
.sub-service .features ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 180px;
}
.sub-service .features ul li:last-child {margin-bottom: 0;}
.sub-service .features ul li > div {width: calc((100% - 200px)/2);}
.sub-service .features ul li .txt .note {margin-top: 40px;}
.sub-service .features ul li .txt .common-btn {margin-top: 70px;}
.sub-service .features ul li .img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 600 / 700;
  position: relative;
}
.sub-service .features ul li .video video {position: absolute;}
.sub-service .features ul li:nth-child(2n) .txt {order: 2;}
.sub-service .features ul li:nth-child(2n) .img {order: 1;}
.sub-service .features ul li:nth-child(1) .video video {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 110%;
}
.sub-service .features ul li:nth-child(2) .img {
  background: #f2f4f5;
  padding: 50px;
}
.sub-service .features ul li:nth-child(2) .img table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
  font-size: 18px;
  height: 100%;
}
.sub-service .features ul li:nth-child(2) .img table th {
  background: #00a4ff;
  color: #fff;
  padding: 15px 10px;
    text-align: center;
}
.sub-service .features ul li:nth-child(2) .img table td {
  background: #fff;
  text-align: center;
  padding: 25px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.sub-service .features ul li:nth-child(2) .img table tr:last-child td {border-bottom: none;}
.sub-service .features ul li:nth-child(3) .img {
  background: #00a4ff;
  padding: 50px 0 0 50px;
}
.sub-service .features ul li:nth-child(4) .video video {
  top: 50%;
  transform: translateY(-50%);
  left: -30%;
  height: 102%;
}
.sub-service .features ul li:nth-child(5) .img {
  background: #6f809a;
  padding: 0 50px 50px 0;
}
.sub-service .service {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.sub-service .service .video {
  position: relative;
  width: 27%;
  overflow: hidden;
}
.sub-service .service .video video {
  position: absolute;
  top: 0;
  left: -108%;
  height: 100%;
}
.sub-service .service .txt {
  width: 73%;
  background: #f2f4f5;
  padding: 180px 150px;
}
.sub-service .service .txt ul li {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.sub-service .service .txt ul li h3 {
  font-size: 26px;
  width: 36%;
  padding-right: 30px;
}
.sub-service .service .txt ul li .desc {
  width: 64%;
  color: #666;
}
@media all and (max-width: 1400px) {
    .sub-service .features ul li:nth-child(2) .img {aspect-ratio: auto;}
    .sub-service .service .txt {padding: 150px 100px;}
    .sub-service .service .txt ul li {padding: 30px 0;}
    .sub-service .service .txt ul li h3 {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .sub-service .service .txt ul li .desc {width: 100%;}
}
@media all and (max-width: 1200px) {
    .sub-service .features ul li > div {width: calc((100% - 100px) / 2);}
}
@media all and (max-width: 991px) {
    .sub-service .features ul li > div {width: calc((100% - 50px) / 2);}
    .sub-service .features ul li .txt .common-btn {margin-top: 40px;}
    .sub-service .features ul li:nth-child(2) .img {padding: 30px;}
    .sub-service .features ul li:nth-child(2) .img table {font-size: 16px;}
    .sub-service .features ul li:nth-child(2) .img table th,
    .sub-service .features ul li:nth-child(2) .img table td {padding: 15px 10px;}
    .sub-service .service .video {
        width: 100%;
        order: 2;
        height: 300px;
    }
    .sub-service .service .video video {
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .sub-service .service .txt {
        width: 100%;
        order: 1;
        padding: 100px 40px;
    }
}
@media all and (max-width: 767px) {
    .sub-service .features ul li {margin-bottom: 80px;}
    .sub-service .features ul li > div {width: 100%;}
    .sub-service .features ul li .txt {
        order: 1 !important;
        margin-bottom: 50px;
    }
    .sub-service .features ul li .txt .common-btn {margin-top: 30px;}
    .sub-service .features ul li .img {order: 2 !important;}
    .sub-service .features ul li:nth-child(2) .img {padding: 20px;}
    .sub-service .features ul li:nth-child(2) .img table {font-size: 14px;}
    .sub-service .features ul li:nth-child(2) .img table th, .sub-service .features ul li:nth-child(2) .img table td {padding: 10px;}
    .sub-service .features ul li:nth-child(3) .img {
        padding: 20px 0 0 20px;
        aspect-ratio: auto;
    }
    .sub-service .features ul li:nth-child(5) .img {
        padding: 0 20px 20px 0;
        aspect-ratio: auto;
    }
    .sub-service .service .txt {padding: 60px 15px;}
    .sub-service .service .txt ul li {padding: 20px 0;}
    .sub-service .service .txt ul li h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .sub-service .service .video {height: 200px;}
}

/*비용 안내*/
.sub-price .title h2 {
  display: flex;
  align-items: center;
}
.sub-price .title h2 img {margin-right: 25px;}
.sub-price .content {
  background: #f2f4f5;
  padding: 100px 0;
}
.sub-price .content .price-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.sub-price .content .price-list > div {
  width: calc((100% - 20px)/2);
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: #fff;
  padding: 50px;
}
.sub-price .content .price-list > div:nth-child(2n) {margin-right: 0;}
.sub-price .content .price-list .box-title {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 25px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.sub-price .content .price-list .box-title h3 {font-size: 30px;}
.sub-price .content .price-list .box-title .price {
  display: flex;
  align-items: baseline;
}
.sub-price .content .price-list .box-title .price b {font-size: 24px;}
.sub-price .content .price-list .box-title .price span {
  font-size: 14px;
  color: #666;
  margin-left: 8px;
}
@media all and (max-width: 991px) {
    .sub-price .content .price-list > div {
        width: 100%;
        margin-right: 0;
    }
}
@media all and (max-width: 767px) {
    .sub-price .title h2 img {
        width: 30px;
        margin-right: 10px;
    }
    .sub-price .content {padding: 30px 0;}
    .sub-price .content .price-list {margin-bottom: -15px;}
    .sub-price .content .price-list > div {
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    .sub-price .content .price-list .box-title {
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .sub-price .content .price-list .box-title h3 {font-size: 20px;}
    .sub-price .content .price-list .box-title .price b {font-size: 18px;}
    .sub-price .content .price-list .box-title .price span {
        font-size: 12px;
        margin-left: 4px;
    }
}