﻿@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Noto Sans KR", sans-serif;
  color: #444444;
}
a {
  color: #799d17;
  text-decoration: none;
}
a:hover {
  color: #799d17;
  text-decoration: none;
}
.jsclass body .randomcontent { /*Do NOT remove! CSS to hide random contents in JS enabled browsers*/
  display: none;
}
@media (max-width: 991px) {
  h2 {
    font-size: 30px !important;
  }
}
p {
  word-break: keep-all;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #799d17;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #ee8b7a;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #545454;
  padding: 10px 0;
  font-size: 14px;
}
#topbar .contact-info i {
  font-style: normal;
  color: #d9d9d9;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #d9d9d9;
}
#topbar .contact-info i a {
  line-height: 0;
}
#topbar .contact-info i a:hover {
  color: #fff;
}
#topbar .social-links a {
  color: #d9d9d9;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}
#topbar .social-links a:hover {
  color: #fff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 95px;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
/*#header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  border-left: 8px solid #e96b56;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #545454;
  text-decoration: none;
}*/
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 84px;
}
.scrolled-offset {
  margin-top: 95px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
  padding: 0 20px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 30px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 24px;
  color: #000;
  white-space: nowrap;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
color:#fff;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #7dab00;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #7dab00;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #7dab00;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;*/
}
.navbar .dropdown ul li {
  min-width: 200px;
  padding: 0;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
  color: #545454;
}
.navbar .dropdown ul a i {
  font-size: 12px;
color:#545454;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #7dab00;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
visibility: visible;
background:#eee;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
visibility: visible;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #545454;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(59, 59, 59, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color:#7dab00;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
    
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  /*background: #eee;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
font-weight:500;

}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
color: #454545;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #7dab00;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 1280px;
  height: 550px;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
  margin:30px auto!important;
  border-radius:50px!important;
}
#hero .carousel-item {
  width: 100%;
  height: 550px;
  transition-property: opacity;
  background-position: center center!important;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .carousel-content {
  text-align: center;
}


#hero .carousel-inner .carousel-item, #hero .carousel-inner .active.carousel-item-start, #hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active, #hero .carousel-inner .carousel-item-next.carousel-item-start, #hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next, #hero .carousel-inner .carousel-item-prev, #hero .carousel-inner .active.carousel-item-start, #hero .carousel-inner 

.active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: #545454;
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.2;
}
#hero .carousel-indicators li.active {
  opacity: 1;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #e96b56;
  background: #e96b56;
}
#hero .btn-get-started:hover {
  background: transparent;
  color: #e96b56;
  text-decoration: none;
}
.main_b01 {
  background: url(/Resources/img/main1_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.main_b {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.img-p {}
.img-m {
  display: none;
}
@media (max-height: 768px), (max-width: 1280px) {
  #hero {height: 430px; width:1000px;}
  #hero .carousel-item{height: 430px;}
  
}
@media (max-width: 1000px) {
  #hero {
	width:800px;
    height:344px;
  }
  #hero .carousel-item {
    height:344px;
  }
  #hero .carousel-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top !important;
  }




  .img-p {display: none;}
  .img-m {display: block; width: 95%;}
}


@media (max-width: 800px){
	#hero {
	width:600px;
    height:258px;
  }
  #hero .carousel-item {
    height:258px;
  }	
}

@media (max-width: 600px){
	#hero {
	width:500px;
    height:215px;
	border-radius:30px;
  }
  #hero .carousel-item {
    height:215px;
  }	
}
@media (max-width: 500px){
	#hero {
	width:400px;
    height:172px;
  }
  #hero .carousel-item {
    height:172px;
  }	
}

@media (max-width: 400px){
	#hero {
	width:320px;
    height:138px;
	
  }
  #hero .carousel-item {
    height:138px;
  }	
}
@media (min-width: 1024px) {
  #hero p {width: 50%;}
  #hero .carousel-control-prev, #hero .carousel-control-next {width: 5%;}
}
@media (min-width:1023px) {
  .pr5 {padding: 0 500px 0 0;}
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0 0 80px 0;
}
.section-bbg {
  background-color: #f6f9fc;
}
.section-rbg {
  background-color: #ffefef;
}
.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 30px 0;
  margin-bottom: 40px;
}
.breadcrumbs h2 {
  font-size: 35px;
  font-weight: 500;
  color: #050505;
  letter-spacing: -1.25px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  color: #666666;
}
.breadcrumbs ol li {
  padding: 0 20px;
}
.breadcrumbs ol li a {
  color: #666;
}
.breadcrumbs ol li a:hover {
  color: #799d17;
  text-decoration: none;
}
.line_kt {
  border-bottom: 2px solid #e31f26;
}
.line_lg {
  border-bottom: 2px solid #ec008c;
}
.tt_lg {
  border-bottom: 1px solid #cdcdcd;
}
/*--------------------------------------------------------------
# Mplan
--------------------------------------------------------------*/
.Mplan {
  position: relative;
  z-index: 2;
}
.Mplan .section-title {
  padding: 20px 0 60px 0;
}
.Mplan .section-title h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #000;
  letter-spacing: -2px
}
.Mplan .section-title p {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  color: #000;
}
.Mplan .icon-box {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #fff;
  transition: all ease-in-out 0.3s;
  height: 100%;
}
.Mplan .icon-box i {
  color: #e96b56;
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
  line-height: 0;
}
.Mplan .icon-box h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.Mplan .icon-box h3 a {
  color: #545454;
  transition: 0.3s;
}
.Mplan .icon-box p {
  color: #545454;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.Mplan .icon-box:hover {
  background: #e96b56;
}
.Mplan .icon-box:hover i, .Mplan .icon-box:hover h3 a, .Mplan .icon-box:hover p {
  color: #fff;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #545454;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e96b56;
}
.about .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ededed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #e96b56;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}
.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}
.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #fbe2dd;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #545454;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  background: #e96b56;
  border-color: #e96b56;
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: #e96b56;
}
.services .icon-box:hover .icon::before {
  background: #ef9383;
}
.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: #fff;
}
/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.MB .swiper-pagination {
  margin-top: -20px;
  position: relative;
}
.MB .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.MB .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.MB .swiper-slide {
  padding: 10px 0 20px 0;
  text-align: center;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}
