@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* 메인 컨텐츠 영역을 감싸는 wrapper */
.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}


.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
}

.heading_container h2 span {
  color: #00bbf0;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box .bg_img_box {
  min-width: 100%;
  min-height: auto;
}

.hero_area .hero_bg_box img {
  min-width: 100%;
  min-height: auto;
  object-fit: cover;
}

.sub_page .hero_area {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 🔹 전체 높이를 화면 크기로 설정 */
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #00bbf0;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #00bbf0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 45px 0 145px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #00204a;
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #00204a;
}

.slider_section .detail-box p {
  color: #00204a;
  font-size: 14px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: #007fa4;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: black;
}

.slider_section .img-box {
  margin: 45px 0;
}

.slider_section .img-box img {
  width: 100%;
  -webkit-animation: upDown 5s infinite;
          animation: upDown 5s infinite;
}

.terms-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;  /* 왼쪽 정렬 */
  flex-wrap: wrap;          /* 모바일 대응 */
  padding: 10px 0;
  list-style: none;         /* 점 제거 */
  margin: 0;
}

/* 버튼 디자인 */
.footer-btn {
  padding: 8px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.footer-btn:hover {
  background-color: #555;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

.slider_section .img-box1 {
  margin: 100;
}

.slider_section .img-box1 img {
  width: 100%;  /* width에 '%' 단위 추가 */
  -webkit-animation: fadeIn 5s ease-in-out forwards;  /* 웹킷 프리픽스 */
  animation: fadeIn 5s ease-in-out forwards;  /* 표준 애니메이션 */
}

/* 페이드인 애니메이션 */
@-webkit-keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #00bbf0;
}

.service_section {
  margin-top: 50px; /* 탭 메뉴의 높이만큼 여백 */
  position: relative; /* 상대 위치 지정 */
  background-color: #ffffff; /* 배경색을 흰색으로 지정 */
  min-height: calc(100vh - 50px); /* 전체 화면 높이에서 탭 메뉴 높이를 뺀 값만큼 최소 높이 설정 */
  display: flex; /* 자식 요소들을 수직으로 정렬하기 위해 flex 사용 */
  flex-direction: column; /* 자식 요소들을 수직으로 배치 */
  justify-content: space-between; /* 풋터를 맨 아래로 내리기 위해 공간을 분배 */
}

.service_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 45px;
  background-color: #f8f8f9;
  padding: 20px;
  border-radius: 5px;
}

.service_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 125px;
  min-width: 75px;
  height: 75px;
  margin-bottom: 15px;
}

.service_section .box .img-box img {
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.service_section .box .detail-box a {
  color: #00204a;
  font-weight: 600;
}

.service_section .box .detail-box a:hover {
  color: #00bbf0;
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.service_section .btn-box a:hover {
  background-color: #007fa4;
}

.about_section {
  background-color: #00204a;
  color: #ffffff;
}

.about_section .heading_container {
  margin-bottom: 45px;
}

.about_section .row {
  -webkit-box-align: center; /* 구형 webkit 브라우저용 */
      -ms-flex-align: center; /* 구형 IE 10용 */
          align-items: center; /* 최신 브라우저용 */
}

.about_section .img-box img {
  max-width: 100%;
}

.about_section .detail-box h3 {
  font-weight: bold;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #007fa4;
}

.about_section1 {
  background-color: #00204a;
  color: #ffffff;
}

.about_section1 .heading_container {
  margin-bottom: 45px;
}

.about_section1 .row {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-align: center; /* 구형 webkit 브라우저용 */
     -ms-flex-align: center; /* 구형 IE 10용 */
        align-items: center; /* 최신 브라우저용 */
}

.about_section1 .img-box img {
  max-width: 100%;
}

.about_section1 .detail-box p {
  margin-top: 15px;
}

.about_section1 .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00204a;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}


.about_section1 .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}



.about_section1 .detail-box a:hover {
  background-color: #007fa4;
}

.about_section2 .detail-box a:hover {
  background-color: #007fa4;
}


.about_section2 {
  background-color: #ffffff;
  color: #00204a;
  min-height: 5vh; /* 화면 높이의 5% */
}

.about_section2 .row {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-align: center; /* 구형 webkit 브라우저용 */
     -ms-flex-align: center; /* 구형 IE 10용 */
        align-items: center; /* 최신 브라우저용 */
}

/* about_setction3 시작 */

