/*
 * Roxy: Bootstrap template by GettTemplates.com
 * https://gettemplates.co/roxy
 */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Cantarell", sans-serif;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Cantarell", sans-serif;
  margin-top: 0;
}

a {
  color: #ff00cc;
  transition: all 0.3s ease-in-out;
}

a:focus,
button:focus {
  outline: none;
}

.btn:hover,
a:hover {
  text-decoration: none;
  color: #333399;
}

img {
  max-width: 100%;
}

.bg-fixed {
  background-size: cover;
}

.bg-grey {
  background-color: #f7f8f9;
}

.fs-40 {
  font-size: 40px;
}

section {
  position: relative;
}

.section-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-label {
  color: #ff00cc;
  transition: all 0.3s ease-in-out;
  font-family: "Work Sans", sans-serif;
}

.shadow {
  box-shadow: 0 10px 30px 0 rgba(67, 80, 98, 0.24),
    0 2px 4px 0 rgba(67, 80, 98, 0.1) !important;
}

.jumbotron {
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
  min-height: 100vh;
}
@media (max-width: 767px) and (orientation: landscape) {
  .jumbotron {
    min-height: 500px;
  }
}
.jumbotron .container {
  position: relative;
  z-index: 1;
}
.jumbotron:before {
  position: absolute;
  display: block;
  content: "";
  opacity: 0.8;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ff00cc;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #333399, #ff00cc);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #333399, #ff00cc);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.jumbotron h1 {
  line-height: 0.9;
  font-weight: bold;
  display: inline-block;
  border: 15px solid #fff;
  padding: 30px;
  font-size: 9rem;
  opacity: 0;
  animation: 1s fadeInFromTop cubic-bezier(0.785, 0.135, 0.15, 0.86) 1s forwards;
  animation-delay: 0.8s;
}

.jumbotron-single h1 {
  font-size: 3rem !important;
}

.overlay {
  color: #fff;
}
.overlay:before {
  position: absolute;
  display: block;
  content: "";
  opacity: 0.9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ff00cc;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #333399, #ff00cc);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #333399, #ff00cc);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.overlay.bg-white {
  color: #000;
}
.overlay.bg-white:before {
  background: #fff;
  opacity: 0.7;
}

.text-white {
  color: #fff;
}

/*==============================
=            BUTTON            =
==============================*/
.btn {
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  padding: 9px 25px;
  text-transform: capitalize;
  transition: all 0.3s ease 0s;
}

.btn-primary {
  display: inline-block;
  background-color: #ff00cc;
  border-color: #ff00cc;
  color: #fff;
}
.btn-primary:hover {
  background-color: #333399;
  border-color: #333399;
  color: #fff;
}

.btn-outline-primary {
  color: #ff00cc;
  background-color: transparent;
  background-image: none;
  border-color: #ff00cc;
}
.btn-outline-primary:hover {
  background-color: #333399;
  border-color: #333399;
  color: #fff;
}

.btn-shadow {
  box-shadow: -5px 8px 20px 0px rgba(229, 16, 2, 0.15);
}

.btn-icon {
  color: #000;
}

.btn-link {
  color: #ff00cc;
}

