* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: #777;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

#header.static-header {
  position: sticky;
  top: -35px;
  z-index: 50;
}

#header.static-header.is-sticky .header-body {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.12);
}

#header.static-header .header-body {
  position: static;
  transition: box-shadow 180ms ease;
}

#header.static-header .header-top-custom .header-nav-top .nav > li > a,
#header.static-header .header-top-custom .header-nav-top .nav > li > span {
  line-height: 24px;
  padding-top: 6px;
  padding-bottom: 6px;
  transform: translateY(1px);
}

.flag {
  width: 16px;
  height: 11px;
  background-image: url("content/img/flags.png");
  background-repeat: no-repeat;
  object-fit: none;
  background-position: -144px -77px;
}

.flag.flag-us {
  background-position: -160px -154px;
}

.flag.flag-kr {
  background-position: -144px -77px;
}

.static-language-item {
  position: relative;
}

#header.static-header .static-language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.static-language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 90;
  display: none;
  min-width: 145px;
  padding: 8px 0;
  margin: 4px 0 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.16);
}

.static-language-item.is-open .static-language-menu {
  display: block;
}

.static-language-menu a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  color: #777;
  line-height: 20px;
  white-space: nowrap;
}

.static-language-menu a:hover,
.static-language-menu a:focus {
  color: #008fe2;
  background: #f5f5f5;
  text-decoration: none;
}

.static-slider-container {
  position: relative;
  overflow: hidden;
  background: #061641;
}

.static-slider,
.static-slider ul,
.static-slider li {
  position: relative;
  width: 100%;
  height: 650px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.static-slider li {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 5200ms linear;
}

.static-slider li::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.38);
}

.static-slider li.is-active {
  opacity: 1;
  transform: scale(1);
}

.static-slider .rev-slidebg {
  position: relative;
  z-index: 1;
  display: block;
  visibility: visible !important;
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center center;
}

.static-slider-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: none;
  background: transparent;
}

.static-title,
.static-subtitle {
  position: absolute !important;
  z-index: 3;
  left: max(24px, calc((100vw - 1170px) / 2 + 25px));
  top: 50%;
  color: rgb(255, 255, 255) !important;
  -webkit-text-fill-color: rgb(255, 255, 255) !important;
  -webkit-text-stroke: 0.2px rgb(255, 255, 255);
  background: transparent !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: visible !important;
  width: auto !important;
  height: auto !important;
}

.static-title {
  --caption-y: -61px;
  --caption-enter-y: -185px;
  --caption-exit-y: 72px;
  transform: translateY(var(--caption-y));
  font-size: clamp(20px, calc(4.1vw + 4px), 52px) !important;
  font-weight: 800 !important;
  line-height: 1.19 !important;
  letter-spacing: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.24) !important;
}

.static-subtitle {
  left: max(34px, calc((100vw - 1170px) / 2 + 35px));
  --caption-y: 5px;
  --caption-enter-y: 76px;
  --caption-exit-y: 94px;
  transform: translateY(var(--caption-y));
  font-size: clamp(9px, calc(1.6vw + 2.2px), 21px) !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.24) !important;
}

.static-slider li.is-active .static-title {
  animation: staticCaptionIn 500ms cubic-bezier(0.22, 1, 0.36, 1) 500ms both !important;
}

.static-slider li.is-active .static-subtitle {
  animation: staticCaptionIn 500ms cubic-bezier(0.22, 1, 0.36, 1) 1500ms both !important;
}

.static-slider li.is-leaving .static-title {
  animation: staticTitleOut 500ms ease-in both !important;
}

.static-slider li.is-leaving .static-subtitle {
  animation: staticSubtitleOut 500ms ease-in both !important;
}

@keyframes staticCaptionIn {
  from {
    opacity: 0;
    transform: translateY(var(--caption-enter-y));
  }
  to {
    opacity: 1;
    transform: translateY(var(--caption-y));
  }
}

