/* Checkbox style */
.container_check {
  display: block;
  position: relative;
  padding-top: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 10px;
}
.container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 3px solid #ededed;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.container_check:hover input ~ .checkmark {
  background-color: #ededed;
  border: 1px solid transparent;
}

.container_check input:checked ~ .checkmark {
  background-color: #004dda;
  border: 1px solid transparent;
}

.container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_check input:checked ~ .checkmark:after {
  display: block;
}

/* Radio buttons */
.container_radio {
  display: block;
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  padding-left: 30px;
  line-height: 1.3;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container_radio input {
  position: absolute;
  opacity: 0;
}
.container_radio input:checked ~ .checkmark:after {
  opacity: 1;
}
.container_radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.container_radio .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #004dda;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


/* Notification Bar
----------------------------------------------------------*/
#notification-bar { position: absolute; top: 100%; left: 0; width: 100%; color: #fff; z-index: 3; -moz-transform: translateY(-100%); -ms-transform: translateY(-100%); -webkit-transform: translateY(-100%); transform: translateY(-100%); -moz-transition: all 0.5s ease-out; -o-transition: all 0.5s ease-out; -webkit-transition: all 0.5s ease-out; transition: all 0.5s ease-out; visibility: hidden; }
#notification-bar.visible { -moz-transform: translateY(0); -ms-transform: translateY(0); -webkit-transform: translateY(0); transform: translateY(0); visibility: visible; }
#notification-bar > * { display: inline-block; text-align: center; padding: 9px 10px; display: block; }
#notification-bar .close-it { margin-left: 10px; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; }
#notification-bar .close-it:hover { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }
#notification-bar .success { background-color: #8ac04b; }
#notification-bar .error { background-color: #e15757; }

/* Filter Bar 사용안함-----*/


/* Carousel 버튼색수정
----------------------------------------------------------*/
.carousel { position: relative; }
.carousel .owl-item { overflow: hidden; }
.carousel:hover .owl-buttons
 { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; -moz-transform: scaleX(1); -ms-transform: scaleX(1); -webkit-transform: scaleX(1); transform: scaleX(1); visibility: visible; }

.owl-pagination { text-align: center; }
.owl-pagination .owl-page { display: inline-block; margin: 0px 8px; }
.owl-pagination .owl-page span 
{ display: inline-block; width: 11px; height: 11px;
 -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%;
  -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; 
  background-color: #ffffff; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20); opacity: 0.2; }
.owl-pagination .owl-page.active span { background-color: #fff;filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; }

.dark .owl-pagination .owl-page span { background-color: rgba(255, 255, 255, 0.9); }
.dark .owl-pagination .owl-page.active span { background-color: rgba(255, 255, 255, 0.75); }

.owl-buttons { position: absolute; top: 50%; margin-top: -20px; width: 100%; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; -moz-transform: scaleX(0.9); -ms-transform: scaleX(0.9); -webkit-transform: scaleX(0.9); transform: scaleX(0.9); visibility: hidden; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }
.owl-buttons > * { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }
.owl-buttons > *:hover, .owl-buttons > *:focus { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }
.owl-buttons > *:after, .owl-buttons > *:before { position: absolute; top: 0; font-size: 26px; font-family: themify; }
.owl-buttons .owl-prev:before { left: -20px; content: "\e64a"; }
.owl-buttons .owl-next:before { right: -20px; content: "\e649"; }

.inner-controls > .owl-controls > .owl-pagination { position: absolute; bottom: 30px; left: 0; right: 0; }
.inner-controls > .owl-controls > .owl-pagination .owl-page span { background-color: #fff; }
.inner-controls .owl-buttons > *:after, .inner-controls .owl-buttons > *:before { color: #fff; }
.inner-controls .owl-buttons .owl-prev:before { left: 20px; }
.inner-controls .owl-buttons .owl-next:before { right: 20px; }



/* 이사비용절약팁
----------------------------------------------------------*/
.feature { margin-bottom: 0px; display: block; }
.feature.feature-1 .icon { margin-bottom: 15px; }
.feature.feature-1 .icon { margin-bottom: 15px; }


.feature.feature-1 .thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  background: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.feature.feature-1 .thumb img {
  width: 80px;
  height: auto;
}




.feature.feature-1 p {color:#000;letter-spacing:-0.03em;
  font-size: 24px; 
  font-size: 1.5rem; }
.feature.feature-1 h5 {font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem; }
/*.feature.feature-2 { min-height: 130px; }
.feature.feature-2 .feature-content { padding-left: 75px; padding-top: 10px; }
.feature.feature-2 .icon { float: left; }
.feature.feature-2 .icon.icon-sm + .feature-content { padding-left: 55px; }
.feature.feature-2 .icon.icon-lg + .feature-content { padding-left: 120px; }
.feature.feature-2 .icon.icon-xl + .feature-content { padding-left: 190px; padding-top: 20px; }
.feature.feature-2 .icon.icon-circle + .feature-content { padding-left: 95px; }
.feature.feature-2 .icon.icon-circle.icon-sm + .feature-content { padding-left: 64px; }
.feature.feature-2 .icon.icon-circle.icon-lg + .feature-content { padding-left: 140px; }
.feature.feature-2 .icon.icon-circle.icon-xl + .feature-content { padding-left: 190px; }
.feature.feature-2.feature-sm { min-height: 0; }
.feature.feature-3 > img { width: 100%; }
.feature.feature-3 .feature-content { padding: 30px; }
.feature.feature-4 { padding: 30px; }
.feature.feature-5 { position: relative; height: 450px; padding: 40px; overflow: hidden; text-align: center; }
.feature.feature-5 .content { position: relative; top: 50%; -moz-transform: translate3d(0, -50%, 0); -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; }
.feature.bordered { padding: 35px; border: 1px solid rgba(0, 0, 0, 0.15); }
.feature.boxed { padding: 35px; background: #f6f6f6; }
.feature.boxed.bg-white { background: #fff; }
.feature.boxed.bg-primary { background: #0f4fb9 !important; }
.feature.rounded { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }

.dark .feature.bordered { border-color: rgba(255, 255, 255, 0.15); }
.dark .feature.boxed { background-color: rgba(0, 0, 0, 0.5); }

.bg-grey .feature.bordered { border-color: #fff; }
.bg-grey .feature.boxed { background-color: #fff; }

/* Layout
----------------------------------------------------------*/

/* Spread Items 
.spread-items { padding: 0; margin: 0; }
.spread-items > * { display: inline-block; margin: 0 20px; }

/* Media
----------------------------------------------------------*/
/* Images */
.image-box { position: relative; overflow: hidden; }
.image-box .image { position: relative; background: #000000; overflow: hidden; }
.image-box .image img { position: relative; -moz-transition: all 0.5s ease-out; -o-transition: all 0.5s ease-out; -webkit-transition: all 0.5s ease-out; transition: all 0.5s ease-out; width: 100%; z-index: 1; }
.image-box .hover { position: absolute; top: 50%; left: 30px; right: 30px; -moz-transform: translate3d(0, -50%, 0); -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); -moz-transition: all 0.5s ease-out; -o-transition: all 0.5s ease-out; -webkit-transition: all 0.5s ease-out; transition: all 0.5s ease-out; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; -webkit-filter: blur(5px); filter: blur(5px); color: #fff; z-index: 3; }
.image-box .hover .text-muted { color: rgba(255, 255, 255, 0.5); }
.image-box .content { position: absolute; top: 50%; left: 30px; right: 30px; -moz-transform: translate3d(0, -50%, 0); -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); z-index: 2; }
.image-box .title { padding: 5px; }
.image-box .title h5 { font-size: 18px;}
.image-box .title p { font-size: 16px;}

.image-box > .label { position: absolute; top: 20px; right: 20px; z-index: 4; }
.image-box.image-hover .image img { -moz-transform: scale(1.05, 1.05); -ms-transform: scale(1.05, 1.05); -webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05); }
.image-box.image-hover:hover .image img { -moz-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform: scale(1, 1); transform: scale(1, 1); }
.image-box.image-hover:hover .image .hover ~ img, .image-box.image-hover:hover .image .hover ~ a > img { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=45); opacity: 0.3; }
.image-box.image-hover:hover .hover { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; -webkit-filter: blur(0); filter: blur(0); }
.image-box.inner-title .image:after { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background-image: url(''); background-size: 100%; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.65))); background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65)); background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65)); background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65)); -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; content: ' '; visibility: hidden; z-index: 2; }
.image-box.inner-title .title { position: absolute; bottom: 0; left: 0; width: 100%; color: #fff; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; visibility: hidden; -webkit-filter: blur(5px); filter: blur(5px); -moz-transform: translateY(10px); -ms-transform: translateY(10px); -webkit-transform: translateY(10px); transform: translateY(10px); z-index: 3; }
.image-box.inner-title .title .h5 { font-size: 18px; }
.image-box.inner-title .title .text-muted { color: rgba(255, 255, 255, 0.5); }
.image-box.inner-title:hover .image:after { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; visibility: visible; }
.image-box.inner-title:hover .title { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; -webkit-filter: blur(0); filter: blur(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -webkit-transform: translateY(0); transform: translateY(0); visibility: visible; }
.image-box.rounded { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }

/* Video Box 

/* Other
----------------------------------------------------------*/
/* Social Bar */

/* Workflow Steps 메ㅣㅇㄴ*/
.workflow-steps { position: relative; }
.workflow-steps .workflow-progress { position: absolute; top: 32px; width: 100%; display: block; height: 2px; background-color: #d2d2d2; z-index: 0; }
@media only screen and (max-width: 991px) { .workflow-steps .workflow-progress { display: none; } }
.workflow-steps .workflow-progress:after { 
position: absolute; top: 0; left: 0; height: 100%; width: 0; background-color: #0f4fb9; content: ' '; 
-moz-transition: width 4s linear; -o-transition: width 4s linear; -webkit-transition: width 4s linear; transition: width 4s linear; }
.workflow-steps .workflow-progress.animated { visibility: visible; }
.workflow-steps .workflow-progress.animated.visible:after { width: 100%; }
.workflow-steps .step .icon { margin-bottom: 30px; }
.workflow-steps .step.animated { visibility: visible; }
.workflow-steps .step.animated i, .workflow-steps .step.animated h5, .workflow-steps .step.animated p { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }
.workflow-steps .step.animated.visible i, .workflow-steps .step.animated.visible h5, .workflow-steps .step.animated.visible p { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }

.bg-primary .workflow-steps .workflow-progress { background-color: rgba(255, 255, 255, 0.2); }
.bg-primary .workflow-steps .workflow-progress:after { background-color: #fff; }

/* Workflow Steps 서브*/
.workflow-steps_sub { position: relative; }
.workflow-steps_sub .workflow-progress { position: absolute; top: 32px; width: 100%; display: block; height: 2px; background-color: #000; z-index: 0; }
@media only screen and (max-width: 991px) { .workflow-steps_sub .workflow-progress { display: none; } }
.workflow-steps_sub .workflow-progress:after { 
position: absolute; top: 0; left: 0; height: 100%; width: 0; background-color: #ffffff; content: ' '; 
-moz-transition: width 4s linear; -o-transition: width 4s linear; -webkit-transition: width 4s linear; transition: width 4s linear; }
.workflow-steps_sub .workflow-progress.animated { visibility: visible; }
.workflow-steps_sub .workflow-progress.animated.visible:after { width: 100%; }
.workflow-steps_sub .step .icon { margin-bottom: 30px; }
.workflow-steps_sub .step.animated { visibility: visible; }
.workflow-steps_sub .step.animated i, .workflow-steps_sub .step.animated h5, .workflow-steps_sub .step.animated p { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }
.workflow-steps_sub .step.animated.visible i, .workflow-steps_sub .step.animated.visible h5, .workflow-steps_sub .step.animated.visible p { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }

.bg-primary .workflow-steps_sub .workflow-progress { background-color: rgba(255, 255, 255, 0.2); }
.bg-primary .workflow-steps_sub .workflow-progress:after { background-color: #fff; }




/* Bordered box */
.bordered-box { padding: 30px; border: 1px solid rgba(0, 0, 0, 0.15); }

.dark .bordered-box { border-color: rgba(255, 255, 255, 0.15); }

/* Countdown */
.countdown { font-size: 74px; font-weight: 100; line-height: 1; }
.countdown > span { margin-right: 15px; margin-bottom: 15px; display: inline-block; }
.countdown .weeks, .countdown .days { position: relative; }
.countdown .weeks > span, .countdown .days > span { position: absolute; bottom: -15px; left: 0; right: 0; text-align: center; font-size: 13px; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5;font-family:"Noto Sans Korean", sans-serif; text-transform: uppercase; }

/* Typing */
.typed-cursor { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; -moz-animation: blinking 1.5s infinite; -webkit-animation: blinking 1.5s infinite; animation: blinking 1.5s infinite; }

/* Close */
.close { text-shadow: none; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40); opacity: 0.4; }
.close:hover, .close:focus { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); opacity: 0.7; }
.dark .close { color: #fff; }

/* PayPal */
.paypal-donate input { display: none; }

/* Timetable */
.timetable { margin-bottom: 30px; }
.timetable h5 { margin-bottom: 0; }
.timetable .head { margin-bottom: 0; padding-bottom: 15px; border-bottom: 2px solid #0f4fb9; }
.timetable .item { padding: 50px 0; border-bottom: 2px solid rgba(0, 0, 0, 0.15); }

.bg-grey .timetable .item { border-color: #fff; }

.dark .timetable .item { border-color: rgba(255, 255, 255, 0.15); }

/* Menu List */
.list-menu { list-style: none; padding: 0; margin: 0; }
.list-menu > li { margin-bottom: 20px; border-bottom: 1px dotted rgba(0, 0, 0, 0.15); display: -webkit-flex; display: flex; }
.list-menu > li .title { -webkit-flex-grow: 4; flex-grow: 4; }
.list-menu > li .title .caption { margin-bottom: 20px; display: block; }
.list-menu > li .price {font-family:"Noto Sans Korean", sans-serif; font-size: 18px; text-align: right; -webkit-flex-grow: 1; flex-grow: 1; }

.dark .list-menu li { border-color: rgba(255, 255, 255, 0.15); }

/* Affix */
.side-sticky-navigation.affix { top: 110px; width: 100%; max-width: 300px; }

/* Documentation */
.shape { display: inline-block; width: 64px; height: 64px; }
.shape.rounded { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }

.example-box { border: 1px solid #E1E1E8; border-top-left-radius: 4px; border-top-right-radius: 4px; margin-bottom: 20px; }

.example-box-content { padding: 20px; }

.example-box-content > *:last-child { margin-bottom: 0; }

.example-box-title { padding: 10px 20px; text-transform: uppercase; font-size: 12px; border-bottom: 1px solid #E1E1E8; background-color: #F7F8F9; color: #9b9fa1; font-weight: 500; }

.example-box + pre { margin-top: -1px !important; border-top-left-radius: 0; border-top-right-radius: 0; }

pre { tab-size: 4; }

/* Page Title
----------------------------------------------------------*/


/* Alerts
----------------------------------------------------------*/
.alert { -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; border: none; color: #fff !important; }
.alert .close { position: relative; top: 3px; font-size: 12px; color: #fff !important; text-shadow: none; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; }
.alert .close:hover, .alert .close:focus { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }

.alert-success { background-color: #8ac04b; }

.alert-info { background-color: #2786c9; }

.alert-warning { background-color: #f19354; }

.alert-danger { background-color: #e15757; }






/*-------- 1.2 Buttons ---------*/
a.btn_1,
.btn_1 {
 border: 1px solid #d82d53;
  color: #fff;
  background: #ff4a51;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  color: #fff;
  font-weight:400;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
a.btn_1:hover,
.btn_1:hover {
  background: #004dda;border: 1px solid #132684;
  color: #fff;
}

a.btn_2,
.btn_2 {
  background: none;
  border: 2px solid #204ac0;
  color: #333;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
 padding: 15px 30px;
  
  font-weight:400;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
a.btn_2:hover,
.btn_2:hover {
  background: #204ac0;
  color: #fff;
}
a.btn_3,
.btn_3 {
   background: #1abbef;
   border: 1px solid #132684; 
  color: #fff;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
 padding: 15px 30px;
  font-weight:400;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
a.btn_3:hover,
.btn_3:hover {
 background: #004dda;border: 1px solid #132684; 
  color: #fff;
}

a.btn_1.full-width,
.btn_1.full-width { font-size: 18px;
  font-size: 1.125rem;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}

@media (max-width: 991px) {
 a.btn_1.full-width,
.btn_1.full-width { font-size: 16px;
  font-size: 1rem;
  
}
}


a.btn_1.full-width.purchase,
.btn_1.full-width.purchase {
  background-color: #e02937;border: 1px solid #d82d53; color: #fff;
}
a.btn_1.full-width.purchase:hover,
.btn_1.full-width.purchase:hover {
  background: #d82d53;border: 1px solid #d82d53; color: #fff;
}


a.btn_1.full-width.dblue,
.btn_1.full-width.dblue {
  background: #2261c8;border: 1px solid #2261c8; color: #fff;
}
a.btn_1.full-width.dblue:hover,
.btn_1.full-width.dblue:hover {
background-color: #006fbd;border: 1px solid #2261c8; color: #fff;  
}

a.btn_1.full-width.yellow,
.btn_1.full-width.yellow {
  background-color: #f8b300;border: 1px solid #eaa901; color: #fff;
}
a.btn_1.full-width.yellow:hover,
.btn_1.full-width.yellow:hover {
  background: #2261c8;border: 1px solid #2261c8; color: #fff;
}




a.btn_1.full-width.blue,
.btn_1.full-width.blue {
  background-color: #0e81f8;border: 1px solid #0e81f8; color: #fff;
}
a.btn_1.full-width.blue:hover,
.btn_1.full-width.blue:hover {
  background: #0896f8;border: 1px solid #0896f8; color: #fff;
}
a.btn_1.full-width.red,
.btn_1.full-width.red {
  background: #c00423;border: 1px solid #a2041e; color: #fff;
}
a.btn_1.full-width.red:hover,
.btn_1.full-width.red:hover {
  background-color: #94041c;border: 1px solid #a2041e; color: #fff;
}

a.btn_1.full-width.sblue,
.btn_1.full-width.sblue {
  background-color: #1abbef;border: 1px solid #173277; color: #fff;
}
a.btn_1.full-width.sblue:hover,
.btn_1.full-width.sblue:hover {
  background: #1abbef;border: 1px solid #3690b0; color: #fff;
}

a.btn_1.full-width.green,
.btn_1.full-width.green{
  background-color: #6aaf21;border: 1px solid #6aaf21; color: #fff;
}
a.btn_1.full-width.green:hover,
.btn_1.full-width.green:hover {
  background: #68b82e;border: 1px solid #6aaf21; color: #fff;
}

a.btn_1.full-width.main,
.btn_1.full-width.main {
  background-color: #0752c9;
}
a.btn_1.full-width.main:hover,
.btn_1.full-width.main:hover {
  background-color: #01317f;
}

a.btn_1.full-width.wishlist,
.btn_1.full-width.wishlist {
  border-color: #555;
  color: #555;
}
a.btn_1.medium,
.btn_1.medium {
  font-size: 16px;
  font-size: 1rem;
  padding: 18px 40px;
}

a.btn_1.small,
.btn_1.small {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 7px 20px;
}
a.btn_2.small,
.btn_2.small {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 5px 20px;
}
a.button_2{
	padding:10px 30px;
	display:inline-block;
	background-color:#1aa79b;
	font-weight:600;
	color:#fff;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	cursor:pointer;
	border:0;
	font-size:16px;
	outline:none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
a.button_2:hover{
	color:#fff;
	background-color:#f26522;
}

a.btn_1.rounded,
.btn_1.rounded {
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  -ms-border-radius: 25px !important;
  border-radius: 25px !important;
}
a.btn_1.outline,
.btn_1.outline {
  border: 2px solid #ff4a51;
  color: #ff4a51;
  padding: 11px 40px;
  background: none;
}
a.btn_1.outline:hover,
.btn_1.outline:hover {
  background: #204ac0;
  color: #fff;
  border-color: #204ac0;
}
a.btn_1.outline:focus,
.btn_1.outline:focus {
  outline: none;
}

.closebt {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: absolute;
  font-size: 24px;
  font-size: 1.5rem;
  top: 10px;
  right: 15px;
  color: #fff;
  opacity: 0.6;
  width: 30px;
  height: 30px;
}
.closebt:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1;
}

.btn_home_align {
  text-align: right;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .btn_home_align {
    text-align: center;
    margin-bottom: 25px;
  }
}

a.btn_map {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 8px 12px 8px 12px;
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
}
a.btn_map:hover {
  color: #ff4a51;
}
a.btn_map:before {
  font-family: 'ElegantIcons';
  content: "\e081";
  display: inline-block;
  margin-right: 5px;
}

a.btn_map_in,
.btn_map_in {
  border: none;
  color: #fff;
  background: #ff4a51;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
a.btn_map_in:hover,
.btn_map_in:hover {
  background: #204ac0;
  color: #fff;
}


a.btn_infobox_detail {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 20px;
  height: 20px;
}

a.btn_infobox_detail:before, .btn_infobox_get_directions:before, a.btn_infobox_phone:before {
  font-style: normal;
  font-weight: normal;
  font-family: "ElegantIcons";
  font-size: 20px;
  font-size: 1.25rem;
  cursor: pointer;
}

a.btn_infobox_detail:before {
  content: "\70";
  color: #ccc;
}
a.btn_infobox_detail:before:hover {
  color: #ff4a51;
}

.btn_infobox_get_directions, a.btn_infobox_phone {
  border: none;
  display: inline-block;
  font-weight: 500;
  color: #ff4a51;
  background: none;
  cursor: pointer;
  font-size: 13px;
  font-size: 0.8125rem;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  outline: none;
}
.btn_infobox_get_directions:focus, a.btn_infobox_phone:focus {
  outline: none;
}

.btn_infobox_get_directions:hover, a.btn_infobox_phone:hover {
  color: #333;
}

.btn_infobox_get_directions:before {
  font-size: 16px;
  font-size: 1rem;
  content: "\e080";
  position: absolute;
  left: 0;
  top: 0;
}

a.btn_infobox_phone:before {
  font-size: 14px;
  content: "\e090";
  position: absolute;
  left: 0;
  top: -2px;
}

span.infobox_rate {
  display: inline-block;
  margin: -44px 0 0 -20px;
  float: left;
  background-color: #204ac0;
  padding: 5px 8px;
  font-weight: 500;
  text-align: left;
  font-size: 12px;
  font-size: 0.75rem;
}





/* Buttons
----------------------------------------------------------*/
.btn { position: relative;font-family:"Noto Sans Korean", sans-serif; text-transform: uppercase; 
font-weight: 500; font-size:14px;  font-size: 0.875rem;
-moz-border-radius: 40px; -webkit-border-radius: 40px; 
border-radius: 40px; padding: 13px 28px 15px; border: none; color: inherit; 
-moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; 
-webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; 
outline: none; border: 2px solid; background: transparent; margin-bottom: 3px; }

.btn i { font-size: 130%; display: inline-block; vertical-align: middle; }
.btn.btn-xs { padding: 6px 20px 7px; }
.btn.btn-sm { padding: 10px 24px 11px; }
.btn.btn-lg { padding: 18px 32px 20px; font-size: 12px; }
.btn.btn-default { border-color: #ededed; color: inherit; }
.btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active, .btn.btn-default:active:focus, .btn.btn-default:active:hover { background-color: #ededed; color: inherit; }
.btn.btn-white { border-color: #fff; }
.btn.btn-primary { border-color: #0f4fb9; }
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active, .btn.btn-primary:active:focus, .btn.btn-primary:active:hover { border-color: #0f4fb9; background-color: #0f4fb9; }
.btn.btn-secondary { border-color: #1f1f1f; }
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary:active, .btn.btn-secondary:active:focus, .btn.btn-secondary:active:hover { border-color: #1f1f1f; background-color: #1f1f1f; }
.btn.btn-info { border-color: #2786c9; }
.btn.btn-info:hover, .btn.btn-info:focus, .btn.btn-info:active, .btn.btn-info:active:focus, .btn.btn-info:active:hover { border-color: #2786c9; background-color: #2786c9; }
.btn.btn-warning { border-color: #f19354; }
.btn.btn-warning:hover, .btn.btn-warning:focus, .btn.btn-warning:active, .btn.btn-warning:active:focus, .btn.btn-warning:active:hover { border-color: #f19354; background-color: #f19354; }

.btn.btn-clean { border-color: #32a723; }
.btn.btn-clean:hover, .btn.btn-clean:focus, .btn.btn-clean:active, .btn.btn-clean:active:focus, .btn.btn-clean:active:hover { border-color: #32a723; background-color: #32a723; }
.btn.btn-danger { border-color: #e15757; }
.btn.btn-danger:hover, .btn.btn-danger:focus, .btn.btn-danger:active, .btn.btn-danger:active:focus, .btn.btn-danger:active:hover { border-color: #e15757; background-color: #e15757; }

.btn.btn-success { border-color: #8ac04b; }
.btn.btn-success:hover, .btn.btn-success:focus, .btn.btn-success:active, .btn.btn-success:active:focus, .btn.btn-success:active:hover { border-color: #8ac04b; background-color: #8ac04b; }
.btn.btn-dark { border-color: #1f1f1f; }
.btn.btn-dark:hover, .btn.btn-dark:focus, .btn.btn-dark:active, .btn.btn-dark:active:focus, .btn.btn-dark:active:hover { border-color: #1f1f1f; background-color: #1f1f1f; }
.btn.btn-facebook { border-color: #213553; }
.btn.btn-facebook:hover, .btn.btn-facebook:focus, .btn.btn-facebook:active, .btn.btn-facebook:active:focus, .btn.btn-facebook:active:hover { border-color: #213553; background-color: #213553; }
.btn.btn-twitter { border-color: #3aa8db; }
.btn.btn-twitter:hover, .btn.btn-twitter:focus, .btn.btn-twitter:active, .btn.btn-twitter:active:focus, .btn.btn-twitter:active:hover { border-color: #3aa8db; background-color: #3aa8db; }
.btn.btn-google-plus { border-color: #d04f3e; }
.btn.btn-google-plus:hover, .btn.btn-google-plus:focus, .btn.btn-google-plus:active, .btn.btn-google-plus:active:focus, .btn.btn-google-plus:active:hover { border-color: #d04f3e; background-color: #d04f3e; }
.btn.btn-behance { border-color: #1882ff; }
.btn.btn-behance:hover, .btn.btn-behance:focus, .btn.btn-behance:active, .btn.btn-behance:active:focus, .btn.btn-behance:active:hover { border-color: #1882ff; background-color: #1882ff; }
.btn.btn-dribbble { border-color: #e95aae; }
.btn.btn-dribbble:hover, .btn.btn-dribbble:focus, .btn.btn-dribbble:active, .btn.btn-dribbble:active:focus, .btn.btn-dribbble:active:hover { border-color: #e95aae; background-color: #e95aae; }
.btn.btn-flickr { border-color: #f9429c; }
.btn.btn-flickr:hover, .btn.btn-flickr:focus, .btn.btn-flickr:active, .btn.btn-flickr:active:focus, .btn.btn-flickr:active:hover { border-color: #f9429c; background-color: #f9429c; }
.btn.btn-instagram { border-color: #4f86ac; }
.btn.btn-instagram:hover, .btn.btn-instagram:focus, .btn.btn-instagram:active, .btn.btn-instagram:active:focus, .btn.btn-instagram:active:hover { border-color: #4f86ac; background-color: #4f86ac; }
.btn.btn-linkedin { border-color: #008bc2; }
.btn.btn-linkedin:hover, .btn.btn-linkedin:focus, .btn.btn-linkedin:active, .btn.btn-linkedin:active:focus, .btn.btn-linkedin:active:hover { border-color: #008bc2; background-color: #008bc2; }
.btn.btn-pinterest { border-color: #cb1f24; }
.btn.btn-pinterest:hover, .btn.btn-pinterest:focus, .btn.btn-pinterest:active, .btn.btn-pinterest:active:focus, .btn.btn-pinterest:active:hover { border-color: #cb1f24; background-color: #cb1f24; }
.btn.btn-skype { border-color: #00bef4; }
.btn.btn-skype:hover, .btn.btn-skype:focus, .btn.btn-skype:active, .btn.btn-skype:active:focus, .btn.btn-skype:active:hover { border-color: #00bef4; background-color: #00bef4; }
.btn.btn-slack { border-color: #44ba97; }
.btn.btn-slack:hover, .btn.btn-slack:focus, .btn.btn-slack:active, .btn.btn-slack:active:focus, .btn.btn-slack:active:hover { border-color: #44ba97; background-color: #44ba97; }
.btn.btn-tumblr { border-color: #435971; }
.btn.btn-tumblr:hover, .btn.btn-tumblr:focus, .btn.btn-tumblr:active, .btn.btn-tumblr:active:focus, .btn.btn-tumblr:active:hover { border-color: #435971; background-color: #435971; }
.btn.btn-vimeo { border-color: #0bc4ef; }
.btn.btn-vimeo:hover, .btn.btn-vimeo:focus, .btn.btn-vimeo:active, .btn.btn-vimeo:active:focus, .btn.btn-vimeo:active:hover { border-color: #0bc4ef; background-color: #0bc4ef; }
.btn.btn-vine { border-color: #00be9b; }
.btn.btn-vine:hover, .btn.btn-vine:focus, .btn.btn-vine:active, .btn.btn-vine:active:focus, .btn.btn-vine:active:hover { border-color: #00be9b; background-color: #00be9b; }
.btn.btn-youtube { border-color: #ed4533; }
.btn.btn-youtube:hover, .btn.btn-youtube:focus, .btn.btn-youtube:active, .btn.btn-youtube:active:focus, .btn.btn-youtube:active:hover { border-color: #ed4533; background-color: #ed4533; }
.btn:hover, .btn:focus { color: #fff; }
.btn:focus:active, .btn:focus, .btn:active { outline: none !important; }
.btn:active { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }

html[dir="rtl"] .btn { font-size: 13px; }
html[dir="rtl"] .btn.btn-xs { font-size: 12px; }
html[dir="rtl"] .btn.btn-sm { font-size: 12px; }
html[dir="rtl"] .btn.btn-lg { font-size: 14px; }

.btn-filled { color: #fff; }
.btn-filled:hover, .btn-filled:focus { color: #fff; }
.btn-filled.btn-white { background-color: #fff; color: #000;border-color: #000000; }
.btn-filled.btn-white:hover, .btn-filled.btn-white:focus { background-color: #000000; border-color: #000000; color: #fff; }

.btn-filled.btn-black {background-color: #000000; border-color: #000000; color: #fff;  }
.btn-filled.btn-black:hover, .btn-filled.btn-black:focus { background-color: #fff; color: #000; }


.btn-filled.btn-default { background-color: #ededed; color: #434343; }
.btn-filled.btn-default:hover, .btn-filled.btn-default:focus, .btn-filled.btn-default:active, .btn-filled.btn-default:active:focus, .btn-filled.btn-default:active:hover { color: #1f1f1f; background-color: lightgray; border-color: lightgray; }
.btn-filled.btn-primary { background-color: #0f4fb9; }
.btn-filled.btn-primary:hover, .btn-filled.btn-primary:focus, .btn-filled.btn-primary:active, .btn-filled.btn-primary:active:focus, .btn-filled.btn-primary:active:hover { background-color: #0b3b8a; }
.btn-filled.btn-secondary { background-color: #1f1f1f; }
.btn-filled.btn-secondary:hover, .btn-filled.btn-secondary:focus, .btn-filled.btn-secondary:active, .btn-filled.btn-secondary:active:focus, .btn-filled.btn-secondary:active:hover { background-color: #050505; border-color: #050505; }
.btn-filled.btn-info { background-color: #2786c9; }
.btn-filled.btn-info:hover, .btn-filled.btn-info:focus, .btn-filled.btn-info:active, .btn-filled.btn-info:active:focus, .btn-filled.btn-info:active:hover { background-color: #1f6a9e; border-color: #1f6a9e; }
.btn-filled.btn-warning { background-color: #f19354; }
.btn-filled.btn-warning:hover, .btn-filled.btn-warning:focus, .btn-filled.btn-warning:active, .btn-filled.btn-warning:active:focus, .btn-filled.btn-warning:active:hover { background-color: #ed7525; border-color: #ed7525; }

.btn-filled.btn-danger { background-color: #e15757; }
.btn-filled.btn-danger:hover, .btn-filled.btn-danger:focus, .btn-filled.btn-danger:active, .btn-filled.btn-danger:active:focus, .btn-filled.btn-danger:active:hover { background-color: #d92c2c; border-color: #d92c2c; }

.btn-filled.btn-clean { background-color: #32a723; }
.btn-filled.btn-clean:hover, .btn-filled.btn-clean:focus, .btn-filled.btn-clean:active, .btn-filled.btn-clean:active:focus, .btn-filled.btn-clean:active:hover { background-color: #2c941e; border-color: #2c941e; }


.btn-filled.btn-success { background-color: #8ac04b; }
.btn-filled.btn-success:hover, .btn-filled.btn-success:focus, .btn-filled.btn-success:active, .btn-filled.btn-success:active:focus, .btn-filled.btn-success:active:hover { background-color: #70a038; border-color: #70a038; }
.btn-filled.btn-dark { background-color: #1f1f1f; }
.btn-filled.btn-dark:hover, .btn-filled.btn-dark:focus, .btn-filled.btn-dark:active, .btn-filled.btn-dark:active:focus, .btn-filled.btn-dark:active:hover { background-color: #050505; border-color: #050505; }

.dark .btn.btn-default { border-color: #fff; }
.dark .btn.btn-default:hover, .dark .btn.btn-default:focus { color: #1f1f1f; background-color: #fff; }

.btn-link { border: none; }
.btn-link:hover, .btn-link:focus { color: inherit; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; text-decoration: none; }

/* Submit Button */
.btn-submit { display: block; text-align: center; width: 100%; background-color: transparent !important; border: none; }
.btn-submit:after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; font-size: 15px; padding-top: 9px; background-color: #0f4fb9; border: 2px solid #0f4fb9; -moz-border-radius: 50px; -webkit-border-radius: 50px; border-radius: 50px; -moz-transition: all 0.5s ease-out; -o-transition: all 0.5s ease-out; -webkit-transition: all 0.5s ease-out; transition: all 0.5s ease-out; content: ' '; }
.btn-submit > * { position: relative; z-index: 2; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }
.btn-submit.loading { -webkit-pointer-events: none; pointer-events: none; }
.btn-submit.loading > * { opacity: 0 !important; visibility: hidden; }
.btn-submit.loading:after { width: 45px; left: 50%; margin-left: -23px; -moz-animation: btnLoading 1.2s both 0.5s infinite; -webkit-animation: btnLoading 1.2s both 0.5s infinite; animation: btnLoading 1.2s both 0.5s infinite; }
.btn-submit.loading.success:after { font-family: 'themify'; background-color: #8ac04b; border-color: #8ac04b; -moz-animation: none; -webkit-animation: none; animation: none; content: "\e64c"; }
.btn-submit.loading.error:after { font-family: 'themify'; background-color: #e15757; border-color: #e15757; -moz-animation: none; -webkit-animation: none; animation: none; content: "\e646"; }
.btn-submit.btn-sm:after { font-size: 13px; padding-top: 8px; }
.btn-submit.btn-sm.loading:after { width: 38px; margin-left: -19px; }
.btn-submit.btn-lg:after { font-size: 17px; padding-top: 14px; }
.btn-submit.btn-lg.loading:after { width: 54px; margin-left: -27px; }

@-moz-keyframes btnLoading { 0% { -moz-transform: scale(1, 1); transform: scale(1, 1); }
  12% { -moz-transform: scale(0.7, 0.7); transform: scale(0.7, 0.7); }
  38% { -moz-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); }
  62% { -moz-transform: scale(0.8, 0.8); transform: scale(0.8, 0.8); }
  87% { -moz-transform: scale(1, 1); transform: scale(1, 1); } }
@-webkit-keyframes btnLoading { 0% { -webkit-transform: scale(1, 1); transform: scale(1, 1); }
  12% { -webkit-transform: scale(0.7, 0.7); transform: scale(0.7, 0.7); }
  38% { -webkit-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); }
  62% { -webkit-transform: scale(0.8, 0.8); transform: scale(0.8, 0.8); }
  87% { -webkit-transform: scale(1, 1); transform: scale(1, 1); } }
@keyframes btnLoading { 0% { -moz-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform: scale(1, 1); transform: scale(1, 1); }
  12% { -moz-transform: scale(0.7, 0.7); -ms-transform: scale(0.7, 0.7); -webkit-transform: scale(0.7, 0.7); transform: scale(0.7, 0.7); }
  38% { -moz-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); -webkit-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); }
  62% { -moz-transform: scale(0.8, 0.8); -ms-transform: scale(0.8, 0.8); -webkit-transform: scale(0.8, 0.8); transform: scale(0.8, 0.8); }
  87% { -moz-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform: scale(1, 1); transform: scale(1, 1); } }
/* Play Button */
.btn-play { position: relative; display: inline-block; font-size: 52px; width: 72px; height: 72px; font-size: 22px; vertical-align: middle; margin-bottom: 3px; color: #fff; }
.btn-play:before { position: absolute; top: 0; left: 0; bottom: 0; right: 0; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; -moz-box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.5); box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.5); -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; content: ' '; background: rgba(0, 0, 0, 0.5); }
.btn-play:after { position: absolute; top: 50%; left: 50%; -moz-transform: translate3d(-50%, -50%, 0); -webkit-transform: translate3d(-50%, -50%, 0); transform: translate3d(-50%, -50%, 0); -webkit-filter: blur(0); filter: blur(0); border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent #ffffff; content: ' '; }
.btn-play:hover:before { -moz-transform: scale(1.2, 1.2); -ms-transform: scale(1.2, 1.2); -webkit-transform: scale(1.2, 1.2); transform: scale(1.2, 1.2); }
.btn-play.btn-lg { width: 112px; height: 112px; }
.btn-play.btn-lg:after { border-width: 10px 0 10px 18px; }

/* Backgrounds
----------------------------------------------------------*/
/* Image */
.bg-image, .bg-parallax, .bg-slideshow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-position: center center; background-size: cover; background-repeat: no-repeat; z-index: 0; }

.bg-multiply { mix-blend-mode: multiply; }

.bg-slideshow .owl-wrapper-outer, .bg-slideshow .owl-wrapper, .bg-slideshow .owl-item { height: 100%; overflow: hidden; }

.bg-image > img { display: none; }

.bg-fixed { background-attachment: fixed; }

/* Video
.bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.bg-video-placeholder { display: none; }

.bg-image + *, .bg-parallax + *, .bg-video + * { position: relative; }

/* Map
.bg-map { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.bg-map.light-overlay:after, .bg-map.dark-overlay:after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; content: ' '; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; }
.bg-map.light-overlay:after { background: rgba(255, 255, 255, 0.5); }
.bg-map.dark-overlay:after { background: rgba(0, 0, 0, 0.5); }
.bg-map:hover:after { visibility: hidden; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; }
.bg-map + * { position: relative; }

/* Icon */
.bg-icons { position: absolute; top: 50%; left: 0; right: 0; -moz-transform: translate3d(0, -50%, 0); -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); color: rgba(0, 0, 0, 0.06); text-align: center; -moz-transform: scale(15, 15); -ms-transform: scale(15, 15); -webkit-transform: scale(15, 15); transform: scale(15, 15); }
.bg-icons > * { margin: 0 1px; display: inline-block; }
.bg-icons.white { color: #fff; }

.dark .bg-icons { color: rgba(255, 255, 255, 0.06); }

/* Instatram 
.bg-instagram-feed { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.bg-instagram-feed > a { float: left; width: 16.6666666%; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; }
.bg-instagram-feed > a:hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; }
.bg-instagram-feed > a > img { width: 100%; }
.bg-instagram-feed + * { position: relative; }

/* Colors */


.bg_color_1 {
  background-color: #ffffff;
}
.bg_color_2 {
  background-color: #6192de;
}
.bg_color_3 {
  background-color: #58c7f9;
}
.bg_color_4 {
  background-color: #2bd5dc;
}

.bg_color_5 {
  background-color: #f7fafd;
}
.bg_color_6 {
  background-color: #89bc2e;
}



.bg-white { background-color: #fff; }
.bg-blue { background-color: #2980eb; }
.bg-dblue { background-color: #004dda; }
.bg-grey { background-color: #f6f6f6; }
.bg-grey2{ background-color: #f3f6fc; }/*연보라그레이 */
.bg-grey3{ background-color: #d7e1f3; } 

.bg-grey-dark { background-color: #787878; }

.bg-black { background-color: #000000; }

.bg-dark { background-color: #1f1f1f; }

.bg-primary { background-color: #0f4fb9; }


.bg-secondary { background-color: #1f1f1f; }

.bg-info { background-color: #2786c9; }

.bg-warning { background-color: #f19354; }

.bg-danger { background-color: #e15757; }

.bg-success { background-color: #8ac04b; }

.bg-dark { background-color: #1f1f1f; }

.bg-facebook { background-color: #213553; }

.bg-twitter { background-color: #3aa8db; }

.bg-google-plus { background-color: #d04f3e; }

.bg-behance { background-color: #1882ff; }

.bg-dribbble { background-color: #e95aae; }

.bg-flickr { background-color: #f9429c; }

.bg-instagram { background-color: #4f86ac; }

.bg-linkedin { background-color: #008bc2; }

.bg-pinterest { background-color: #cb1f24; }

.bg-skype { background-color: #00bef4; }

.bg-slack { background-color: #44ba97; }

.bg-tumblr { background-color: #435971; }

.bg-vimeo { background-color: #0bc4ef; }

.bg-vine { background-color: #00be9b; }

.bg-youtube { background-color: #ed4533; }

/* Forms-다른 것사용
-------------------------------------------------------
.form-control { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: none; -webkit-box-shadow: none; 
box-shadow: none; background-color: #fff; font-size: 14px; padding: 15px 20px; height: 46px; border: none; border: 1px solid #d2d2d2; margin-bottom: 3px; -moz-appearance: none; -webkit-appearance: none; }
.form-control:-moz-placeholder { color: inherit; opacity: 0.5; }
.form-control::-moz-placeholder { color: inherit; opacity: 0.5; }
.form-control:-ms-input-placeholder { color: inherit; opacity: 0.5; }
.form-control::-webkit-input-placeholder { color: inherit; opacity: 0.5; }
.form-control:focus, .form-control:active { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; border:background-color:#e8eff6; }
.form-control.input-2 { -moz-border-radius: 30px; -webkit-border-radius: 30px; border-radius: 30px; }
.form-control.input-sm { padding: 6px 13px; height: 38px; font-size: 12px; }
.form-control.input-lg { padding: 10px 20px; height: 54px; font-size: 12px; font-size: 14px; }
.form-control.bordered { background: transparent !important; color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.form-control.bordered:-moz-placeholder { color: rgba(255, 255, 255, 0.5); }
.form-control.bordered::-moz-placeholder { color: rgba(255, 255, 255, 0.5); }
.form-control.bordered:-ms-input-placeholder { color: rgba(255, 255, 255, 0.5); }
.form-control.bordered::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.5); }
.form-control.bordered:focus, .form-control.bordered:active { border-color: rgba(255, 255, 255, 0.4); }
.form-control.valid { border-color: #8ac04b; }
.form-control.error { border-color: #e15757; }

textarea.input-sm { height: auto !important; }

.dark .form-control { background-color: #fff; }

/* Select
select.form-control { line-height: 1; }

.select-wrapper { position: relative; }
.select-wrapper:after { position: absolute; top: 50%; display: block; -moz-transform: translate3d(0, -50%, 0); -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); right: 13px; color: rgba(0, 0, 0, 0.4); font-family: themify; content: "\e62a"; }
.select-wrapper.bordered:after { color: rgba(255, 255, 255, 0.5); }

/* Inline Forms *
.input-inline { display: inline-block; min-width: 200px; margin-right: 3px; }

.input-qty { max-width: 80px; min-width: 20px; }

.form-inline .form-control { min-width: 200px; }

/* Inner button 
.inner-button { position: relative; }
.inner-button > button { position: absolute; top: 4px; right: 4px; border: none; width: 40px; height: 40px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; background: #0f4fb9; color: #fff; font-size: 15px; }
.inner-button > button > * { position: absolute; top: 50%; left: 50%; -moz-transform: translate3d(-50%, -50%, 0); -webkit-transform: translate3d(-50%, -50%, 0); transform: translate3d(-50%, -50%, 0); -webkit-filter: blur(0); filter: blur(0); }
.inner-button > input { padding-right: 44px !important; }
.inner-button > .input-sm + button { width: 30px; height: 30px; font-size: 13px; }

/* Checkbox
.checkbox input[type="checkbox"] { display: none; }
.checkbox input[type="checkbox"] + label { position: relative; padding-left: 27px; }
.checkbox input[type="checkbox"] + label:before { position: absolute; left: 0; top: 2px; width: 16px; height: 16px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; background-color: #ededed; display: block; content: ' '; }
.checkbox input[type="checkbox"] + label:after { position: absolute; top: 1px; left: 2px; font-family: themify; font-weight: 800; content: "\e64c"; color: #0f4fb9; font-size: 13px; display: block; -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -moz-transform: translateY(-150%); -ms-transform: translateY(-150%); -webkit-transform: translateY(-150%); transform: translateY(-150%); filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; }
.checkbox input[type="checkbox"]:checked + label:after { -moz-transform: translateY(0); -ms-transform: translateY(0); -webkit-transform: translateY(0); transform: translateY(0); filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }

/* Radio 
.radio input[type="radio"] { display: none; }
.radio input[type="radio"] + label { position: relative; padding-left: 27px; }
.radio input[type="radio"] + label:before { position: absolute; left: 0; top: 2px; width: 16px; height: 16px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; background-color: #ededed; display: block; content: ' '; }
.radio input[type="radio"] + label:after { position: absolute; top: 5px; left: 3px; width: 10px; height: 10px; content: " "; background-color: #0f4fb9; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; display: block; -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -moz-transform: scale(0, 0); -ms-transform: scale(0, 0); -webkit-transform: scale(0, 0); transform: scale(0, 0); filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; }
.radio input[type="radio"]:checked + label:after { -moz-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform: scale(1, 1); transform: scale(1, 1); filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }

/* Recaptcha */
.g-recaptcha { display: inline-block; }
.g-recaptcha.error { -moz-animation: recaptchaError 1s both; -webkit-animation: recaptchaError 1s both; animation: recaptchaError 1s both; }

@-moz-keyframes recaptchaError { 0% { -moz-box-shadow: none; box-shadow: none; }
  50% { -moz-box-shadow: 0 0 20px 0 #e15757; box-shadow: 0 0 20px 0 #e15757; }
  0% { -moz-box-shadow: none; box-shadow: none; } }
@-webkit-keyframes recaptchaError { 0% { -webkit-box-shadow: none; box-shadow: none; }
  50% { -webkit-box-shadow: 0 0 20px 0 #e15757; box-shadow: 0 0 20px 0 #e15757; }
  0% { -webkit-box-shadow: none; box-shadow: none; } }
@keyframes recaptchaError { 0% { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
  50% { -moz-box-shadow: 0 0 20px 0 #e15757; -webkit-box-shadow: 0 0 20px 0 #e15757; box-shadow: 0 0 20px 0 #e15757; }
  0% { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } }

/* Icons
----------------------------------------------------------*/
.icon { position: relative; display: inline-block; font-size: 52px; width: 72px; vertical-align: middle; margin-bottom: 3px; }
.icon.icon-xs { font-size: 16px; width: 36px; }
.icon.icon-sm { font-size: 28px; width: 48px; }
/*.icon.icon-m { font-size: 36px; width: 96px; }----*/
.icon.icon-m { font-size: 36px; width: 96px; }

.icon.icon-lg { font-size: 82px; width: 112px; }
.icon.icon-xl { font-size: 144px; width: 164px; }
.icon.icon-xxl { font-size: 208px; width: 240px; }
.icon.icon-default { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=15); opacity: 0.15; }
.icon.icon-grey { color: #d2d2d2; }
.icon.icon-white { color: #ffffff; }
.icon.icon-primary { color: #3dbeff; }
.icon.icon-secondary { color: #1f1f1f; }
.icon.icon-info { color: #2786c9; }
.icon.icon-warning { color: #f19354; }
.icon.icon-danger { color: #e15757; }
.icon.icon-success { color: #8ac04b; }
.icon.icon-dark { color: #1f1f1f; }
.icon.icon-facebook { color: #213553; }
.icon.icon-twitter { color: #3aa8db; }
.icon.icon-google-plus { color: #d04f3e; }
.icon.icon-behance { color: #1882ff; }
.icon.icon-dribbble { color: #e95aae; }
.icon.icon-flickr { color: #f9429c; }
.icon.icon-instagram { color: #4f86ac; }
.icon.icon-linkedin { color: #008bc2; }
.icon.icon-pinterest { color: #cb1f24; }
.icon.icon-skype { color: #00bef4; }
.icon.icon-slack { color: #44ba97; }
.icon.icon-tumblr { color: #435971; }
.icon.icon-vimeo { color: #0bc4ef; }
.icon.icon-vine { color: #00be9b; }
.icon.icon-youtube { color: #ed4533; }
.icon.icon-square, .icon.icon-circle { height: 72px; font-size: 32px; text-align: center; color: #fff; }
.icon.icon-square > *, .icon.icon-circle > * { position: absolute; top: 50%; left: 50%; -moz-transform: translate3d(-50%, -50%, 0); -webkit-transform: translate3d(-50%, -50%, 0); transform: translate3d(-50%, -50%, 0); }
.icon.icon-square.icon-xs, .icon.icon-circle.icon-xs { height: 36px; font-size: 13px; }
.icon.icon-square.icon-sm, .icon.icon-circle.icon-sm { height: 48px; font-size: 22px; }
.icon.icon-square.icon-lg, .icon.icon-circle.icon-m { height: 96px; font-size: 36px; }
.icon.icon-square.icon-lg, .icon.icon-circle.icon-lg { height: 112px; font-size: 48px; }
.icon.icon-square.icon-xl, .icon.icon-circle.icon-xl { height: 164px; font-size: 78px; }
.icon.icon-square.icon-white, .icon.icon-circle.icon-white { background-color: #fff; color: #0f4fb9; }
.icon.icon-square.icon-grey, .icon.icon-circle.icon-grey { background-color: #ededed; }
.icon.icon-square.icon-primary, .icon.icon-circle.icon-primary { background-color: #0f4fb9; }
.icon.icon-square.icon-secondary, .icon.icon-circle.icon-secondary { background-color: #1f1f1f; }
.icon.icon-square.icon-info, .icon.icon-circle.icon-info { background-color: #2786c9; }
.icon.icon-square.icon-warning, .icon.icon-circle.icon-warning { background-color: #f19354; }
.icon.icon-square.icon-danger, .icon.icon-circle.icon-danger { background-color: #e15757; }
.icon.icon-square.icon-success, .icon.icon-circle.icon-success { background-color: #8ac04b; }
.icon.icon-square.icon-dark, .icon.icon-circle.icon-dark { background-color: #1f1f1f; }
.icon.icon-square.icon-facebook, .icon.icon-circle.icon-facebook { background-color: #213553; }
.icon.icon-square.icon-twitter, .icon.icon-circle.icon-twitter { background-color: #3aa8db; }
.icon.icon-square.icon-google-plus, .icon.icon-circle.icon-google-plus { background-color: #d04f3e; }
.icon.icon-square.icon-behance, .icon.icon-circle.icon-behance { background-color: #1882ff; }
.icon.icon-square.icon-dribbble, .icon.icon-circle.icon-dribbble { background-color: #e95aae; }
.icon.icon-square.icon-flickr, .icon.icon-circle.icon-flickr { background-color: #f9429c; }
.icon.icon-square.icon-instagram, .icon.icon-circle.icon-instagram { background-color: #4f86ac; }
.icon.icon-square.icon-linkedin, .icon.icon-circle.icon-linkedin { background-color: #008bc2; }
.icon.icon-square.icon-pinterest, .icon.icon-circle.icon-pinterest { background-color: #cb1f24; }
.icon.icon-square.icon-skype, .icon.icon-circle.icon-skype { background-color: #00bef4; }
.icon.icon-square.icon-slack, .icon.icon-circle.icon-slack { background-color: #44ba97; }
.icon.icon-square.icon-tumblr, .icon.icon-circle.icon-tumblr { background-color: #435971; }
.icon.icon-square.icon-vimeo, .icon.icon-circle.icon-vimeo { background-color: #0bc4ef; }
.icon.icon-square.icon-vine, .icon.icon-circle.icon-vine { background-color: #00be9b; }
.icon.icon-square.icon-youtube, .icon.icon-circle.icon-youtube { background-color: #ed4533; }
.icon.icon-square { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.icon.icon-circle { -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; }

.i-before { margin-right: 8px; }

.i-after { margin-left: 8px; }

.i-before-after { margin-right: 8px; margin-left: 8px; }

html[dir="rtl"] .i-before { margin-left: 8px; margin-right: 0; }
html[dir="rtl"] .i-after { margin-right: 8px; margin-left: 0; }

/* Colors */
/* Images
----------------------------------------------------------*/
.img-rounded { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.img-circle { -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; }

.gray-to-color { -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; -webkit-filter: grayscale(1); filter: grayscale(1); filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); opacity: 0.7; }
.gray-to-color:hover { -webkit-filter: grayscale(0); filter: grayscale(0); filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }

.color-to-grey { -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; }
.color-to-grey:hover { -webkit-filter: grayscale(1); filter: grayscale(1); filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); opacity: 0.7; }

/* Badges
----------------------------------------------------------*/
.badge { font-size: 12px; padding: 3px 5.5px;font-family:"Noto Sans Korean", sans-serif; font-weight: normal; }

.label {font-family:"Noto Sans Korean", sans-serif; text-transform: uppercase; color: #fff; border: none; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; padding: 0.7em .9em .8em; font-size: 80%; display: inline-block; vertical-align: middle; }
.label.label-default { color: #434343; }
.label.label-primary { background-color: #0f4fb9; }
.label.label-secondary { background-color: #1f1f1f; }
.label.label-info { background-color: #2786c9; }
.label.label-warning { background-color: #f19354; }
.label.label-danger { background-color: #e15757; }
.label.label-success { background-color: #8ac04b; }
.label.label-dark { background-color: #1f1f1f; }

/* Lightbox
----------------------------------------------------------*/
.lightboxOverlay { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); opacity: 0.7; }

.lb-loader { position: absolute !important; top: 50%; left: 50%; -moz-transform: translate3d(-50%, -50%, 0); -webkit-transform: translate3d(-50%, -50%, 0); transform: translate3d(-50%, -50%, 0); }

.lb-data { color: #fff;font-family:"Noto Sans Korean", sans-serif; }
.lb-data .lb-details { width: 100%; margin-top: 10px; float: none; }
.lb-data .lb-details .lb-caption { font-size: 14px; font-weight: 400; }
.lb-data .lb-details .lb-number { font-size: 12px; float: right; }

.lb-nav .lb-prev, .lb-nav .lb-next { position: absolute; width: 50%; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }
.lb-nav .lb-prev:after, .lb-nav .lb-next:after { position: absolute; top: 50%; content: ' '; width: 0; height: 0; border-style: solid; }
.lb-nav .lb-prev:hover, .lb-nav .lb-next:hover { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); opacity: 0.85; }
.lb-nav .lb-prev { left: 0; }
.lb-nav .lb-prev:after { left: -50px; border-width: 7.5px 13px 7.5px 0; border-color: transparent #ffffff transparent transparent; }
.lb-nav .lb-next { right: 0; }
.lb-nav .lb-next:after { right: -50px; border-width: 7.5px 0 7.5px 13px; border-color: transparent transparent transparent #ffffff; }

.lb-close { position: absolute; top: 50px; right: 50px; display: block; width: 40px; height: 40px; cursor: pointer; }
.lb-close:after { color: #fff; font-family: themify; content: "\e646"; font-size: 28px; width: 40px; height: 40px; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }
.lb-close:hover:after { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); opacity: 0.85; }

/* Loader
----------------------------------------------------------*/
/* Loader */
#page-loader { position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 10000; background: #fff; }
#page-loader > * { position: absolute; top: 50%; left: 50%; }
#page-loader .loader-1 { margin-top: -32px; margin-left: -32px; }
#page-loader .loader-2, #page-loader .lb-loader { -moz-transform: translate3d(-50%, -50%, 0); -webkit-transform: translate3d(-50%, -50%, 0); transform: translate3d(-50%, -50%, 0); }

/* Loader #1

/* Modals
----------------------------------------------------------*/
.modal.fade .modal-dialog { -moz-transform: translate(0, -30px); -ms-transform: translate(0, -30px); -webkit-transform: translate(0, -30px); transform: translate(0, -30px); }

.modal.fade.in .modal-dialog { -moz-transform: translate(0, 0); -ms-transform: translate(0, 0); -webkit-transform: translate(0, 0); transform: translate(0, 0); }

.modal-content { -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3); box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3); border: none; }

.modal-header { padding: 20px; }
.modal-header > .close { margin-top: 7px; }

.modal-dialog > .close, .modal-content > .close { position: absolute; top: 20px; right: 20px; }

.modal-body { padding: 20px; }

.modal-footer { padding: 20px; }

.modal-md { width: 762px; }
@media only screen and (max-width: 991px) { .modal-md { width: 600px; } }
@media only screen and (max-width: 767px) { .modal-md { width: 90%; } }

.modal-backdrop.in { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; }
.modal-content.dark .modal-header, .modal-content.dark .modal-footer { border-color: rgba(255, 255, 255, 0.15); }

/* Modal Bottom */
.modal-bottom { top: auto; }
.modal-bottom .modal-content { -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3); box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3); }
.modal-bottom .modal-dialog { margin: 20px 10px 10px; width: auto; }
.modal-bottom .modal-dialog .close { top: 50%; -moz-transform: translate3d(0, -50%, 0); -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); }
.modal-bottom .modal-body { padding-right: 40px; }
.modal-bottom.fade .modal-dialog { -moz-transform: translate(0, 30px); -ms-transform: translate(0, 30px); -webkit-transform: translate(0, 30px); transform: translate(0, 30px); }
.modal-bottom.fade.in .modal-dialog { -moz-transform: translate(0, 0); -ms-transform: translate(0, 0); -webkit-transform: translate(0, 0); transform: translate(0, 0); }
.modal-at-bottom.modal-open { overflow: auto; }

/* Modal Video 
.modal-video { text-align: center; }
@media only screen and (max-width: 991px) { .modal-video { text-align: left; } }
.modal-video iframe { width: 100%; display: block; }
.modal-video:before { display: inline-block; vertical-align: middle; content: " "; height: 100%; }
@media only screen and (max-width: 991px) { .modal-video:before { display: none; height: auto; } }
.modal-video .modal-dialog { display: inline-block; text-align: left; vertical-align: middle; }

/* Navs
-------------------------------------------------------------*/
/* Inline ----
.nav-inline li { display: inline-block; }
.nav-inline li a {font-family:"Noto Sans Korean", sans-serif; text-transform: uppercase; padding: 0 9px; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; background: none; }
.nav-inline li a:hover, .nav-inline li a:focus { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; background: none; }
.nav-inline.nav-sm a { font-size: 12px; }

/* Pills 
.nav-pills > li { display: inline-block; float: none; }
.nav-pills > li > a { color: inherit;font-family:"Noto Sans Korean", sans-serif; text-transform: uppercase; font-size: 12px; font-weight: 500; -moz-border-radius: 30px; -webkit-border-radius: 30px; border-radius: 30px; padding: 11px 26px 12px; }
.nav-pills > li > a:hover, .nav-pills > li > a:focus { background-color: #f6f6f6; }
.nav-pills > li.active > a { background-color: #0f4fb9; pointer-events: none; }
.nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { background-color: #0f4fb9; }
.nav-pills > li + li { margin-left: 0; }
.nav-pills.pills-sm > li > a { font-size: 12px; padding: 7px 20px 8px; }

/* Tabs----
.nav-tabs { border-bottom: 2px solid rgba(0, 0, 0, 0.15); }
.nav-tabs > li { margin-right: 25px; display: inline-block; float: none; }
.nav-tabs > li > a { position: relative;font-family:"Noto Sans Korean", sans-serif; text-transform: uppercase; font-size: 16px; font-weight: 500; padding: 20px 0; color: inherit; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; border: none !important; background: transparent !important; }
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; border: none !important; background: transparent !important; color: inherit; }
.nav-tabs > li > a:after { position: absolute; width: 100%; height: 2px; bottom: -1px; left: 0; background: #0f4fb9; content: ' '; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; -moz-transform-origin: top left; -ms-transform-origin: top left; -webkit-transform-origin: top left; transform-origin: top left; -moz-transform: scaleX(0); -ms-transform: scaleX(0); -webkit-transform: scaleX(0); transform: scaleX(0); }
.nav-tabs > li.active a { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; border: none; pointer-events: none; color: inherit; }
.nav-tabs > li.active a:hover, .nav-tabs > li.active a:focus { color: inherit; }
.nav-tabs > li.active a:after { -moz-transform: scaleX(1); -ms-transform: scaleX(1); -webkit-transform: scaleX(1); transform: scaleX(1); }
.nav-tabs.nav-stacked { border-bottom: none; border-right: 2px solid rgba(0, 0, 0, 0.15); }
.nav-tabs.nav-stacked > li { margin-right: 0; display: block; }
.nav-tabs.nav-stacked > li > a { padding: 12px 0; }
.nav-tabs.nav-stacked > li > a:after { width: 2px; height: 100%; top: 0; right: -4px; left: auto; -moz-transform: scaleY(0); -ms-transform: scaleY(0); -webkit-transform: scaleY(0); transform: scaleY(0); }
.nav-tabs.nav-stacked > li.active a:after { -moz-transform: scaleY(1); -ms-transform: scaleY(1); -webkit-transform: scaleY(1); transform: scaleY(1); }

html[dir="rtl"] .nav-tabs > li { margin-left: 25px; margin-right: 0; }

.dark .nav-tabs { border-color: rgba(255, 255, 255, 0.2); }
.dark .nav-tabs > li > a:after { background: #fff; }

/* Links 
.nav-links > li { margin-bottom: 11px; }
.nav-links > li a {font-family:"Noto Sans Korean", sans-serif; font-size: 13.5px; padding: 0; }
.nav-links > li a > i { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; font-size: 110%; margin-right: 10px; }
.nav-links > li a:hover, .nav-links > li a:focus { background: transparent; }
.nav-links > li a:hover:after, .nav-links > li a:focus:after { color: #0f4fb9; filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }
.nav-links > li > a:after { position: relative; font-family: 'themify'; content: "\e628"; margin-left: 10px; font-size: 90%; display: inline-block; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }
.nav-links > li ul { display: none; list-style: none; padding: 10px 0 0 20px; }
.nav-links > li ul > li { margin-bottom: 5px; }
.nav-links > li ul > li a { font-size: 12px; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; }
.nav-links > li ul > li.active a, .nav-links > li ul > li:hover a { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; }
.nav-links > li.active > a:after { -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -webkit-transform: rotate(90deg); transform: rotate(90deg); }
.nav-links > li.active > ul { display: block; }

/* Pagination
------------------------------------------------------
.pagination > li > a, .pagination > li span { -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; border: none !important; width: 34px; height: 34px; text-align: center; padding: 7px 3px;font-family:"Noto Sans Korean", sans-serif; font-size: 14px; color: inherit; background: transparent; }
.pagination > li > a:hover, .pagination > li > a:focus, .pagination > li span:hover, .pagination > li span:focus { background: transparent; color: #0f4fb9; }
.pagination > li.active > a, .pagination > li.active span { background: #0f4fb9; color: #fff; }
.pagination > li:first-child a, .pagination > li:last-child a { top: 7px; margin: 0 2px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; background: rgba(0, 0, 0, 0.15); color: #fff; width: 20px; height: 20px; font-size: 10px; color: #fff; padding: 4px 0; font-weight: 500; }
.pagination > li:first-child a:hover, .pagination > li:last-child a:hover { background: rgba(0, 0, 0, 0.3); }

html[dir="rtl"] .pagination > li:first-child, html[dir="rtl"] .pagination > li:last-child { display: none; }

/* Price Tables
----------------------------------------------------------*/
.price-table-1 { margin-bottom: 20px;border: 1px solid #cfdded; }
.price-table-1 .head { padding: 15px; margin-bottom: 20px; }
.price-table-1 .head h4 { margin-bottom: 0; }
.price-table-1 .head .price { font-size: 20px; font-weight: 400; line-height: 1; }
.price-table-1 .content { padding: 0 45px; }
.price-table-1 .content > ul {font-size: 14px; padding: 10px; list-style: none; margin: 0 -45px 15px; }
.price-table-1 .content > ul > li { padding: 4px 15px; border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
.price-table-1 .content > ul > li:last-child { border: none; }

h3 span {color:fff;position: absolute;
	top: 5px;
	right:20px;
	background: #0f4fb9;
	color: #fff;
	font-size: 16px;
	line-height:20px;
	padding: 5px;
	display: table;
	font-weight: 400;
	margin-bottom:0px;
}


.price-table-2 { position: relative; text-align: center; padding: 25px 25px 80px; border-top: 2px solid #ededed; border-bottom: 2px solid #ededed; border-left: 2px solid #ededed; min-height: 490px; z-index: 1; }
.price-table-2 h4 { margin-bottom: 0;font-family:"Noto Sans Korean", sans-serif; }
.price-table-2 .price { font-size: 48px; line-height: 1.2; display: inline-block; margin-bottom: 20px; font-weight: 300;font-family:"Noto Sans Korean", sans-serif; }
.price-table-2 ul { margin-bottom: 45px; }
.price-table-2 ul > li { margin-bottom: 10px; }
.price-table-2 .bottom { position: absolute; left: 0; width: 100%; bottom: 0; padding-bottom: 25px; }
.price-table-2.featured { color: #fff; background-color: #0f4fb9; margin: -5px; z-index: 2; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; min-height: 500px; border: none; }

.row > *:last-child > .price-table-2 { border-right: 2px solid #ededed; }

/* Process Steps
---------------------------------------------------------
.process-steps { position: relative; display: -webkit-flex; display: flex; -webkit-flex-direction: row; flex-direction: row; list-style: none; padding: 0; margin: 0 0 40px 0; text-align: center; 
}
  
.process-steps:before { position: absolute; top: 0; left: 0; width: 100%; height: 7px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; background: #ededed; content: ' '; }
.process-steps > li { position: relative; padding-top: 34px; -webkit-flex-grow: 1; flex-grow: 1; font-weight: 500; }
.process-steps > li:before, .process-steps > li:after { position: absolute; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; -moz-transform: translate3d(-50%, 0, 0); -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); content: ' '; }
.process-steps > li:before { top: -9px; left: 50%; width: 26px; height: 26px; background: #ededed; }
.process-steps > li:after { top: -4px; left: 50%; width: 16px; height: 16px; background: #0f4fb9; visibility: hidden; font-size: 12px; padding-top: 3px; color: #fff; }
.process-steps > li.active:after { visibility: visible; }
.process-steps > li.done:after { top: -6px; width: 20px; height: 20px; font-family: themify; content: "\e64c"; visibility: visible; }

.dark .process-steps:before, .dark .process-steps > li:before { background: #fff; }

/* Progress Bars
--------------------------------------------------------
.progress { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; height: 32px; background-color: #ededed; margin-bottom: 10px; }
.progress .progress-bar { line-height: 32px; background-color: #0f4fb9; text-align: right; padding: 0 10px;font-family:"Noto Sans Korean", sans-serif; text-transform: uppercase; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
.progress.progress-2 { -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; }
.progress.progress-2 .progress-bar { -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; padding: 0 15px; }



/* Side Panel
----------------------------------------------------------*/

/* Typography 
--------------------------------------------------------
/* Fonts */
.font-secondary {font-family:"Noto Sans Korean", sans-serif; }

/* Headings 
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { margin-top: 0; display: block; font-family:"Noto Sans Korean", sans-serif;}
h1.font-secondary, .h1.font-secondary, h2.font-secondary, .h2.font-secondary, h3.font-secondary, .h3.font-secondary, h4.font-secondary, .h4.font-secondary, h5.font-secondary, .h5.font-secondary, h6.font-secondary, .h6.font-secondary { font-weight: 400; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4 { font-weight: 400; }

h1, .h1 { font-size: 48px; margin-bottom: 22px; }
@media only screen and (max-width: 767px) { h1, .h1 { font-size: 38px; } }
h1.text-lg, .h1.text-lg { font-size: 58px; }
@media only screen and (max-width: 991px) { h1.text-lg, .h1.text-lg { font-size: 48px; } }
@media only screen and (max-width: 767px) { h1.text-lg, .h1.text-lg { font-size: 44px; } }
h1.text-xl, .h1.text-xl { font-size: 96px; }
@media only screen and (max-width: 991px) { h1.text-xl, .h1.text-xl { font-size: 72px; } }
@media only screen and (max-width: 767px) { h1.text-xl, .h1.text-xl { font-size: 48px; } }

h2, .h2 { font-size: 36px; margin-bottom: 28px; }
@media only screen and (max-width: 767px) { h2, .h2 { font-size: 34px; } }

h3, .h3 { font-size: 30px; margin-bottom: 24px; }

h4, .h4 { font-size: 24px; margin-bottom: 18px; }

h5, .h5 { font-size: 18px;font-family:"Noto Sans Korean", sans-serif; margin-bottom: 14px; }

h6, h6 { font-size: 13px;font-family:"Noto Sans Korean", sans-serif; margin-bottom: 12px; }

@media only screen and (max-width: 991px) { h1 { font-size: 38px; }
  h1.text-lg { font-size: 48px; }
  h1.text-xl { font-size: 72px; }
  h2 { font-size: 34px; } }
@media only screen and (max-width: 991px) { h1.text-xl { font-size: 60px; } }
/* Paragraph */

/* Description */
dl.description-2 {font-family:"Noto Sans Korean", sans-serif; }
dl.description-2 dt { font-size: 12px; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); opacity: 0.5; font-weight: 400; text-transform: uppercase; }
dl.description-2 dd { font-size: 16px; margin-bottom: 20px; }

/* Links */
.link-underline { position: relative; }
.link-underline:after { position: absolute; bottom: -2%; left: 0; width: 100%; height: 2px; content: ' '; background-color: #1f1f1f; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }
.link-underline:hover:after, .link-underline:focus:after { -moz-transform: scaleX(1.1); -ms-transform: scaleX(1.1); -webkit-transform: scaleX(1.1); transform: scaleX(1.1); }

.dark .link-underline:after { background-color: #fff; }

.link-underline.text-primary:after { background-color: #0f4fb9; }

/* Helper Classes */
.text-spacing { letter-spacing: 0.2em; }

.text-bg { display: inline-block; padding: 0.2em 0.3em 0.25em; }
.text-bg.rounded { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }

/* Lists */
.list-lined { list-style: none; padding: 0; margin: 0; }
.list-lined > li { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px dashed rgba(0, 0, 0, 0.15); }
.list-lined > li:last-child { border-bottom: none; }

.dark .list-lined > li { border-color: rgba(255, 255, 255, 0.15); }

/* Testimonials
-------------------------------------------------------
.testimonial { margin-bottom: 30px; }
.testimonial.testimonial-1 { margin-bottom: 40px; }
.testimonial.testimonial-1 .quote { font-size: 30px; line-height: 1.2; margin-bottom: 25px; font-weight: 400; }
.testimonial.testimonial-1 .author { border-top: 1px solid rgba(0, 0, 0, 0.15); padding-top: 25px; }
.testimonial.testimonial-1 .author .name {font-family:"Noto Sans Korean", sans-serif; font-size: 14px; display: block; font-weight: bold; }
.testimonial.testimonial-1 .author.with-image { position: relative; margin-top: 30px; padding-left: 74px; }
.testimonial.testimonial-1 .author.with-image img { position: absolute; top: 18px; left: 0; width: 58px; height: 58px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; }
.testimonial.testimonial-2 .quote { position: relative; font-size: 20px; font-weight: 300; padding: 25px; line-height: 1.2; background-color: #f6f6f6; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
.testimonial.testimonial-2 .quote:after { position: absolute; top: 100%; right: 20px; width: 0; height: 0; border-style: solid; border-width: 0 38px 38px 0; border-color: transparent #f6f6f6 transparent transparent; -moz-transform: scaleX(0.4); -ms-transform: scaleX(0.4); -webkit-transform: scaleX(0.4); transform: scaleX(0.4); content: ' '; }
.testimonial.testimonial-2 .author { margin-top: 20px; line-height: 1.2; text-align: left; }
.testimonial.testimonial-2 .author .name { font-weight: 500; font-size: 14px; }
.testimonial.testimonial-2 .author.with-image { position: relative; margin-top: 30px; padding-left: 74px; }
.testimonial.testimonial-2 .author.with-image img { position: absolute; top: -12px; left: 0; width: 58px; height: 58px; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; }
.testimonial.testimonial-2.testimonial-primary .quote { color: #fff; background-color: #0f4fb9; }
.testimonial.testimonial-2.testimonial-primary .quote:after { border-color: transparent #0f4fb9 transparent transparent; }

.dark .testimonial-1 .author { border-color: rgba(255, 255, 255, 0.15); }
.dark .testimonial-2 .quote { background-color: rgba(0, 0, 0, 0.5); }
.dark .testimonial-2 .quote:after { position: absolute; top: 100%; right: 20px; width: 0; height: 0; border-style: solid; border-width: 0 38px 38px 0; border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent; -moz-transform: scaleX(0.4); -ms-transform: scaleX(0.4); -webkit-transform: scaleX(0.4); transform: scaleX(0.4); content: ' '; }

/* ---------------------------------------------------------------------------- */
/* --- 3. WIDGETS
/* ----------------------------------------------------------------------------- */
.widget { margin-bottom: 50px; font-size: 12px; }
.widget h6 { font-size: 12px; margin-bottom: 25px; }
.widget .owl-pagination .owl-page span { width: 7px; height: 7px; }

@media only screen and (max-width: 991px) { .sidebar .widget, footer .widget { width: 46%; margin-right: 8%; float: left; display: inline-block; }
  .sidebar .widget:nth-child(2n), footer .widget:nth-child(2n) { margin-right: 0; }
  html[dir="rtl"] .sidebar .widget, html[dir="rtl"] footer .widget { margin-left: 8%; margin-right: 0; float: right; }
  html[dir="rtl"] .sidebar .widget:nth-child(2n), html[dir="rtl"] footer .widget:nth-child(2n) { margin-left: 0; } }
@media only screen and (max-width: 767px) { .sidebar .widget, footer .widget { width: 100%; margin-right: 0; float: none; display: block; }
  html[dir="rtl"] .sidebar .widget, html[dir="rtl"] footer .widget { margin-left: 0; } }
/* Logo
----------------------------------------------------------*/
.widget-logo .logo { margin: 60px auto; max-width: 35%; }

/* Products
----------------------------------------------------------*/
.list-products { list-style: none; margin: 0; padding: 0; }
.list-products > li { position: relative; border-bottom: 1px solid rgba(0, 0, 0, 0.15); padding-bottom: 25px; margin-top: 25px; }
.list-products > li:first-child { margin-top: 0; }
.list-products > li .image { position: absolute; top: -15px; left: 0; max-width: 76px; max-height: 90px; float: left; }
.list-products > li .content { padding-left: 90px;font-family:"Noto Sans Korean", sans-serif; font-size: 13px; line-height: 1.2; }
.list-products > li .content > .price { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); opacity: 0.6; display: block; margin-bottom: 10px; }

/* Recent Posts
----------------------------------------------------------*/
.list-posts { list-style: none; margin: 0; padding: 0; }
.list-posts > li { margin-bottom: 15px; }
.list-posts > li > a {font-family:"Noto Sans Korean", sans-serif; font-size: 13px; display: block; }
.list-posts > li > a:after { position: relative; font-family: 'themify'; width: 15px; height: 15px; background: rgba(0, 0, 0, 0.2); color: #fff; content: "\e628"; margin-left: 5px; padding: 2px; text-align: center; vertical-align: middle; font-size: 8px; display: inline-block; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; }
.list-posts > li > .date { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); opacity: 0.7; font-size: 12px; }

html[dir="rtl"] .list-posts > li > a:after { margin-left: 0; margin-right: 5px; content: "\e629"; }
.dark .list-posts > li > a:after { background: rgba(255, 255, 255, 0.2); }
.dark .list-posts > li > a:after { background: rgba(255, 255, 255, 0.15); }


/* Sidebar Widgets
----------------------------------------------------------*/
#content .widget h6 { margin-bottom: 18px; }
#content .widget.widget:not(.widget-search):not(.widget-newsletter) h6 { border-bottom: 2px solid rgba(0, 0, 0, 0.15); padding-bottom: 8px; }
#content .widget.widget-newsletter { padding: 20px; background: #f6f6f6; }
#content .widget.widget-newsletter input { background: #fff; }
#content.bg-grey .widget.widget-newsletter { background: #fff; }
#content.bg-grey .widget.widget-newsletter input { background: #ededed; }
#content.bg-grey .widget.widget-search input { background: #fff; border-color: #fff; }

/* ----------------------------------------------------------------------------- */
/* --- 8. ANIMATIONS
/* ----------------------------------------------------------------------------- */
.animated { -moz-animation-delay: 0.1s; -webkit-animation-delay: 0.1s; animation-delay: 0.1s; }

/* Zooming */
.zooming { -moz-animation: zooming 18s infinite both; -webkit-animation: zooming 18s infinite both; animation: zooming 18s infinite both; }

@-moz-keyframes zooming { 0% { -moz-transform: scale(1, 1); transform: scale(1, 1); }
  50% { -moz-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); }
  100% { -moz-transform: scale(1, 1); transform: scale(1, 1); } }
@-webkit-keyframes zooming { 0% { -webkit-transform: scale(1, 1); transform: scale(1, 1); }
  50% { -webkit-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); }
  100% { -webkit-transform: scale(1, 1); transform: scale(1, 1); } }
@keyframes zooming { 0% { -moz-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform: scale(1, 1); transform: scale(1, 1); }
  50% { -moz-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); -webkit-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); }
  100% { -moz-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform: scale(1, 1); transform: scale(1, 1); } }
/* Blinking */
.blinking { -moz-animation: blinking 2s infinite both; -webkit-animation: blinking 2s infinite both; animation: blinking 2s infinite both; }

@-moz-keyframes blinking { 0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; } }
@-webkit-keyframes blinking { 0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; } }
@keyframes blinking { 0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; } }


/*-------- 슬라이드 버튼 컬러만 조정-------*/
 .owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}
 .owl-theme .owl-nav [class*=owl-]:hover{background:#6a78ba;color:#FFF;text-decoration:none}
 
 .owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}
 .owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}
  .owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#6a78ba}
