/*
 * Copyright inpleworks, Co.
 * main.css
*/

/* ------------------------------------------------------------------------------------------------------------------ */
/* MAIN - SECTIONS
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-section {
  position: relative;
  word-break: keep-all;
  background-color: #fff;
}
.xet-section.bg-f1 {
  background-color: #f1f1f1;
}
.xet-section.bg-f9 {
  background-color: #f9f9f9;
}
.xet-section.bg-e7 {
  background-color: #e7eff1;
}
.xet-section.bg-26 {
  background-color: #262829;
}

.xet-section img {
  vertical-align: top;
  max-width: 100%;
}
.xet-parallax-scroll {
  background-color: #000;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  /* custom background-position */
  background-position: 50% 50%;
  /* ie8- graceful degradation */
  background-position: 50% 50%\9 !important;
}

.xet-bg-cover {
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;xet-[오후 4:47] Kim Kyung Bong

  -o-background-size: cover;
  background-size: cover;
}
.xet-bg-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-position: 50% 50%\9 !important;
  background-color: #111;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media \0screen {
  .xet-bg-fixed {
    background-attachment: scroll;
    background-position: 50% 0;
  }
}

/* Under Dash */
.xet-dash {
  position: relative;
}
.xet-dash:before,
.xet-dash:after {
  content: "";
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
.xet-dash:before {
  height: 1px;
  width: 280px;
  bottom: -14px;
  background: rgba(0, 0, 0, 0.2);
}
.xet-dash:after {
  height: 9px;
  width: 50px;
  bottom: -18px;
  background: #58c4a7;
}

/* Section - Slider
-------------------------------------- */
.xet-slider {
  background: #000;
}
.xet-slider .xet-slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  text-align: center;
  overflow: hidden;
}
.xet-slider .xet-slider-container .swiper-slide {
  color: #fff;
}
.xet-slider .xet-slider-container .vertical-align {
  background-color: rgba(0, 0, 0, 0);
}
.xet-slider .xet-slider-next,
.xet-slider .xet-slider-prev {
  position: absolute;
  bottom: 0%;
  z-index: 10;
  cursor: pointer;
  height: 100px;
  margin-top: -50px;
  width: 50px;
  background-size: 40px;
  opacity: 0;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}
.xet-slider .xet-slider-next {
  right: 5%;
  background-image: url("../img/next1.png");
}
.xet-slider .xet-slider-prev {
  left: 5%;
  background-image: url("../img/prev1.png");
}
.xet-slider:hover .xet-slider-next,
.xet-slider:hover .xet-slider-prev {
  opacity: 1;
}
.xet-slider-next.swiper-button-disabled,
.xet-slider-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.xet-slider-pagination {
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  color: #ccc;
}

/* OIE */
.xet-slider-pagination .swiper-pagination-switch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #fff;
  margin: 0 3px;
  cursor: pointer;
}
.xet-slider-pagination .swiper-active-switch {
  background-color: #58c4a7;
}
/* */

.xet-slider-pagination .swiper-pagination-current {
  font-size: 200%;
  color: #fff;
}
.xet-slider-pagination .swiper-pagination-bullet {
  opacity: 0.4;
  background-color: #fff;
}
.xet-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #58c4a7;
}
.xet-slider .swiper-pagination-progress {
  z-index: 10;
}
.xet-slider .swiper-pagination-progress .swiper-pagination-progressbar {
  background: #58c4a7;
}