.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #e96b56;
  float: left;
  line-height: 0;
}
.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #545454;
  margin-left: 50px;
}
.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7a7a7a;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .count-box a:hover {
  color: #a1a1a1;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: white;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}
/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #545454;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.skills .content ul {
  list-style: none;
  padding: 0;
}
.skills .content ul li {
  padding-bottom: 10px;
}
.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e96b56;
}
.skills .content p:last-child {
  margin-bottom: 0;
}
.skills .progress {
  height: 62px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #545454;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #e0e0e0;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #e96b56;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 12px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  background: #f2f2f2;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #e96b56;
  color: #fff;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(84, 84, 84, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(84, 84, 84, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #e96b56;
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e96b56;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e96b56;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(84, 84, 84, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}
.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}
.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}
.pricing h4 {
  font-size: 46px;
  color: #e96b56;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}
.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding-bottom: 12px;
}
.pricing ul i {
  color: #e96b56;
  font-size: 18px;
  padding-right: 4px;
}
.pricing ul .na {
  color: #ccc;
}
.pricing ul .na i {
  color: #ccc;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  background: #545454;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}
.pricing .buy-btn:hover {
  background: #e96b56;
}
.pricing .Mplan {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}
.pricing .Mplan .buy-btn {
  background: #e96b56;
}
.pricing .Mplan .buy-btn:hover {
  background: #ee8b7a;
}
@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}
.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.team .member .social {
  margin-top: 15px;
}
.team .member .social a {
  color: #919191;
  transition: 0.3s;
}
.team .member .social a:hover {
  color: #e96b56;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: #e96b56;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fef5f4;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #e96b56;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #e96b56;
  border: 0;
  border-radius: 50px;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
  background: #e6573f;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}
.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.blog .entry .entry-title a {
  color: #545454;
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: #e96b56;
}
.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #bababa;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}
.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}
.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .entry .entry-content p {
  line-height: 24px;
}
.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}
.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #e96b56;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .entry .entry-content .read-more a:hover {
  background: #ec7f6d;
}
.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #545454;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}
.blog .entry .entry-footer i {
  color: #a1a1a1;
  display: inline;
}
.blog .entry .entry-footer a {
  color: #616161;
  transition: 0.3s;
}
.blog .entry .entry-footer a:hover {
  color: #e96b56;
}
.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .entry .entry-footer .cats li {
  display: inline-block;
}
.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .entry .entry-footer .tags li {
  display: inline-block;
}
.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}
.blog .entry .entry-footer .share {
  font-size: 16px;
}
.blog .entry .entry-footer .share i {
  padding-left: 5px;
}
.blog .entry-single {
  margin-bottom: 30px;
}
.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}
.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #545454;
}
.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .blog-author .social-links a {
  color: rgba(84, 84, 84, 0.5);
  margin-right: 5px;
}
.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}
.blog .blog-comments {
  margin-bottom: 30px;
}
.blog .blog-comments .comments-count {
  font-weight: bold;
}
.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}
.blog .blog-comments .comment .comment-img img {
  width: 60px;
}
.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}
.blog .blog-comments .comment h5 a:hover {
  color: #e96b56;
}
.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #545454;
}
.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}
.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #6e6e6e;
  margin-bottom: 5px;
}
.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}
.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}
.blog .blog-comments .reply-form p {
  font-size: 14px;
}
.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #f5bab0;
}
.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #f5bab0;
}
.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}
.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #545454;
}
.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #616161;
}
.blog .blog-pagination {
  color: #878787;
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: #545454;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #e96b56;
}
.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}
.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #545454;
  position: relative;
}
.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}
.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}
.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #e96b56;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.blog .sidebar .search-form form button i {
  line-height: 0;
}
.blog .sidebar .search-form form button:hover {
  background: #eb7b68;
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}
.blog .sidebar .categories ul a {
  color: #545454;
  transition: 0.3s;
}
.blog .sidebar .categories ul a:hover {
  color: #e96b56;
}
.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}
.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}
.blog .sidebar .recent-posts h4 a {
  color: #545454;
  transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
  color: #e96b56;
}
.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}
.blog .sidebar .tags {
  margin-bottom: -10px;
}
.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .tags ul li {
  display: inline-block;
}
.blog .sidebar .tags ul a {
  color: #949494;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
}
.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #e96b56;
  background: #e96b56;
}
.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #ededed;
  font-size: 14px;
}
/*--------------------------------------------------------------
# Footer top
--------------------------------------------------------------*/
.footer-top {
  background: #f2f2f2;
  padding: 40px 0 10px 0;
}
.footer-top .Fphone {
  font-size: 38px;
  color: #c92020;
  font-weight: 700;
  padding: 0;
  margin: 0 0 15px 0;
}
.footer-top .Fphone span {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.footer-top .Sphone {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 768px) {
  .footer-top .Sphone {
    font-size: 18px;
  }
}
.footer-top h4 {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  position: relative;
}
.kakao {
  padding: 10px 0 0 10px;
}
.kakao p {
  display: block;
  font-size: 16px;
  background: #fff;
  color: #000;
  width: 260px;
  line-height: 40px;
  padding: 0 0 0 10px;
  margin: 10px 0 0 0;
  font-weight:
    400;
}
.kakao p span {
  color: #29770e;
  font-size: 17px;
  padding: 0 5px 0 0;
}
.kakao p i {
  font-size: 20px;
  color: #747474;
}
.fi-box {
  position: relative;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  background: #ffffff;
  padding: 18px 20px 12px 20px;
  height: 100%;
}
.fi-box h3 {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin: 0 0 5px 0;
}
.fi-box p {
  font-size: 14px;
  color: #666666;
  margin: 0;
  padding: 0;
}
.fi-box i {
  position: absolute;
  display: block;
  top: 10px;
  right: 8%;
  font-size: 40px;
}
.ki-01 {
  color: #dc3545;
}
.ki-02 {
  color: #d63384;
}
.ki-03 {
  color: #198754;
}
.ki-04 {
  color: #ffc107;
}
.footer-top .footer-info {
  margin-bottom: 30px;
}
.footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
.footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
.footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #545454;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer-top .social-links a:hover {
  background: #e96b56;
  color: #000000;
  text-decoration: none;
}
.footer-top .footer-links {
  margin-bottom: 30px;
}
.footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ec7f6d;
  font-size: 18px;
  line-height: 1;
}
.footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
.footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer-top .footer-links ul a:hover {
  color: #e96b56;
}
.footer-top .footer-contact {
  margin-bottom: 30px;
}
.footer-top .footer-contact p {
  line-height: 26px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #404040;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footerBtn {
  padding: 20px 0 0 0;
}
#footer .footerBtn li {
  list-style: none;
}
#footer .footerBtn li:nth-child(1) {
  text-align: center;
}
#footer .footerBtn li a {
  color: #b9b9b9;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  #footer .footerBtn li:nth-child(1) {
    text-align: left;
  }
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  font-weight: 200;
}
.copyright {
  color: #bebebe;
  font-size: 12px;
  font-weight: 400;
  padding: 20px 0 0 0;
}
/*--------------------------------------------------------------
# SNS 연동
--------------------------------------------------------------*/
.sns-title h2 {
  text-align: center;
  color: #000;
  font-size: 30px;
  font-weight: 300;
  padding: 0 0 20px 0;
}
.sns-title h2 span {
  font-weight: 600;
  letter-spacing: -2px;
  display: inline-block;
}
@media (max-width: 575px) {
  .sns-title h2 {
    font-size: 25px;
  }
}
.sns-title p {
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -1px;
  padding-bottom: 10px;
}
#instagram {
  overflow: hidden;
}
#Tinstagram {
  overflow: hidden;
}
.instagram_item > a {
  display: block;
  width: 100%;
  padding-top: 100%;
  margin: 10px 0;
  position: relative;
  background: no-repeat center center;
  background-size: 100%;
}
.instagram_item > a:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0px;
  background: #000000;
  background: rgba(0, 0, 0, .8);
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .8) 100%);
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .8) 100%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .8) 100%);
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity .55s cubic-bezier(.215, .61, .355, 1);
  transition: opacity .55s cubic-bezier(.215, .61, .355, 1);
}
.instagram_item p {
  width: 100%;
  max-height: 40%;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 16px;
  line-height: 2em;
  text-align: left;
  color: #fff;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity .55s cubic-bezier(.215, .61, .355, 1);
  transition: opacity .55s cubic-bezier(.215, .61, .355, 1);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .instagram_item > a:before {
    top: 0px;
    bottom: 0px;
  }
  .cs-no span {
    font-size: 30px !important;
  }
}
.instagram_item > a:hover:before {
  opacity: 1;
}
.instagram_item > a:hover p {
  opacity: 1;
}
.cs-no {
  font-size: 24px;
  color: #5c5c5c;
  text-align: center;
  font-weight: 400;
  padding: 10px 0 0 0;
}
.cs-no span {
  display: inline-block;
  font-size: 34px;
  color: #db3900;
  font-weight: 400;
  padding: 0 15px;
  letter-spacing: -1px;
}
.cs-day {
  text-align: center;
  font-size: 18px;
  color: #5c5c5c;
}
.cs-cacao {
  text-align: center;
  font-size: 20px;
  color: #5c5c5c;
  padding: 20px 0;
  letter-spacing: -1px;
}
.Sns {
  padding: 0 20px 10px 20px;
  background: #2e4d7e;
}
/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
  padding-top: 0;
  position: relative;
  z-index: 100;
}
.icon-boxes .icon-box {
  FONT-WEIGHT: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  border: 8px solid #ebebeb;
  border-bottom: 0;
  background: linear-gradient(to bottom, #ebebeb 30px, #ffffff 0);
  padding: 30px 0 0 0;
  text-align: center;
  width: 100%;
  display: block;
}
.icon-boxes .icon-box::after {
  content: "";
  position: absolute;
  display: block;
  width: 34px;
  height: 5px;
  background: #c4c4c4;
  top: 10px;
  left: 40%;
  border-radius: 5px;
}
.icon-boxes .title {
  color: #000;
  padding: 20px 0 5px 0;
  font-size: 18px;
}
/*--------------------------------------------------------------

--------------------------------------------------------------*/
.kt-bg h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 100;
  letter-spacing: -3px;
}
.kt-bg p {
  color: #d4d4d4;
  font-size: 25px;
  font-weight: 100;
  letter-spacing: -1.25px;
  padding: 40px 0 0 0;
  word-break: keep-all;
}
.kt-bg span {
  font-weight: 600;
  /* color: #e50019; */
}
.kt-bg {
  padding: 140px 0 100px 0;
  background: url("../img/kt_bg01.jpg") center center;
  background-attachment: fixed;
}
.kt-bg5 {
  padding: 140px 0 100px 0;
  background: url("../img/kt-subbg02.jpg") center center;
  background-attachment: fixed;
}
.lg-bg5 {
  padding: 50px 0;
  background: url("../img/lg-subbg02.jpg") center center;
  background-attachment: fixed;
}
.plg {
  padding: 100px 150px 0 0;
}
@media (max-width: 1024px) {
  .kt-bg5 {
    padding: 140px 0 100px 0;
    background: url("../img/kt-subbg021.jpg") 40% center;
    background-attachment: fixed;
  }
  .lg-bg5 {
    padding: 50px 0;
    background: url("../img/lg-subbg021.jpg") center center;
    background-attachment: fixed;
  }
  .plg {
    padding: 30px 0 0 0;
  }
}
.text-right {
  text-align: right !important;
}
.lg-bg {
  padding: 140px 0 100px 0;
  background: url("../img/lg_bg01.jpg") center 0;
  background-attachment: fixed;
}
.sv-bg {
  padding: 80px 0 40px 0;
  background: url("../img/mem_subbg01.gif") center center;
  background-attachment: fixed;
}
.ab-bg {
  padding: 80px 0 40px 0;
  background: url("../img/aboutbg.gif") center center;
  background-attachment: fixed;
}
.ab-bg h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 100;
  letter-spacing: -3px;
}
.ab-bg p {
  color: #d4d4d4;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: -0.5px;
  padding: 20px 0 0 0;
  word-break: keep-all;
}
.ab-bg span {
  font-weight: 600;
  color: #fff;
}
.sv-bg h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 100;
  letter-spacing: -3px;
}
.sv-bg p {
  color: #d4d4d4;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: -0.5px;
  padding: 20px 0 0 0;
  word-break: keep-all;
}
.sv-bg span {
  font-weight: 600;
  color: #fff;
}
.lg-bg h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 100;
  letter-spacing: -3px;
}
.lg-bg p {
  color: #d4d4d4;
  font-size: 25px;
  font-weight: 100;
  letter-spacing: -1.25px;
  padding: 40px 0 0 0;
  word-break: keep-all;
}
.lg-bg span {
  font-weight: 600;
  /* color: #ec008c; */
}
.cus-bg {
  padding: 140px 0 100px 0;
  background: url("../img/cus-subbg01.jpg") center 0;
  background-attachment: fixed;
}
.cus-bg h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 100;
  letter-spacing: -3px;
}
.cus-bg p {
  color: #d4d4d4;
  font-size: 25px;
  font-weight: 100;
  letter-spacing: -1.25px;
  padding: 40px 0 0 0;
}
.cus-bg span {
  font-weight: 600;
  color: #fff;
}
@media (max-width: 768px) {
.kt-bg {display: none;}
.lg-bg{display: none;}

  .kt-bg h3 {
    font-size: 35px;
  }
  .cus-bg h3 {
    font-size: 35px;
  }
  .ab-bg h3 {
    font-size: 35px;
  }
}
/*--------------------------------------------------------------
# 요금
--------------------------------------------------------------*/
.payment {
  padding: 30px 0;
}
.payment .payment-list {
  padding: 0;
  list-style: none;
}
.payment .payment-list li {
  margin-bottom: 25px;
  border: 1px solid #cdcdcd;
  border-radius: 20px;
}
.payment .payment-list .planT {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding: 30px 25px 20px 25px;
  cursor: pointer;
}
.payment .payment-list .icon-show {
  display: none;
}
.payment .payment-list .collapsed {
  color: #000;
}
.payment .payment-list .collapsed:hover {
  color: #000;
}
.payment .payment-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
.payment .payment-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}
@media (min-width: 1280px) {
  .payment .container {
    padding: 0;
  }
}
.Pay-t {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  display: flex;
  text-align: center;
  line-height: 40px;
  letter-spacing: -1px;
  align-items: center;
  justify-content: center;
}
.Pay-t2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  text-align: center;
  line-height: 35px;
  letter-spacing: -1px;
  margin: -10px 0 0 0;
}
.pay-d table {
  border-collapse: collapse;
  border: 0;
  margin: 0 auto;
}
.pay-d table .d-col col {
  width: 23%;
}
.pay-d table .d-col col:nth-child(odd) {
  width: 10%;
}
.pay-d table .d-col col:last-child {
  width: 24%;
}
.pay-d table span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.pay-d table td {
  text-align: center;
  font-size: 16px;
  color: #f13d51;
  font-weight: 500;
}
.pay-L table {
  border-collapse: collapse;
  border: 0;
  margin: 0 auto;
}
.pay-L table .d-col col {
  width: 25%;
}
.pay-L table .d-col col:nth-child(odd) {
  width: 10%;
}
.pay-L table span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.pay-L table td {
  text-align: center;
  font-size: 16px;
  color: #ec008c;
  font-weight: 500;
}
.sstxt {
  font-size: 14px;
  margin: 0;
  line-height: 18px;
}
.sstxt2 {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #666;
}
.pay-e {
  font-size: 22px;
  font-weight: 400;
  color: #000;
  text-align: center;
  line-height: 50px;
  letter-spacing: -0.5px;
}
.pay-T1 {
  float: left;
  width: 60%;
  text-align: right;
  color: #666666;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.2px;
}
.pay-T2 {
  float: left;
  width: 40%;
  text-align: center;
}
.pay-T2 span {
  border: 1px solid #cccccc;
  display: block;
  width: 80px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
}
.payT {
  text-align: right;
  font-size: 36px;
  font-weight: 800;
  color: #d30000;
  margin: 0 0 5px 0;
  letter-spacing: -1.25px;
  font-family: NanumSquare, sans-serif;
}
.payT::after {
  content: '원';
  display: inline-block;
  margin: 0 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.payT::before {
  content: '월';
  display: inline-block;
  margin: 0 15px 0 0;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.payT2 {
  text-align: right;
  font-size: 36px;
  font-weight: 800;
  color: #d30000;
  padding: 10px 0 0 0;
  letter-spacing: -1.25px;
  font-family: NanumSquare, sans-serif;
}
.payT2::after {
  content: '원';
  display: inline-block;
  margin: 0 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.payT2::before {
  content: '월';
  display: inline-block;
  margin: 0 15px 0 0;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.payT5 {
  text-align: right;
  font-size: 36px;
  font-weight: 800;
  color: #d30000;
  padding: 10px 0 0 0;
  letter-spacing: -1.25px;
  font-family: NanumSquare, sans-serif;
}
.payT5::after {
  content: '원';
  display: inline-block;
  margin: 0 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.payT3 {
  text-align: right;
  font-size: 36px;
  font-weight: 600;
  color: #d30000;
  margin: 0 0 5px 10px;
  letter-spacing: -1.25px;
  font-family: "NanumSquare", sans-serif;
}
.payL {
  text-align: right;
  font-size: 36px;
  font-weight: 800;
  color: #ec008c;
  padding: 10px 0 0 0;
  letter-spacing: -1.25px;
  font-family: NanumSquare, sans-serif;
}
.payL::after {
  content: '원';
  display: inline-block;
  margin: 0 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.payL::before {
  content: '월';
  display: inline-block;
  margin: 0 15px 0 0;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.planL {
  margin: 0 20px;
  padding: 25px 20px;
  border-top: 1px solid #cdcdcd;
}
.planL strong {
  font-weight: 500;
  color: #000;
}
.planL p {
  padding: 0;
}
.planL span {
  display: block;
  color: #000;
  font-weight: 500;
  padding: 0;
}
.planL table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #000000;
  margin: 10px 0 30px 0;
}
.planL table th {
  background: #eeeeee;
  line-height: 24px;
  text-align: center;
  font-weight: 400;
  border-bottom: 1px solid #d3d3d3;
  padding: 15px 0;
}
.planL table td {
  text-align: center;
  line-height: 26px;
  border-bottom: 1px solid #d3d3d3;
  padding: 15px 0;
}
.tdl {
  text-align: left !important;
  padding: 15px !important;
}
.redb {
  color: #d30000;
}
@media (max-width: 1024px) {
  .planL {
    padding: 25px 0px;
  }
}
.t-center {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  color: #000;
}
.t-center span {
  font-weight: 500;
}
.title-s1 {
  font-weight: bold;
  color: #454545;
  margin: 20px 0 10px 0;
}
.ol-number {
  margin: 0;
}
.ol-number li {
  list-style-type: decimal;
  border: 0 !important;
  margin: 0 !important;
  padding: 2px 0;
}
.ol-square {
  margin: 0;
}
.ol-square li {
  list-style-type: square;
  border: 0 !important;
  margin: 0 !important;
  padding: 2px 0;
}
.t-title {
  text-align: center;
  margin: 50px 0px 20px 0;
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 40px 0 0 0;
}
.features .nav-tabs {
  border: 0;
}
.features .nav-tabs .nav-item {
  margin: 0 !important;
  padding: 0 !important;
}
.features .nav-tabs .nav-link {
  padding: 15px 20px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-bottom: 1px solid #e31f26;
}
.features .nav-tabs .nav-item .nav-link:hover {
  border: 1px solid #d3d3d3;
  border-bottom: 1px solid #e31f26;
}
.features .nav-tabsL {
  border: 0;
}
.features .nav-tabsL .nav-item {
  margin: 0 !important;
  padding: 0 !important;
}
.features .nav-tabsL .nav-link {
  padding: 15px 20px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-bottom: 1px solid #d5479d;
}
.features .nav-tabsL .nav-item .nav-link:hover {
  border: 1px solid #d3d3d3;
  border-bottom: 1px solid #ec008c;
}
.features .nav-tabsL .nav-link.active {
  transition: 0.3s;
  border: 1px solid #d5479d;
  border-bottom: 0;
}
.features .nav-tabsL .nav-link.active:hover {
  transition: 0.3s;
  border: 1px solid #d5479d;
  border-bottom: 0;
}
.features .nav-tabsL .nav-link.active h4 {
  color: #d5479d;
  font-weight: 400;
  font-size: 16px;
}
.features .nav-link h4 {
  margin: 5px 0 0 0;
  color: #666666;
  font-weight: 400;
  font-size: 16px;
}
.features .nav-link.active {
  transition: 0.3s;
  border: 1px solid #e31f26;
  border-bottom: 0;
  background: #fff;
}
.features .nav-link.active:hover {
  transition: 0.3s;
  border: 1px solid #e31f26 !important;
  border-bottom: 0 !important;
}
.features .nav-link.active h4 {
  color: #e31f1f;
  font-weight: 400;
  font-size: 16px;
}
.features .tab-content {
  margin-top: 30px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# My optional
--------------------------------------------------------------*/
.optional {
  margin: 40px 0 0 0;
}
.optional .icon-box {
  width: 100%;
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}
.optional .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  background: #f8f8f8;
}
.optional .icon i {
  font-size: 36px;
  line-height: 1;
  color: #ffb727;
}
.optional .icon i.opay {
  font-size: 36px;
  line-height: 1;
  color: #a6ce39;
}
.optional .title {
  font-weight: 500;
  margin-bottom: 0px;
  font-size: 20px;
  color: #000;
}
.optional .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.optional .Spay {
  font-size: 16px;
  line-height: 28px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.optional .Spay span {
  color: #d30000;
}
.optional .icon-box:hover {
  border-color: #aaaaaa;
}
/*--------------------------------------------------------------
KT선불 리필서비스
--------------------------------------------------------------*/
.kt-irs {
  padding: 60px 0 50px 0;
  margin: 0 0 40px 0;
}
.kt-irs .section-title {
  text-align: center;
  padding-bottom: 30px;
}
.kt-irs .section-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
}
.kt-irs .section-title .tit-in1 {
  font-size: 28px;
  font-weight: 400;
  padding: 20px 0;
  color: #000;
  letter-spacing: -1px;
}
.kt-irs .section-title .tit-in2 {
  font-size: 18px;
  font-weight: 300;
  color: #000;
}
.kt-irs .tit-in3 {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
.kt-irs .tit-img {
  text-align: center;
}
picture {
  display: block;
  text-align: center;
}
.Sloming {
  padding: 60px 0 50px 0;
  margin: 0 0 40px 0;
}
.Sloming .section-title {
  text-align: center;
  padding-bottom: 60px;
}
.Sloming .section-title h2 {
  font-size: 48px;
  font-weight: 600;
  color: #000;
  margin: 0 0 30px 0;
  letter-spacing: -1px;
}
.Sloming .tit-in1 {
  font-size: 28px;
  font-weight: 400;
  padding: 20px 0 0 0;
  color: #000;
  letter-spacing: -1px;
}
.Sloming .tit-in2 {
  font-size: 22px;
  font-weight: 300;
  color: #000;
}
/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
.Sloming .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
  border: 1px solid #e5e5e5;
}
.Sloming .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}
.Sloming .service-item .icon i {
  color: var(--color-secondary);
  font-size: 50px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}
.Sloming .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}
.Sloming .service-item h3 {
  color: var(--bs-gray-900);
  font-weight: 500;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 34px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
  letter-spacing: -1px;
}
.Sloming .service-item p {
  line-height: 26px;
  font-size: 18px;
  margin-bottom: 0;
}
.Sloming .service-item span {
  display: inline-block;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--bs-danger);
}
.Sloming .service-item:hover .icon:before {
  background: var(--bs-warning);
}
.Sloming .service-item:hover h3 {
  border-color: var(--bs-danger);
}
.why-box h3 {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  background: #3bd480;
  width: 100%;
  margin: 0 auto 10px;
  border-radius: 40px;
  color: #fff;
  padding: 5px 0;
}
.apple-box h3 {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  background: #dc3545;
  width: 100%;
  margin: 0 auto 10px;
  border-radius: 40px;
  color: #fff;
  padding: 5px 0;
}
.about-col .icon-box {
  text-align: center;
  background: #fff;
  padding: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}
.about-col .icon-box h4 {
  font-weight: 600;
  font-size: 20px;
  padding: 10px 0 10px 0;
  color: #000;
  border-bottom: 1px solid #d8d8d8;
}
.about-col .ab-con {
  font-size: 18px;
  line-height: 36px;
  color: #333;
  margin-bottom: 0;
  padding: 10px 10px;
  text-align: left;
  width: 100%;
}
.about-col .ab-con span {
  color: #dc3545;
  font-size: 18px;
}
.about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  border-radius: 10px;
  margin: 15px 0 0 0;
  padding: 10px 5px;
  background-color: #f7f7f7;
}
.ab-con p b {
  font-weight: 400;
  color: #0059d2;
  font-size: 15px;
}
.about-col p i {
  color: #333;
  font-size: 20px;
}
.Sloming .phone-wrap {
  text-align: center;
}
.img-c {
  padding: 0 0 40px 0;
  text-align: center;
}
.table_list1 {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid rgb(134, 134, 134);
}
.table_list1 th {
  text-align: center;
  border-bottom: 1px solid #e2e2e2;
  font-size: 18px;
  color: rgb(51, 51, 51);
  font-weight: 600;
  line-height: 50px;
  background: #f5e3e4;
}
.table_list1 td {
  border-bottom: 1px solid #e2e2e2;
  font-size: 18px;
  color: rgb(103, 103, 103);
  line-height: 26px;
  padding: 10px 0 10px 10px;
}
.table_list {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid rgb(134, 134, 134);
}
.table_list th {
  text-align: center;
  border-bottom: 1px solid #e2e2e2;
  font-size: 18px;
  color: rgb(51, 51, 51);
  font-weight: 600;
  line-height: 50px;
  background: #f5e3e4;
}
.table_list td {
  border-bottom: 1px solid #e2e2e2;
  text-align: center;
  font-size: 18px;
  color: rgb(103, 103, 103);
  line-height: 26px;
  padding: 10px 0 10px 10px;
}
.Sloming .cta-btn {
  font-family: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #d9232d;
}
.Sloming .cta-btn:hover {
  background: #e1444d;
}
.table_lis {
  margin: 30px 0;
}
.table_lis li {
  margin: 0 0 5px 0;
  font-size: 18px;
}
/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
}
.faq .faq-list li {
  border-bottom: 1px solid #d9f1f2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #3fbbc0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #32969a;
  transition: 0.3s;
}
.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list .collapsed {
  color: black;
}
.faq .faq-list .collapsed:hover {
  color: #3fbbc0;
}
.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}
.pt10 {
  padding: 10px 0 0 0;
}
.pt5 {
  padding: 5px 0 0 0;
}
/*--------------------------------------------------------------
#LGirs
--------------------------------------------------------------*/
.LG-irs {
  padding: 60px 0 50px 0;
  margin: 0 0 40px 0;
}
.LG-irs .section-title {
  text-align: center;
  padding-bottom: 30px;
}
.LG-irs .section-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
}
.LG-irs .section-title .tit-in1 {
  font-size: 28px;
  font-weight: 400;
  padding: 20px 0;
  color: #000;
  letter-spacing: -1px;
}
.LG-irs .tit-in2 {
  font-size: 18px;
  font-weight: 300;
  color: #000;
}
.LG-irs .tit-in3 {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
.LG-irs .tit-img {
  text-align: center;
}
.LGirs .section-title {
  text-align: center;
  padding-bottom: 40px;
}
.LGirs .section-title h2 {
  font-size: 48px;
  font-weight: 600;
  color: #000;
  margin: 0 0 30px 0;
  letter-spacing: -1px;
}
.LGirs .section-title p {
  font-size: 28px;
  font-weight: 400;
  color: #000;
  letter-spacing: -1px;
}
.LGirs .section-title .tit-in2 {
  font-size: 18px;
  font-weight: 300;
  color: #000;
}
.LGirs .icon-box {
  text-align: center;
  padding: 40px;
  background: #fff;
  height: 100%;
  border: 1px solid #e5e5e5;
}
.LGirs .icon-box .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.LGirs .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 30px;
  color: #000;
}
.LGirs .icon-box p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}
.LGirs .icon-gbox {
  text-align: center;
  padding: 40px;
  background: #fff;
  height: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
}
.LGirs .icon-gbox p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}
.LGirs .icon-gbox .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
/*--------------------------------------------------------------
# memApp Section
--------------------------------------------------------------*/
.memApp-section {
  position: relative;
  overflow: hidden;
}
.memApp-K {
  background: linear-gradient(to right bottom, rgba(134, 187, 69) 60%, rgba(61, 169, 201) 100%);
}
.memApp-L {
  background: url("../img/Appphone03_bg.jpg") bottom center no-repeat;
}
.memApp-section, .memApp-section > .container > .row {
  height: 60vh;
  min-height: 650px;
}
.memApp-section.inner-page {
  height: 60vh;
  min-height: 0;
}
.memApp-section.inner-page .hero-text {
  transform: translateY(-150px);
  margin-top: -120px;
}
@media screen and (max-width: 992px) {
  .memApp-section.inner-page .hero-text {
    margin-top: -80px;
  }
}
.memApp-section h1 {
  font-size: 4rem;
  color: #fff;
  font-weight: 200;
  margin-bottom: 30px;
}
.memApp-section h1 span {
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .memApp-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 40px;
  }
}
@media screen and (max-width: 992px) {
  .memApp-section .hero-text-image {
    margin-top: 4rem;
  }
}
.memApp-section p {
  font-size: 22px;
  color: #fff;
  font-weight: 300;
}
.ptxt {
  font-size: 16px;
  color: #23510a;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.ptxt span {
  font-size: 20px;
  color: #23510a;
  font-weight: 600;
}
.memApp-section .iphone-wrap {
  position: relative;
}
@media screen and (max-width: 992px) {
  .memApp-section .iphone-wrap {
    text-align: center;
  }
}
.memApp-section .iphone-wrap .phone-2, .memApp-section .iphone-wrap .phone-1 {
  position: absolute;
  top: 0%;
  overflow: hidden;
  left: 0;
  /* box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 20%);*/
  border-radius: 40px;
}
@media screen and (max-width: 992px) {
  .memApp-section .iphone-wrap .phone-2, .memApp-section .iphone-wrap .phone-1 {
    position: relative;
    top: 0;
    max-width: 100%;
  }
}
.memApp-section .iphone-wrap .phone-2, .memApp-section .iphone-wrap .phone-1 {
  width: 301px;
}
.memApp-section .iphone-wrap .phone-2, .memApp-section .iphone-wrap .phone-3 {
  width: 800px;
}
@media screen and (max-width: 992px) {
  .memApp-section .iphone-wrap .phone-1 {
    margin-left: -150px;
    width: 250px;
  }
}
.memApp-section .iphone-wrap .phone-2 {
  margin-top: -80px;
  margin-left: 50%;
  width: 301px;
}
@media screen and (max-width: 992px) {
  .memApp-section .iphone-wrap .phone-2 {
    width: 250px;
    position: absolute;
    margin-top: 0px;
    margin-left: 35%;
  }
}
.App-mem {
  padding: 60px 0 50px 0;
  margin: 40px 0;
}
.App-mem .section-title {
  text-align: center;
  padding-bottom: 30px;
}
.App-mem .section-title h2 {
  font-size: 45px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #000;
}
.App-mem .section-title .tit-in {
  font-size: 28px;
  font-weight: 400;
  padding: 20px 0;
  color: #000;
  letter-spacing: -1px;
}
.App-mem .section-title .tit-in p {
  font-size: 22px;
  font-weight: 300;
  color: #000;
}
.App-mem .section-title .tit-in span {
  font-weight: 500;
  color: #447e0d;
}
.L-color {
  color: #ec008c !important;
}
.App-mem .tit-img {
  text-align: center;
}
.Appstep {
  padding: 40px 0 80px 0;
}
.Appstep h4 {
  font-weight: 500;
  font-size: 32px;
  color: #000;
  padding: 0 0 20px 0;
}
.Appstep p {
  font-size: 18px;
  color: #666;
}
.Appstep p span {
  color: #d00b0b;
}
.Appstep .tit-img {
  text-align: center;
}
.btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ed502e;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ed502e;
}
.btn-learn-more:hover {
  background: #ed502e;
  color: #fff;
  text-decoration: none;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.App-play {
  padding: 80px 0 60px 0;
}
.App-play .content {
  font-size: 15px;
}
.App-play .content h3 {
  font-weight: 500;
  font-size: 32px;
  color: #000;
  margin-bottom: 10px;
}
.App-play .content p {
  font-size: 18px;
  color: #666;
}
.App-play .content ul {
  list-style: none;
  padding: 20px 0;
}
.App-play .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-size: 18px;
}
.App-play .content ul i {
  font-size: 24px;
  color: #94c045;
  position: absolute;
  left: 0;
  top: 2px;
}
.App-play .content p:last-child {
  margin-bottom: 0;
}
.tip-boxes h3 {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}
.tip-boxes p {
  font-size: 18px;
  font-weight: 400;
  color: #666;
}
.tip-box {
  margin-top: 25px;
}
.tip-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
.tip-box .icon i {
  color: #a6ce38;
  font-size: 38px;
}
.tip-box .title {
  margin-left: 65px;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 17px;
  color: #000;
}
.tip-box .description {
  margin-left: 65px;
  line-height: 24px;
  font-size: 16px;
}
/*--------------------------------------------------------------
이용약관 
--------------------------------------------------------------*/
.clause {
  margin-bottom: 80px;
}
.clause h3 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 40px;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 29px;
}
.clause h4 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  color: #000;
  letter-spacing: -0.02em;
}
.h3_txt {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
.txt_45 {
  font-size: 15px;
  font-weight: 400;
  color: #454545;
}
.clause_list {
  margin-left: -12px;
}
.clause_list li {
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
  color: #454545;
  letter-spacing: -0.03125rem;
}
.clause_list li ol {
  list-style-type: decimal-leading-zero;
  margin: 10px 0 20px -7px !important;
}
.clause_list li ol li {
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px !important;
  color: #666;
}
.clause_list li ol li ol.Clist2 {
  list-style-type: disc;
  margin-left: -15px !important;
}
.Clist3 {
  margin-left: -10px;
}
.Clist3 li {
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
  color: #666;
  letter-spacing: -0.03125rem;
}
.guide-table {
  margin: 20px 0;
  border-top: 0.0625rem solid #e8e8e8;
}
.guide-table th, .guide-table td {
  padding: 5px;
  border-bottom: 0.0625rem solid #e8e8e8;
  border-left: 0.0625rem solid #e8e8e8;
  border-right: 0.0625rem solid #e8e8e8;
  text-align: center;
  font-size: 13px !important;
  font-weight: 400;
  vertical-align: middle;
}
/*.guide-table th:first-child, .guide-table td:first-child {
  border-left: 0;
}
.guide-table th:last-child, .guide-table td:last-child {
  border-right: 0;
}*/
.guide-table th {
  background: #f9f9f9;
  color: #707070;
  font-weight: 500;
}
.guide-table td {
  background: #fff;
  color: #707070;
}
.member-ba {
  position: relative;
  padding: 20px;
  border: 1px solid #e1e1e1;
  background: #f6f8f8;
}
.member-ba .pic {
  text-align: center;
  width: 120px;
  padding: 10px 0 0 0;
}
.member-ba .pic img {
  transition: ease-in-out 0.3s;
}
.member-ba:hover img {
  transform: scale(1.1);
}
.member-ba .member-info {
  padding-left: 20px;
}
.member-ba h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 32px;
  color: #000;
  letter-spacing: -1.25px;
}
.member-ba span {
  display: block;
  font-size: 16px;
  position: relative;
  font-weight: 400;
  color: #454545;
  letter-spacing: -0.5px;
}
.member-bb {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}
.member-bb .bb-bg {
  min-height: 150px;
  min-width: 220px;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.member-bb h4 {
  font-weight: 600;
  font-size: 26px;
  color: #000;
  letter-spacing: -1.25px;
}
.member-bb p {
  font-size: 16px;
  font-weight: 300;
  color: #454545;
  letter-spacing: -0.5px;
  margin: 0;
}
.member-bb .bb-body {
  padding: 20px 20px 20px 10px;
}
.bb-txt {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.5px;
  margin: 5px 0 0 0;
}
.bb-txt span {
  font-weight: 600;
}
.btn_guide {
  text-align: right; /*padding: 30px;*/
}
a.btn_user {
  border-radius: 50px;
  border: 1px solid #bcbcbc;
  font-size: 18px;
  color: #454545;
  padding: 10px 30px;
  margin: 0 10px;
  display: inline-block;
}
/*--------------------------------------------------------------
# introduce Section
--------------------------------------------------------------*/
.introduce h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}
.introduce .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}
@media (min-width: 991px) {
  .introduce .our-story {
    padding-right: 20%;
  }
}
.introduce .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}
.introduce .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}
.introduce .our-story p:last-child {
  margin-bottom: 0;
}
.introduce .our-story p {
  word-break: keep-all;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.introduce .introduce-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 992px) {
  .introduce .introduce-img {
    position: absolute;
    top: 100px;
    right: 0;
  }
}
.brand .section-title {
  text-align: center;
  padding: 60px 0;
}
.brand .section-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin: 0 0 30px 0;
  letter-spacing: -1px;
}
.brand .section-title p {
  font-size: 22px;
  font-weight: 300;
  color: #000;
  margin: 0 0 30px 0;
}
.brand_box {
  margin: 50px 0;
}
.brand_box h4 {
  font-size: 20;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.brand_box p {
  font-size: 18px;
  color: #666;
}
.brand_box img {
  margin: 20px 0 0 0;
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.qna .qna-title {
  padding-bottom: 30px;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #050505;
  border-bottom: 2px solid #a9d03e;
}
.qna .qna-list {
  /* padding: 0 100px; */
}
.qna .qna-list ul {
  padding: 0;
  list-style: none;
}
.qna .qna-list li + li {
  margin-top: 15px;
}
.qna .qna-list li {
  padding: 30px 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  border-bottom: 1px solid #e2e2e2;
}
.qna .qna-list a {
  display: block;
  position: relative;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 60px;
  outline: none;
  cursor: pointer;
  color: #000;
}
.qna .qna-list a span {
  display: block;
  font-size: 16px;
  color: #747774;
  font-weight: 300;
  padding: 0 0 5px 0;
}
.qna .qna-list a.collapsed span {
  display: block;
  font-size: 16px;
  color: #747774;
  font-weight: 300;
  padding: 0 0 5px 0;
}
.qna .qna-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #db222c;
}
.qna .qna-list .icon-lg {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ec008c;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px #e2e2e2 solid;
  padding-top: 5px;
}
.qna .qna-list .icon-kt {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #db222c;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px #e2e2e2 solid;
  padding-top: 5px;
}
.mt10 {
  margin: 10px 0 0 0;
}
.mmt10 {
  margin: -10px 0 0 0;
}
.qna .qna-list .icon-show, .qna .qna-list .icon-close {
  font-size: 35px;
  position: absolute;
  right: 0;
  top: 0;
}
.qna .qna-list p {
  margin-bottom: 0;
  padding: 20px 0 20px 60px;
  font-size: 18px;
  color: #666;
}
.qna .qna-list .icon-show {
  display: none;
}
.qna .qna-list a.collapsed {
  color: #000000;
  font-size: 20px;
}
.qna .qna-list a.collapsed .icon-show {
  display: inline-block;
}
.qna .qna-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .qna .qna-list {
    padding: 0;
  }
}
a.faq-box {
  padding: 30px 0;
  border: 5px solid #e1e1e1;
  /* background: #f6f8f8; */
  text-align: center;
  color: #000;
  margin: 10px 0 20px 0;
  display: block;
  border-radius: 50px;
  font-size: 20px;
}
a.faq-box .fL {
  color: #ec008c;
  display: inline-block;
  padding: 0 15px 0 0;
  FONT-WEIGHT: 600;
  font-size: 24px;
}
a.faq-box .fK {
  color: #db222c;
  display: inline-block;
  padding: 0 15px 0 0;
  FONT-WEIGHT: 600;
  font-size: 24px;
}
/*--------------------------------------------------------------
# M-app
--------------------------------------------------------------*/
.M-app {
  background: #8ed8e8;
  padding: 80px 0 50px 0;
}
.M-app .content h3 {
  font-weight: 200;
  font-size: 50px;
  color: #744ce7;
  letter-spacing: -1px;
}
.M-app .content h3 span {
  font-weight: 600;
}
.mp1 {
  font-weight: 200;
  font-size: 70px;
  color: #fff;
  letter-spacing: -5px;
  margin: -20px 0 0 0;
}
@media (max-width: 1024px) {
  .mp1 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .M-app .content h3 {
    font-size: 40px;
  }
  .mp1 {
    font-size: 40px;
    margin: 5px 0 0 0;
  }
}
.mp1 span {
  font-weight: 600;
  color: #744ce7;
}
.mp2 {
  font-weight: 300;
  font-size: 22px;
  color: #545454;
  padding: 10px;
  letter-spacing: -1px;
}
.m-box {
  background: #fff;
  border-radius: 30px;
  padding: 15px 0;
  text-align: center;
}
.m-box p {
  font-weight: 400;
  font-size: 22px;
  color: #454545;
}
.ma-img {
  text-align: center;
  padding: 10px 0 0 0;
}
/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq {
  padding: 30px 0;
}
.faq .qna-Llist {
  padding: 0;
  list-style: none;
}
.faq .qna-Llist li {
  margin-bottom: 15px;
  border: 1px solid #cdcdcd;
  border-radius: 20px;
}
.faq .qna-Llist .planT {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding: 20px 25px;
  cursor: pointer;
}
.faq .qna-Llist .icon-show {
  display: none;
}
.faq .qna-Llist .collapsed {
  color: #000;
}
.faq .qna-Llist .collapsed:hover {
  color: #000;
}
.faq .qna-Llist .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
.faq .qna-Llist .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}
@media (min-width: 1280px) {
  .faq .container {
    padding: 0;
  }
}
/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .accordion-collapse {
  border: 0;
}
.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #4154f1;
  border-bottom: 0;
}
.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}
.faq_link {
  text-align: center;
  padding: 10px 0 50px 0;
}
.faq_link a.active {
  background: #db222c;
  color: #fff;
  border: 0;
}
.faq_link a {
  border-radius: 50px;
  border: 1px solid #bcbcbc;
  font-size: 18px;
  color: #454545;
  padding: 10px 30px;
  width: 200px;
  margin: 0 10px;
  display: inline-block;
}