.about_section3 {
  background-color: #ffffff;
  color: #000000;
  padding-bottom: 0; /* 하단 padding 제거 */
}

.about_section3 .heading_container {
  margin-bottom: 45px;
}

.about_section3 .row {
  display: flex; /* Flexbox 활성화 */
  justify-content: space-between; /* 가로 정렬: 양쪽 끝 */
  align-items: center; /* 세로 정렬: 위쪽 정렬 */
}


.about_section3 .img-box1 img {
  max-width: 100%; /* 이미지 반응형 */
  height: auto; /* 이미지 비율 유지 */
  vertical-align: block; /* 이미지를 인라인 요소에서 블록 요소로 변경 */
}

.about_section3 .detail-box h3 {
  font-weight: bolder;
}

.about_section3 .detail-box h2 {
  font-weight: bolder;
  font-size: 18px;
}

.about_section3 .detail-box {
  display: flex;
  flex-direction: column; /* 텍스트 요소를 세로로 배치 */
  justify-content: flex-end; /* 텍스트 컨테이너 안에서 하단 정렬 */
  height: 100%; /* 컨테이너 전체 높이를 차지하도록 설정 */
}

.about_section3 .detail-box p {
  margin-top: 15px;
}

.about_section3 .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00204a;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section3 .detail-box a:hover {
  background-color: #00204a;
}

.about_section3 .layout_padding {
  padding: 40px 0; /* 섹션 위아래 여백 */
}

@media (max-width: 768px) {
  .about_section3 .row {
    flex-direction: column; /* 세로 배치 */
    align-items: center; /* 중앙 정렬 */
  }
  .about_section3 .img-box1 {
    margin-bottom: 20px; /* 이미지와 텍스트 사이 여백 */
  }
}
/*about_section3끝 */

/* about_setction4 시작 */

.about_section4 {
  background: radial-gradient(circle, #D2FEFF 30%, #f6def6 100%);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 45px 0 145px 0;
}

.about_section4 .heading_container {
  margin-bottom: 45px;
}

.about_section4 .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.about_section4 .img-box1 img {
  max-width: 70%; /* 이미지 반응형 */
  height: auto; /* 비율 유지 */
  display: block;
}

.about_section4 .detail-box {
  width: 55%; /* 텍스트 박스 크기 */
  text-align: left; /* 텍스트 왼쪽 정렬 */
  margin-left: 0; /* 왼쪽 마진 제거 */
  margin-right: 20px; /* 오른쪽 마진 추가 */
}

.about_section4 .detail-box h3 {
  font-weight: bolder;
}

.about_section4 .detail-box h2 {
  font-weight: bolder;
  font-size: 18px;
}

.about_section4 .detail-box p {
  margin-top: 15px;
}

.about_section4 .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00204a;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section4 .detail-box a:hover {
  background-color: #00204a;
}

.about_section4 .layout_padding {
  padding: 40px 0; /* 섹션 위아래 여백 */
}

/* 반응형 설정 */
@media (max-width: 768px) {
  .about_section4 .row {
    flex-direction: column; /* 작은 화면에서는 세로 정렬 */
    align-items: center;
  }

  .about_section4 .img-box1 {
    width: 100%; /* 모바일에서는 전체 너비 */
    margin: 20px; /* 위쪽 여백 추가, 가운데 정렬 */
    text-align: center;
  }

  .about_section4 .img-box1 img {
    width: 100%;
    -webkit-animation: upDown 5s infinite;
            animation: upDown 5s infinite;
  }

  @-webkit-keyframes upDown {
    0% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
    50% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
    100% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
  }
  
  @keyframes upDown {
    0% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
    50% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
    100% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
  }

  .about_section4 .detail-box {
    width: 100%;
    text-align: center; /* 모바일에서는 가운데 정렬 */
    margin: 0 auto;
  }
}
/* about_section4 끝 */

.location_section {
  background-color: #ffffff;
  color: #000000;
}

#map {
  width: 100%;
  height: 400px; /* 원하는 높이로 조정 가능 */
  margin-top: 20px; /* 지도 위에 여백 추가 */
}

.location_section .heading_container {
  margin-bottom: 45px;
}

.location_section .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.location_section .img-box img {
  max-width: 100%;
}

.location_section .detail-box p {
  margin-top: 15px;
}

.location_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0px;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.location_section .detail-box a:hover {
  background-color: #008cba; /* 호버 시 배경색 변경 */
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .location_section .row {
      flex-direction: column; /* 작은 화면에서는 세로 방향으로 정렬 */
  }
}