/*=====  End of BUTTON  ======*/
/*==========================================
=            FORM RECTANGLE ETC            =
==========================================*/
.rectangle-1 {
  width: 2000px;
  height: 400px;
  background: #8e2de2;
  background: -webkit-linear-gradient(to right, #4a00e0, #8e2de2);
  background: linear-gradient(to right, #4a00e0, #8e2de2);
  transform-origin: 50% 150% 0;
  position: absolute;
  left: 0;
  z-index: 0;
  transform: scale(1) rotate(-10deg);
}

.rectangle-2 {
  width: 2000px;
  height: 400px;
  background: #8e2de2;
  background: -webkit-linear-gradient(to right, #4a00e0, #8e2de2);
  background: linear-gradient(to right, #4a00e0, #8e2de2);
  transform-origin: 65% 100% 0;
  position: absolute;
  right: 0;
  z-index: 0;
  transform: scale(1) rotate(50deg);
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(-100vw) rotate(-15deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-15deg);
  }
}

@keyframes grow1 {
  from {
    opacity: 0;
    transform: scale(2) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(-10deg);
  }
}

@keyframes grow2 {
  from {
    opacity: 0;
    transform: scale(2) rotate(50deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(50deg);
  }
}

@keyframes fadeInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rectangle-1 {
  opacity: 0;
  animation: grow1 ease 1s forwards;
  box-shadow: 0px 20px 30px 0px rgba(9, 21, 54, 0.25) !important;
}

.rectangle-2 {
  opacity: 0;
  animation: grow2 ease 1s forwards;
  box-shadow: 0px 20px 30px 0px rgba(9, 21, 54, 0.25) !important;
}

.rectangle-transparent-1 {
  width: 500px;
  height: 500px;
  border: 15px solid rgba(255, 255, 255, 0.08);
  position: absolute;
  left: -5%;
  bottom: -10%;
  display: block;
  animation: floating-slow ease-in-out 12s infinite;
}

.rectangle-transparent-2 {
  width: 600px;
  height: 600px;
  border: 15px solid rgba(255, 255, 255, 0.08);
  position: absolute;
  right: -10%;
  top: 5%;
  display: block;
  animation: floating-slow ease-in-out 12s infinite;
}

.circle-1 {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  position: absolute;
  display: block;
  border-radius: 50%;
  transform-origin: 50% 50%;
  left: 5%;
  top: 50%;
  animation: fadeInFromTop 0.5s linear forwards, floating ease 4s infinite;
}

.circle-2 {
  width: 70px;
  height: 70px;
  top: 20%;
  left: 83%;
  border: 2px solid #fff;
  position: absolute;
  display: block;
  border-radius: 50%;
  transform-origin: 50% 50%;
  animation: fadeInFromTop 0.5s linear forwards,
    floating ease-in-out 4s infinite;
}

.circle-3 {
  top: 80%;
  right: 25%;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  position: absolute;
  display: block;
  border-radius: 50%;
  animation: fadeInFromTop 0.5s linear forwards,
    floating ease-in-out 4s infinite;
}

@keyframes floating {
  0% {
    transform: translate(0%, 0%) rotate(25deg);
  }
  25% {
    transform: translate(5%, 15%) rotate(25deg);
  }
  50% {
    transform: translate(10%, 5%) rotate(25deg);
  }
  75% {
    transform: translate(0%, 15%) rotate(25deg);
  }
  100% {
    transform: translate(0%, 0%) rotate(25deg);
  }
}

@keyframes floating-slow {
  0% {
    transform: translate(0%, 0%) rotate(25deg);
  }
  25% {
    transform: translate(1%, 3%) rotate(25deg);
  }
  50% {
    transform: translate(2%, 1%) rotate(25deg);
  }
  75% {
    transform: translate(0%, 3%) rotate(25deg);
  }
  100% {
    transform: translate(0%, 0%) rotate(25deg);
  }
}

.triangle {
  position: absolute;
}

.triangle-1 {
  right: 0;
  animation: fadeInFromTop 0.5s linear forwards,
    floating ease-in-out 6s infinite;
}
.triangle-1 img {
  height: 50px;
  width: 50px;
  transform: rotate(30deg);
}

.triangle-2 {
  top: 30%;
  left: 20%;
  animation: fadeInFromTop 0.5s linear forwards,
    floating ease-in-out 8s infinite;
}
.triangle-2 img {
  width: 75px;
  height: 75px;
  transform: rotate(15deg);
}

.triangle-3 {
  top: 80%;
  left: 15%;
  animation: fadeInFromTop 0.5s linear forwards,
    floating ease-in-out 10s infinite;
}
.triangle-3 img {
  width: 45px;
  height: 45px;
  transform: rotate(40deg);
}

.triangle-4 {
  top: 60%;
  right: 15%;
  animation: fadeInFromTop 0.5s linear forwards,
    floating ease-in-out 5s infinite;
}
.triangle-4 img {
  width: 45px;
  height: 45px;
  transform: rotate(-40deg);
}

.title-wrap {
  display: flex;
  align-items: center; /* 세로 정렬 맞춤 */
  justify-content: center;
  gap: 10px; /* 글자 사이 간격 */
}

.title-wrap,
.section-title {
  text-align: center;
}

.section-title,
.section-label {
  margin: 0; /* 기본 여백 제거 */
  font-size: 2rem; /* 글자 크기 동일하게 */
  font-weight: 400; /* 글자 굵기 맞춤 */
  line-height: 1; /* 세로 정렬 안정화 */
}
/*=====  End of FORM RECTANGLE ETC  ======*/
/*==========================================
=                HEADER                    =
==========================================*/
.box-header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  height: 50px;
  width: 100%;
  z-index: 3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.box-header {
  height: 80px;
  background: transparent;
  box-shadow: none;
}

.box-header {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.box-header.is-fixed {
  position: fixed;
  top: -80px;
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.box-header.is-visible {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.box-header.menu-is-open {
  background-color: rgba(255, 255, 255, 0.96);
}

.box-logo {
  display: block;
  padding: 20px;
}

.box-primary-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #fff;
}

.box-primary-nav-trigger .box-menu-text {
  color: black;
  font-weight: 700;
  display: none;
}

.box-primary-nav-trigger .box-menu-icon {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: black;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  list-style: none;
}

.box-primary-nav-trigger .box-menu-icon::before,
.box-primary-nav-trigger .box-menu-icon:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: black;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s, top 0.3s, background-color 0s;
  -webkit-transition: top 0.3s, background-color 0s, -webkit-transform 0.3s;
  transition: top 0.3s, background-color 0s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.3s, background-color 0s;
  transition: transform 0.3s, top 0.3s, background-color 0s,
    -webkit-transform 0.3s;
}

.box-primary-nav-trigger .box-menu-icon::before {
  top: -5px;
}

.box-primary-nav-trigger .box-menu-icon::after {
  top: 5px;
}

.box-primary-nav-trigger .box-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}

.box-primary-nav-trigger .box-menu-icon.is-clicked::before,
.box-primary-nav-trigger .box-menu-icon.is-clicked::after {
  background-color: 393939;
}

.box-primary-nav-trigger .box-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.box-primary-nav-trigger .box-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.box-primary-nav-trigger {
  width: 100px;
  padding-left: 1em;
  background-color: transparent;
  height: 30px;
  line-height: 30px;
  right: 10px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.box-primary-nav-trigger .box-menu-text {
  display: inline-block;
}

.box-primary-nav-trigger .box-menu-icon {
  left: auto;
  right: 1em;
  -webkit-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
}

.box-primary-nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2;
  text-align: center;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  list-style: none;
}

.box-primary-nav li {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0.2em 0;
  text-transform: capitalize;
}

.box-primary-nav a {
  display: inline-block;
  padding: 0.4em 1em;
  border-radius: 0.25em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.box-primary-nav a:focus {
  outline: none;
}

.no-touch .box-primary-nav a:hover {
  text-decoration: none;
  color: #ddd;
}

.box-primary-nav .box-label {
  color: #ffbf00;
  font-weight: 700;
  font-size: 17px;
  margin: 2.4em 0 0.8em;
}

.box-primary-nav .box-social {
  display: inline-block;
  margin: 10px 0.4em;
}

.box-social ul {
  list-style: none;
}

.box-primary-nav .box-social a {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 30px;
}

.box-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.box-primary-nav {
  padding: 150px 0 0;
}

.box-primary-nav li {
  font-size: 18px;
}
/*===========  HEADER  ============*/
/*================================
=            BUSINESSES          =
================================*/
.business-item {
  transition: all 0.2s ease-in-out 0s !important;
}
.business-item:hover {
  transform: translateY(-13px);
}

.progress-bar {
  background-color: #ff00cc;
}

/*=====  End of BUSINESSES  ======*/
/*=============================
=            ABOUT            =
=============================*/
.about-text {
  font-weight: 300;
}

.about-icon {
  color: #ff00cc;
}

.about-content {
  position: relative;

  /* 가운데 정렬 */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
  padding-bottom: 1rem;

  gap: 2rem;
}

.heading-section {
  position: relative;
}

/*=====  End of ABOUT  ======*/
/*=================================
=            LABORATORY            =
=================================*/
.image-selector {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 10px 10px 10px;
}
.image-selector a {
  padding: 5px 10px;
  font-size: 16px;
  margin: 10px;
  font-family: poppins;
  color: #ff00cc;
  font-weight: 400;
  transition: all 0.4s ease;
  cursor: pointer;
}
.image-selector .active,
.image-selector a:hover {
  background: #8e2de2;
  color: #fff;
  transition: all 0.4s ease;
}

.gutter-sizer {
  width: 2%;
}

.grid-sizer,
.grid-item {
  width: 32%;
}

.grid-item {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.grid-item:hover .grid-info {
  top: 50%;
  opacity: 1;
}

.grid-item-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  opacity: 0;
}

.lightcase-icon-close:before {
  content: "\e870";
  font-family: "Linearicons-Free";
}
/*=====  End of LABORATORY  ======*/
/*==============================
=            CLIENT            =
==============================*/
.client-slider .owl-nav {
  display: none;
}

.client-slider .client-item {
  padding: 20px 40px;
}

.client-slider .client-item img {
  height: 50px;       /* 필요하면 크기 균일화 */
  object-fit: contain;
}

.client-slider {
  position: relative;
  overflow: visible; /* dots가 잘리지 않게 */
  padding-bottom: 50px; /* 점 들어갈 공간 확보 */
}

.owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.owl-dot span {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: rgba(255, 0, 204, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  -webkit-transition: box-shadow 0.3s ease, background-color 0.3s ease;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.owl-dot.active > span {
  background-color: transparent;
  box-shadow: 0 0 0 2px #ff00cc;
}

.owl-dots {
  position: absolute;
  bottom: 0;
  display: block;
  text-align: center;
  left: 0;
  right: 0;
  clear: both;
  padding: 0;
  list-style: none;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*=====  End of CLIENT  ======*/
/*==================================
=            RESPONSIVE            =
==================================*/
@media screen and (max-width: 1000px) {
  .not-on-top #header-navbar {
    position: fixed;
    top: 0;
    height: auto;
    width: 100%;
    background: #ff00cc;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #333399, #ff00cc);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #333399, #ff00cc);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    z-index: 11;
  }
  #header-navbar {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .navbar-transparent .navbar-collapse {
    background: #ff00cc;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #333399, #ff00cc);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #333399, #ff00cc);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 10px;
  }

  .title-wrap {
    display: flex;
    align-items: center; /* 세로 정렬 맞춤 */
    justify-content: center;
    gap: 10px; /* 글자 사이 간격 */
  }

  .title-wrap,
  .section-title {
    text-align: center;
  }

  .section-title,
  .section-label {
    margin: 0; /* 기본 여백 제거 */
    font-size: 2rem; /* 글자 크기 동일하게 */
    font-weight: 400; /* 글자 굵기 맞춤 */
    line-height: 1; /* 세로 정렬 안정화 */
  }
}

@media screen and (max-width: 767px) {
  .jumbotron h1 {
    font-size: 5rem;
  }
  .grid-item {
    width: 100%;
  }
  .progress {
    height: 30px;
    font-size: 16px;
  }

  .title-wrap {
    display: grid;
    align-items: center; /* 세로 정렬 맞춤 */
    justify-content: center;
    gap: 10px; /* 글자 사이 간격 */
  }

  .title-wrap,
  .section-title {
    text-align: center;
  }

  .section-title,
  .section-label {
    margin: 0; /* 기본 여백 제거 */
    font-size: 2rem; /* 글자 크기 동일하게 */
    font-weight: 400; /* 글자 굵기 맞춤 */
    line-height: 1; /* 세로 정렬 안정화 */
  }
}
/*=====  End of RESPONSIVE  ======*/