/*--------------------------------------------------------------
# notice
--------------------------------------------------------------*/

#noticeList li {
  list-style: none;
  }

#noticeList .noticeNum {
  color: #999
  }

#noticeList span {
  color: #111;
  font-weight: bold;
  }

#noticeList .community_search {
  float: right;
  }

#noticeList input[type=text], select {
  outline: 0;
  }

#noticeList .community_search button {
  background: #505050;
  color: #fff;
  font-size: 14px;
  width: 80px;
  height: 30px;
  border: 0;
  line-height: 30px; 
  padding-top: -5px;
  }

/*
#noticeList .community_search img {
  margin-bottom: 4px;
  }
*/

#noticeList .community_list {
  padding: 30px;
  text-align: center;
  }

#noticeList .community_list th {
  border-top: 2px solid #dc4c41;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  background: #f9f9f9;
  position: relative;
  }

#noticeList .community_list th:after {
  content:'';
  display: block;
  width: 2px;
  height: 20px;
  background: #ccc;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  }


#noticeList .community_list th:nth-child(3):after {
  content:'';
  display: block;
  width: 0;
  height: 0;
  }

#noticeList .community_list td {
  border-bottom: 1px solid #999;
  padding: 10px 0;
  transition: 0.3s;
  }

#noticeList .community_list tr:hover td:nth-child(2) {
  color: crimson;
  }