.about_section .detail-box a:hover {
  background-color: #007fa4;
}

.why_section {
  background-color: #ffffff;
  min-height: calc(100vh - 60px); /* 풋터의 높이를 제외하고 영역 설정 */
  padding: 20px;
  box-sizing: border-box; /* 패딩을 포함한 크기 설정 */
}

.why_section .box {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.why_section .box .img-box {
  margin-bottom: 20px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 100%;
  border: 5px solid #00204a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.why_section .box .img-box img {
  width: 55px;
  height: auto;
  fill: #00204a;
}

.why_section .box h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.why_section .box p {
  margin-bottom: 0;
}

.why_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.why_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.why_section .btn-box a:hover {
  background-color: #007fa4;
}

/*team section */
.team_section {
  text-align: center;
  background-color: #00204a;
  color: #ffffff;
}

.team_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team_section .team_container {
  padding: 0 15px;
}

.team_section .team_container .box {
  padding: 35px 0 0 0;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all .1s;
  transition: all .1s;
  margin-top: 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#002759), to(#002b64));
  background: linear-gradient(to bottom, #002759, #002b64);
}

.team_section .team_container .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.team_section .team_container .box .img-box img {
  width: 120px;
  border-radius: 100%;
  border: 5px solid #ffffff;
}

.team_section .team_container .box .detail-box {
  margin: 25px 0;
}

.team_section .team_container .box .detail-box h5 {
  color: #00bbf0;
  font-weight: 600;
  position: relative;
}

.team_section .team_container .box .social_box {
  padding: 10px 45px 20px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.team_section .team_container .box .social_box a {
  color: #ffffff;
  font-size: 22px;
}

.team_section .team_container .box .social_box a:hover {
  color: #00bbf0;
}

/*team section end*/
/* client section start */
.client_section .heading_container {
  margin-bottom: 30px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 15px;
}

.client_section .box .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  margin-bottom: -50px;
  margin-left: 25px;
  position: relative;
}

.client_section .box .img-box img {
  border-radius: 100%;
}

.client_section .box .client_id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.client_section .box .client_id .client_info h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.client_section .box .client_id .client_info p {
  margin-bottom: 0;
  font-size: 15px;
  font-size: 14px;
  margin-bottom: 10px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 75px 25px 25px 25px;
}

.client_section .box .detail-box i {
  color: #00204a;
  margin-bottom: 10px;
}

.client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  color: #000000;
  outline: none;
  bottom: 0px;
  font-size: 24px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  color: #00204a;
}

/* client section end */





/* 카카오 지도 컨테이너 */
#daumRoughmapContainer1736841293094 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;  /* 16:9 비율 유지 (높이: 너비 비율) */
}

.root_daum_roughmap_landing {
  position: absolute;
  width: 100%;
  height: 100%;
}


/* 화면 크기가 768px 이하일 때 (모바일 등 작은 화면) */
@media (max-width: 768px) {
  #daumRoughmapContainer1736841293094 {
      padding-bottom: 133.33%;  /* 3:4 비율 (세로로 긴 비율) */
  }
}

/* 화면 크기가 1200px 이하일 때 (태블릿 등 중간 화면) */
@media (max-width: 1200px) {
  #daumRoughmapContainer1736841293094 {
      padding-bottom: 75%;  /* 4:3 비율 */
  }
}

/* 화면 크기가 1200px 이상일 때 (큰 화면) */
@media (min-width: 1201px) {
  #daumRoughmapContainer1736841293094 {
      padding-bottom: 56.25%;  /* 기본 16:9 비율 */
  }
}

/* 탭 메뉴 컨테이너 */
.tab-menu-container {
  display: flex;
  justify-content: center; /* 전체 메뉴 가운데 정렬 */
  margin: 20px auto; /* 위아래 여백 추가 */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* 그림자 */
  padding: 10px; /* 컨테이너 패딩 추가 */
  background-color: #ffffff; /* 컨테이너 배경 흰색 */
  border-radius: 8px; /* 컨테이너 라운드 처리 */
  width: 80%; /* 컨테이너 너비 */
  max-width: 600px; /* 최대 너비 */
}

/* 탭 메뉴 */
.tab-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%; /* 컨테이너 안에서 가득 채움 */
  overflow: hidden; /* 라운드 밖의 요소 제거 */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15); /* 깊은 그림자 */
}