@keyframes staticTitleOut {
  from {
    opacity: 1;
    transform: translateY(var(--caption-y));
  }
  to {
    opacity: 0;
    transform: translateY(var(--caption-enter-y));
  }
}

@keyframes staticSubtitleOut {
  from {
    opacity: 1;
    transform: translateY(var(--caption-y));
  }
  to {
    opacity: 0;
    transform: translateY(var(--caption-y));
  }
}

.static-bullets {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: auto !important;
  right: 24px;
  display: grid;
  gap: 8px;
  width: 19px;
  height: auto;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
}

.static-slider-container:hover .static-bullets,
.static-slider-container:focus-within .static-bullets {
  opacity: 1;
}

.static-bullets .tp-bullet {
  position: relative;
  left: auto !important;
  top: auto !important;
  display: block;
  width: 19px;
  height: 19px;
  padding: 7px;
  border: 2px solid #fff;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0.7;
  cursor: pointer;
  box-sizing: border-box;
}

.static-bullets .tp-bullet:hover,
.static-bullets .tp-bullet.selected {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1 !important;
}

.static-bullets .tp-bullet.selected::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.static-page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.static-recruit-header {
  background-image: url("content/img/recruit/recruit-header.jpg");
}

.static-company-header {
  background-image: url("content/img/company/company-header.jpg");
}

.static-business-fleet-header {
  background-image: url("content/img/business/business-header1.jpg");
  background-position: bottom center;
}

.static-business-service-header {
  background-image: url("content/img/business/business-header2.jpg");
}

.recruit-item .black {
  color: #1d2127;
}

.static-owl-carousel {
  position: relative;
  height: 181px;
  overflow: hidden;
}

.static-owl-carousel > div:not(.static-owl-dots) {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 650ms ease;
  pointer-events: none;
}

.static-owl-carousel > div:not(.static-owl-dots):first-child,
.static-owl-carousel.is-ready > div:not(.static-owl-dots).is-active {
  opacity: 1;
  pointer-events: auto;
}

.static-owl-carousel.is-ready > div:not(.static-owl-dots):first-child:not(.is-active) {
  opacity: 0;
}

.static-owl-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.static-owl-dots {
  position: absolute;
  right: 12px;
  bottom: 11px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
}

.static-owl-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
  cursor: pointer;
}

.static-owl-dot.is-active {
  background: #fff;
}

.static-owl-dot:focus {
  outline: 1px solid #fff;
  outline-offset: 2px;
}

.medical-schedules .schedule-card-link {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: block;
  color: inherit;
  text-decoration: none;
}

.medical-schedules .schedule-card-link:hover,
.medical-schedules .schedule-card-link:focus {
  color: inherit;
  text-decoration: none;
}

.medical-schedules .box-two,
.medical-schedules .box-three {
  padding: 0;
}

.medical-schedules .box-two .schedule-card-link,
.medical-schedules .box-three .schedule-card-link {
  display: flex;
  align-items: center;
  padding: 38px 38px 38px 70px;
}

.medical-schedules .schedule-card-link h5 {
  margin: 0;
}

.medical-schedules .box-four .schedule-card-link {
  display: flex;
  align-items: center;
}

.medical-schedules .box-four .feature-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 94px;
  padding: 22px 24px;
  box-sizing: border-box;
}

.medical-schedules .box-four .feature-box-icon {
  flex: 0 0 50px;
  margin-top: 0;
}

.medical-schedules .box-four .feature-box-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1px;
  margin-left: 10px !important;
  padding-left: 0 !important;
}

.medical-schedules .box-four label {
  margin: 0;
  line-height: 1.15;
}

.medical-schedules .box-four strong {
  display: block;
  margin-top: 3px;
  line-height: 1.15;
}

.static-counter strong {
  display: block;
}

.organization-chart-static img {
  margin: 0 auto;
}

.static-map {
  position: relative;
  height: 400px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px) 0 0 / 72px 72px,
    #e9e9e9;
}