#noticeList .paging {
  text-align: center;
}

.notice_view {
  list-style: none;
  width: 100%;
  }

.notice_view .community_list tr{
  height: 50px;
  border-bottom: 1px solid #999;
  }

.notice_view .community_list tr:first-child {
  border-top: 2px solid #dc4c41;
  }

.notice_view .community_list tr:nth-child(3) td {
  background: 0;
  }

.notice_view .community_list td:first-child {
  font-weight: bold;
  background: #f7f7f7;
  }

.notice_view .community_list td:nth-child(2) {
  padding-left: 15px;
  }

.notice_view .paging {
  text-align: center;
  padding-top: 30px;
  }

.notice_view .rightbtns button {
  cursor: pointer;
  width: 140px;
  height: 45px;
  padding: 10px 20px;
  border: 0.5px solid #eee;
  border-radius: 8px;
  background-image: linear-gradient(#fdfdfd, #f1f1f1);
  font-size: 16px;
  }

.notice-im {background:#40258e; border-radius:20px; padding:20px 0;   margin: 20px 0;  }
.im-txt1 a{ display:block;  line-height:30px;  color: #fff;  font-weight:500;  text-align: center;    font-size: 24px;}

.im-txt2 a{ padding:0 0 0 10px; display:block;  line-height:30px; color: #fff;  font-weight:300; font-size: 20px;}



/*240627-양식다운로드-다혜*/
#formService ul{list-style:none;}
#formServiceList li{list-style:none;}
#formServiceList{width:100%; height:auto;}
#formServiceList>li:first-child{text-align:right;}