/* 탭 항목 */
.tab-item {
  flex: 1; /* 모든 탭이 동일한 너비를 가짐 */
  margin: 0;
  padding: 0;
}

/* 탭 항목 스타일 */
.tab-item a {
  text-decoration: none;
  color: #333; /* 기본 텍스트 색상 */
  font-size: 16px;
  font-weight: 500;
  text-align: center; /* 텍스트 가운데 정렬 */
  padding: 10px 0;
  display: block; /* 전체 영역 클릭 가능 */
  background-color: #ffffff; /* 배경 흰색 */
  transition: background-color 0.3s ease, color 0.3s ease;
  border-left: 1px solid rgba(0, 0, 0, 0.1); /* 경계선 */
}

/* 첫 번째 탭 (왼쪽만 라운드 처리) */
.tab-item:first-child a {
  border-left: none; /* 첫 번째 항목은 왼쪽 구분선 제거 */
  border-radius: 8px 0 0 8px; /* 왼쪽 라운드 */
}

/* 마지막 탭 (오른쪽만 라운드 처리) */
.tab-item:last-child a {
  border-radius: 0 8px 8px 0; /* 오른쪽 라운드 */
}

/* 중간 탭 (라운드 없음) */
.tab-item:nth-child(2) a {
  border-radius: 0; /* 중간 탭 라운드 없음 */
}

/* 호버 효과 */
.tab-item a:hover {
  background-color: #007bff; /* 파란 배경 */
  color: #ffffff; /* 흰색 텍스트 */
  box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.2); /* 클릭 시 내부 그림자 */
}

/* 탭 버튼 구분선 */
.tab-item a + a {
  border-left: 1px solid rgba(0, 0, 0, 0.1); /* 탭 간 구분선 */
}

section.py-sm,
section .py-sm {
  padding: 30px 0 !important;
}

section.py-md,
section .py-md {
  padding: 60px 0 !important;
}

section.has-bg-img {
  position: relative; /* fixed → relative로 변경 */
  width: 100%;
  min-height: 300px;
  background: rgba(33, 37, 41, 0.95);
  color: #fff;
  z-index: 1;
  padding: 50px 0;
  padding-bottom: 100px; /* 푸터 높이만큼 여백 추가 */
}

/* 마스킹 효과 적용 */
section.has-bg-img:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), 
              url(../images/slider_img1.png);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1; /* 마스킹이 콘텐츠 위에 오도록 */
  opacity: 0.5;
}

section.has-bg-img.bg-img-1:after {
  background-image: url(../images/slider_img1.png);
}

section.has-bg-img.bg-img-2:after {
  background-image: url(../images/slider_img1.png);
}

section .section-subtitle {
  font-size: calc(17px + (23 - 17) * ((100vw - 320px) / (1200 - 320)));
  font-weight: 300;
  margin-bottom: 5px;
  opacity: .6;
}

@media (min-width: 992px) {
  section .section-subtitle {
    font-size: 23px;
  }
}

section .section-title {
  font-size: calc(28px + (35 - 28) * ((100vw - 320px) / (1200 - 320)));
}

@media (min-width: 992px) {
  section .section-title {
    font-size: 35px;
  }
}


/* 푸터 기본 스타일 */
.footer {
  padding: 50px 0 30px 0;
  background: transparent;
}

.footer .logo {
  padding-bottom: 6px;
}

.footer .logo img {
  width: 35px;
}

.footer .logo h6 {
  display: inline-block;
  color: #fff;
  position: relative;
  top: 3px;
  left: 5px;
}

.footer a {
  color: #eaf0fc;
  padding-bottom: 5px;
  opacity: .7;
}

.footer a:hover {
  opacity: 1;
}