.static-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(25deg, transparent 46%, #fff 46%, #fff 53%, transparent 53%),
    linear-gradient(-18deg, transparent 58%, #f7f7f7 58%, #f7f7f7 64%, transparent 64%);
}

.static-map-marker {
  position: absolute;
  z-index: 1;
  width: 26px;
  height: 46px;
  padding: 0;
  border: 0;
  transform: translate(-50%, -100%);
  background: url("content/img/pin.png") center center / contain no-repeat;
  cursor: pointer;
}

.static-map-marker:focus {
  outline: 2px solid #333;
  outline-offset: 2px;
}

div.static-google-map,
gmp-map.static-google-map {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  background: #e5e3df;
}

.static-google-map::before,
gmp-map.static-google-map::before {
  display: none;
}

.static-map-open {
  margin: -18px 0 30px;
  text-align: right;
}

.static-map-info {
  min-width: 310px;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
}

.static-map-info strong {
  display: block;
  color: #555;
  font-size: 14px;
  font-weight: 700;
}

.ethic-header {
  font-weight: bold;
}

.ethic-center {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}


.fleet-admin-entry {
  color: inherit;
  text-decoration: none;
}

.fleet-admin-entry:hover,
.fleet-admin-entry:focus {
  color: #008fe2;
  text-decoration: none;
}.fleet-flag-code {
  display: inline-block;
  min-width: 24px;
  min-height: 24px;
  color: #777;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  vertical-align: middle;
}

.fleet-flag-sprite {
  margin-right: 4px;
  vertical-align: middle;
}

section.section-custom-map1.static-section-map {
  background: transparent url("content/img/business/map21.png") center 0 no-repeat;
  padding: 550px 0 0;
}

section.section-custom-map2.static-section-map {
  background: transparent url("content/img/business/map22.png") center 0 no-repeat;
  padding: 550px 0 0;
}

@media (max-width: 900px) {
  #header.static-header {
    top: 0;
  }

  .static-slider-container,
  .static-slider,
  .static-slider ul,
  .static-slider li,
  .static-slider .rev-slidebg {
    height: 360px !important;
  }

  .static-title,
  .static-subtitle {
    left: 24px;
    max-width: calc(100vw - 58px);
    white-space: normal;
  }

  .static-subtitle {
    left: 34px;
  }

  .static-title {
    font-size: clamp(20px, calc(4.1vw + 4px), 52px) !important;
    line-height: 1.16 !important;
  }

  .static-subtitle {
    font-size: clamp(9px, calc(1.6vw + 2.2px), 21px) !important;
  }
}

@media (max-width: 560px) {
  #header.static-header .header-top {
    display: block;
  }

  .static-slider-container,
  .static-slider,
  .static-slider ul,
  .static-slider li,
  .static-slider .rev-slidebg {
    height: 261px !important;
  }

  .static-title,
  .static-subtitle {
    left: 12px;
    max-width: calc(100vw - 28px);
    visibility: visible !important;
    white-space: normal;
  }

  .static-title {
    font-size: clamp(20px, calc(4.1vw + 4px), 52px) !important;
    line-height: 1.08 !important;
    --caption-y: -18px;
    --caption-enter-y: -92px;
    --caption-exit-y: 42px;
    transform: translateY(var(--caption-y)) !important;
  }

  .static-subtitle {
    left: 14px;
    font-size: clamp(9px, calc(1.6vw + 2.2px), 21px) !important;
    line-height: 1.2 !important;
    --caption-y: 8px;
    --caption-enter-y: 52px;
    --caption-exit-y: 58px;
    transform: translateY(var(--caption-y)) !important;
  }


  .static-bullets {
    right: 14px;
    transform: translateY(-50%);
  }

  .static-slider-container:hover .static-bullets,
  .static-slider-container:focus-within .static-bullets {
    opacity: 1;
  }

  .recruit-item .col-xs-3,
  .recruit-item .col-sm-9 {
    width: 100%;
  }

  .recruit-item .col-sm-9 {
    margin-top: 12px;
  }
}