/* Section - Info
-------------------------------------- */
.xet-info {
  background: #03b6e7;
  color: #fff;
  background: -moz-linear-gradient(
    left,
    #54a0d2 0%,
    #5154b1 12%,
    #511e7d 28.28%,
    #671955 43.95%,
    #cc2119 64.92%,
    #f57713 84.2%,
    #5cf1f5 100%
  );
  background: -webkit-linear-gradient(
    left,
    #54a0d2 0%,
    #5154b1 12%,
    #511e7d 28.28%,
    #671955 43.95%,
    #cc2119 64.92%,
    #f57713 84.2%,
    #5cf1f5 100%
  );
  background: linear-gradient(
    to right,
    #54a0d2 0%,
    #5154b1 12%,
    #511e7d 28.28%,
    #671955 43.95%,
    #cc2119 64.92%,
    #f57713 84.2%,
    #5cf1f5 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#54a0d2', endColorstr='#5cf1f5', GradientType=1 );
}
.xet-info .xet-btn-invert {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

/* Section - Feature
-------------------------------------- */
.xet-feature {
  background-color: white;
}
.xet-feature .item {
  display: flex;
}
.icon-box {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 25px 0;
  width: 100%;
  position: relative;
  text-align: center;
  overflow: hidden;
  color: #000;
}
.icon-box::before,
.icon-box::after {
  border: 1px solid rgba(0, 0, 0, 0.2);
  content: "";
  height: calc(100% - 70px);
  pointer-events: none;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: calc(100% - 70px);
}
.icon-box::before {
  display: none;
  border-width: 1px 0 0 1px;
  left: 0;
  top: 0;
}
.icon-box::after {
  display: none;
  border-width: 0 1px 1px 0;
  bottom: 0;
  right: 0;
}
.icon-box .icon-box__content {
  flex: 1 0 auto;
}
.icon-box img {
  vertical-align: top;
  border-radius: 50%;
}
.icon-box .divider {
  margin: 13px auto;
  max-width: 100%;
  transition: all 0.3s ease 0s;
}
.icon-box .box-top,
.icon-box .box-body {
  filter: blur(0px);
  position: relative;
  transition: all 0.3s ease 0s;
  will-change: transform;
}
.icon-box .box-top {
  top: 0;
}
.icon-box .box-body {
  max-width: 100%;
}
.icon-box .box-header {
  bottom: 0;
}
.icon-box .box-icon {
  align-items: center;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  min-height: 46px;
}
.icon-box * + .box-header {
  margin-top: 5px;
}

/* Section - Work
-------------------------------------- */
.xet-work {
  background-color: #f9f9f9;
}
.xet-work .xe-widget-wrapper {
  overflow: visible !important;
}

/* Section - Movie
-------------------------------------- */
.xet-movie {
  background-color: #000;
  color: #fff;
}
.xet-movie:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
}
.xet-movie .xet-youtube {
  height: 480px;
}
.xet-movie .xet-youtube > div {
  background-color: rgba(0, 0, 0, 0.3);
}
.xet-section.xet-movie a {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(100, 100, 100, 0.6);
}

/* Section - Skill
-------------------------------------- */
.xet-skill {
}
.xet-skillbar {
  position: relative;
  display: block;
  margin-bottom: 15px;
  width: 100%;
  background: #eee;
  height: 35px;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transition-property: width, background-color;
  -moz-transition-property: width, background-color;
  -ms-transition-property: width, background-color;
  -o-transition-property: width, background-color;
  transition-property: width, background-color;
}
.xet-skillbar-title {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  font-size: 13px;
  color: #ffffff;
  -webkit-border-top-left-radius: 30px;
  -webkit-border-bottom-left-radius: 30px;
  -moz-border-radius-topleft: 30px;
  -moz-border-radius-bottomleft: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.xet-skillbar-title span {
  display: block;
  padding: 0 20px;
  height: 35px;
  line-height: 35px;
  -webkit-border-top-left-radius: 30px;
  -webkit-border-bottom-left-radius: 30px;
  -moz-border-radius-topleft: 30px;
  -moz-border-radius-bottomleft: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.xet-skillbar-bar {
  height: 35px;
  width: 0px;
  background: #6adcfa;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
.xet-skillbar-percent {
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 11px;
  height: 35px;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.4);
}

/* Section - Team
-------------------------------------- */
.xet-team {
  background-color: #f1f1f1;
}
.xet-team-thumbnail {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: transparent;
  text-align: center;
}
.xet-team-thumbnail .xet-team-thumbnail-image {
  position: relative;
}
.xet-team-thumbnail .xet-team-thumbnail-image,
.xet-team-thumbnail .xet-team-thumbnail-image > img {
  border-radius: 50%;
}
.xet-team-thumbnail .xet-team-thumbnail-image > img {
  pointer-events: auto;
  width: auto;
}
.xet-team-thumbnail .xet-team-thumbnail-image-inner {
  position: absolute;
  right: 1px;
  left: 1px;
  top: 0;
  bottom: 0;
  text-align: center;
  padding: 10px;
  z-index: 2;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
}
.xet-team-thumbnail .xet-team-thumbnail-image-inner a {
  z-index: 3;
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;
  color: #fff;
}
.xet-team-thumbnail .xet-team-thumbnail-caption .h5 {
}
.xet-team-thumbnail .xet-team-thumbnail-caption p {
  margin-top: 10px;
}
.xet-team-thumbnail .xet-team-thumbnail-caption a {
  margin: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #111;
}

/* Section - Partner
-------------------------------------- */
.xet-partner {
  color: #e7eff1;
  text-shadow: 1px 1px 2px rgba(100, 100, 100, 0.6);
}
.xet-partner > div {
  height: inherit;
}
.xet-partner-pagination .swiper-pagination-bullet {
  background-color: #fff;
}
.xet-partner-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #58c4a7;
}

/* Section - Service
-------------------------------------- */
.xet-service {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(100, 100, 100, 0.2);
}

/* scroll btn */
.xet-service .service-swiper-nav {
  position: relative;
}
.xet-service .xet-service-next,
.xet-service .xet-service-prev {
  position: absolute;
  bottom: -10px;
  z-index: 10;
  cursor: pointer;
  height: 50px;
  width: 50px;
  background-size: 32px;
  background-position: center center;
  background-repeat: no-repeat;
}
.xet-service .xet-service-next {
  right: 50%;
  margin-right: -100px;
  background-image: url("../img/next.png");
}
.xet-service .xet-service-prev {
  left: 50%;
  margin-left: -100px;
  background-image: url("../img/prev.png");
}
.xet-service-next.swiper-button-disabled,
.xet-service-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.xet-service-pagination .swiper-pagination-current {
  font-size: 200%;
}
.xet-service-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #58c4a7;
}

/* Section - Blog
-------------------------------------- */
.xet-blog {
  background-color: #e7eff1;
}

/* Section - Location
-------------------------------------- */
.xet-location {
  background-color: #f1f1f1;
}
.xet-location .map {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
}
.xet-location .map > iframe {
  position: absolute;
  left: 0;
}

@media (min-width: 992px) {
  .icon-box.hover::before,
  .icon-box.hover::after,
  .icon-box:hover::before,
  .icon-box:hover::after {
    border-color: #58c4a7;
    height: 100%;
    width: 100%;
  }
  .icon-box.hover .box-top,
  .icon-box:hover .box-top {
    transform: translateY(-9px);
  }
  .icon-box.hover .box-body,
  .icon-box:hover .box-body {
    transform: translateY(9px);
  }
  .icon-box.hover .divider,
  .icon-box:hover .divider {
    width: 168px;
  }
  .icon-box.hover .box-top,
  .icon-box:hover {
    background-color: #fff;
    transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
  }
  .icon-box:hover .xet-btn {
    background-color: #58c4a7 !important;
    border-color: #58c4a7 !important;
    color: #fff !important;
  }
}