.footer .footer-lists {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

@media (max-width: 767.98px) {
  .footer .footer-lists {
    flex-direction: column;
    align-items: center;
  }
}

.footer .list {
  list-style-type: none;
  padding-left: 0;
  width: calc(100% / 3);
  padding: 0 30px;
}

.footer .list-head {
  border-bottom: 1px solid rgba(222, 226, 230, 0.2);
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.footer .list-body {
  padding-top: 6px;
}

.footer .list-body p {
  margin-bottom: 5px;
}

.footer .list-body p i {
  display: inline-block;
  width: 20px;
}

.footer .list-body a {
  display: block;
  text-decoration: none;
  margin-bottom: 4px;
}

/* 🔹 소셜 링크 버튼 */
.footer .list-body .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.footer .list-body .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer .list-body .social-links a:hover {
  color: #00bbf0;
}

/* 🔹 네이버 블로그 아이콘 */
.naver-icon {
  width: 18px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.naver-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* 🔹 푸터 하단 고정 */
.footer_section {
  position: relative;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 20px 0;
  z-index: 5;
}

.footer_section p {
  color: #00204a;
  font-size: 14px;
  margin: 10px 0;
  line-height: 1.5;
}

.footer_section img {
  width: 120px;
  max-width: 100%;
  height: auto;
  margin-top: 15px;
}

.footer_logo {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: auto;
}

/* 🔹 반응형 푸터 */
@media (max-width: 768px) {
  .footer_section {
    padding: 30px 0;
  }

  .footer .list {
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
  }

  .footer .footer-lists {
    flex-direction: column;
    align-items: center;
  }
}

/* 문의하기 섹션 */
/* 🔹 문의하기 배경 */
.form_section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../images/slider_img1.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔹 배경 어둡게 마스킹 */
.form_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 0;
}

/* 🔹 문의 폼 컨테이너 */
.form_section .form-container {
  position: relative;
  background: rgba(0, 0, 0, 0.85);
  padding: 40px;
  border-radius: 10px;
  max-width: 850px;
  width: 100%;
  z-index: 1;
  color: white;
  margin: auto; /* 🔹 자동 중앙 정렬 */
}

/* 🔹 제목 스타일 */
.form_section .form-container h2 {
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}

/* 🔹 입력 필드 스타일 */
.form_section .form-container label {
  font-weight: bold;
  color: #ff6600;
}

.form_section .form-control {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 5px;
  padding: 10px;
}

.form_section .form-control::placeholder {
  color: #ddd;
}

/* 🔹 제출 버튼 */
.form_section .btn-submit {
  background-color: #ff6600;
  color: white;
  font-weight: bold;
  padding: 15px;
  border: none;
  width: 100%;
  border-radius: 5px;
  transition: 0.3s;
}

.form_section .btn-submit:hover {
  background-color: #e65c00;
}

/* 🔹 체크박스 스타일 */
.form_section .checkbox-label {
  font-size: 14px;
  color: #ddd;
}

/* 🔹 반응형 */
@media (max-width: 768px) {
  .form_section .form-container {
    padding: 30px;
  }
}

/* 모달 배경 */
.modal-backdrop {
  z-index: 1040 !important; /* 모달보다 뒤에 위치 */
}

.modal {
  z-index: 1050 !important; /* 모달이 최상위 */
}

/* 모달 중앙 정렬 */
.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* 화면 높이 기준으로 중앙 정렬 */
  max-width: 80%;
  width: 80%;
}

/* 화면이 클 경우 최대 가로폭 설정 */
@media (min-width: 1200px) {
  .modal-dialog {
    max-width: 1000px;
  }
}

/* 모달 컨텐츠 스타일 */
.modal-content {
  background-color: white !important;
  color: black !important;
  padding: 20px;
  border-radius: 10px;
}

/* 모달 내부 스크롤 가능하도록 설정 */
.modal-body {
  max-height: 70vh; /* 전체화면 높이의 70%까지만 확장 */
  overflow-y: auto; /* 내용이 많아지면 스크롤 생성 */
  padding: 15px;
  pointer-events: auto !important; /* 모달 내부 요소가 클릭 가능하도록 설정 */

}

/* 테이블 스타일 */
.modal-body table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.modal-body table th,
.modal-body table td {
  padding: 10px;
  border: 1px solid #ddd;
}

/* 제목 스타일 */
.modal-body h1 {
  margin-top: 10px;
  font-weight: bolder;
  color: #333;
}

.modal-body h4 {
  margin-top: 20px;
  font-weight: bold;
  color: #333;
}

/* 모달 창이 열릴 때 배경 스크롤 막기 */
body.modal-open {
  overflow: hidden;
}

/* location_section */
.location_section{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../images/slider_img1.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔹 배경 어둡게 마스킹 */
.location_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 0;
}

.location_section .location-container {
  position: relative;
  background: rgba(0, 0, 0, 0.85);
  padding: 40;
  border-radius: 10px;
  max-width: 850%;
  width: 100%;
  z-index: 1;
  color: white;
  margin: auto; /* 자동 중앙정력 */
}

/* 제목스타일 */
.location_section .form-container h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

/*# sourceMappingURL=style.css.map */