@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css");
h1 {
  font-size: 5.2rem;
}

h2 {
  font-size: 4.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2.2rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

html {
  font-size: 10px;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

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

@media (min-width: 768px) {
  .custom-padding {
    padding: 0 2.4rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}

.slide-up {
  animation: slideUp 0.5s ease-out forwards;
}

.slide-down {
  animation: slideDown 0.5s ease-out forwards;
}

.header {
  width: 100%;
  padding: 2rem 0;
  background-color: #1F2124;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow-x: hidden;
  transition-property: transform, background-color, box-shadow, margin, border-radius;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.header.hide {
  transform: translateY(-100%);
  box-shadow: none;
}
.header.scrolled {
  margin: 1rem 2rem;
  border-radius: 9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: calc(100% - 4rem);
}
.header .container {
  position: relative;
}

body {
  padding-top: 80px;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 10;
}
.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  gap: 5.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}
.nav-menu a {
  color: #7B848D;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 0.3rem;
  /* 호버 시 스타일 */
  /* 클릭 시 스타일 */
  /* 현재 페이지 표시 스타일 */
}
.nav-menu a:hover {
  text-decoration: none;
  color: #96CA94;
  transition: all 0.2s ease;
}
.nav-menu a:active {
  font-weight: 500;
}
.nav-menu a.active {
  color: #96CA94;
  font-weight: 600;
  /* 밑줄 효과 */
}
.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #96CA94;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #1F2124;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    z-index: 5;
    transition: right 0.3s ease;
  }
  .nav-menu.active {
    right: 0;
    display: flex;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-menu a {
    font-size: 2rem;
    display: block;
    padding: 1rem 0;
  }
}
@media (max-width: 480px) {
  .nav-menu {
    width: 80%;
  }
}
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-contact {
  background-color: #5EAB92;
  color: white;
  border: none;
}
.btn-contact:hover {
  background-color: #498d77;
}

.member-card {
  background-color: #F1F3F5;
  border-radius: 3.2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}
.member-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 3.2rem;
  border-top-right-radius: 3.2rem;
}
.member-card .member-info {
  background-color: #fff;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem; /* 좌우 패딩 늘림 */
  border-radius: 2rem;
  min-width: 80%; /* 최소 너비 설정 */
  text-align: left;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  justify-content: space-between;
  transition: all 0.3s ease; /* 부드러운 전환 효과 */
}
.member-card .member-info:hover {
  transform: translateX(-50%) translateY(-5px); /* 위로 살짝 올라가는 효과 */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* 그림자 강화 */
  cursor: pointer; /* 마우스 커서 변경 */
}
.member-card .member-info i {
  font-size: 3.5rem;
  transition: color 0.3s ease; /* 아이콘 색상 전환 효과 */
  border-radius: 13px;
}
.member-card .member-info i:hover {
  color: #1F2124; /* 아이콘에 호버 시 색상 변경 */
}
.member-card .member-info i:hover {
  color: #7E9F85;
}
.member-card .member-info i:active {
  color: #5b7660;
}
.member-card .member-info h4 {
  color: #1F2124;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.member-card .member-info p {
  color: #7B848D;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0rem;
}

.footer {
  background-color: #1F2124;
  color: #fff;
  padding: 5rem 0 2rem;
}
.footer .container {
  height: -moz-fit-content;
  height: fit-content;
}
.footer .footer-logo {
  max-width: 50px;
  height: auto;
  margin-bottom: 1rem;
}
.footer h5 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.footer .footer-tagline {
  font-size: 1.2rem;
  color: #AAAAAA;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.footer .footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 0.8rem;
}
.footer .footer-links a {
  color: #AAAAAA;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.footer .footer-links a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.footer .footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #333333;
}
.footer .footer-bottom .copyright {
  font-size: 0.9rem;
  color: #777777;
  margin-bottom: 0;
}
.footer .footer-bottom .social-links {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-bottom .social-links li {
  margin-left: 1rem;
}
.footer .footer-bottom .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color 0.3s ease;
}
.footer .footer-bottom .social-links li a img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.footer .footer-bottom .social-links li a:hover {
  background-color: #555555;
}

.main-img-container {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

.main-img {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
.main-img img {
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.main-img .btn-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.main-img .btn-container .btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  background-color: #5EAB92;
  color: white;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main-img .btn-container .btn:hover {
  background-color: #498d77;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.sec01 .container {
  width: 80%;
}

.sec01-title {
  position: relative;
  justify-content: left;
  margin-bottom: 30px;
  top: 0%;
  display: flex;
}
.sec01-title h1 {
  text-align: left;
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #2C3136;
}
.sec01-title .subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #5EAB92;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.sec01-title p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #4D5359;
}
.sec01-title .contact-button .btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  background-color: #5EAB92;
  color: white;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sec01-title .contact-button .btn:hover {
  background-color: #498d77;
  transform: translateY(-2px);
}
.sec01-title .contact-button span {
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2C3136;
}

.sec02 .title {
  text-align: center;
  margin-bottom: 3rem;
}
.sec02 h2 {
  margin-bottom: 0;
}

.sec02-videos .video-item {
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 40rem;
}
.sec02-videos .video-item.active {
  transform: translateY(-5px);
}
.sec02-videos .video-item .video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.sec02-videos .video-item .video-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.sec02-videos .video-item .video-thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec02-videos .video-item .video-thumbnail .play-icon i {
  color: #5EAB92;
  font-size: 24px;
}
.sec02-videos .video-scroll-container {
  display: flex;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
}
.sec02-videos .video-scroll-container .video-card {
  flex: 0 0 auto;
  margin-right: 1rem;
}
.sec02-videos .video-scroll-container .video-card.active {
  min-width: 90%;
  order: -1;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-content h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #5EAB92;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.sec01, .sec02, .sec03, .sec04, .sec05, .sec06, .sec07 {
  padding: 12rem 0;
  height: -moz-fit-content;
  height: fit-content;
}

.sec01 .container, .sec02 .container, .sec03 .container, .sec04 .container,
.sec05 .container, .sec06 .container, .sec07 .container {
  height: -moz-fit-content;
  height: fit-content;
}

.app-hero {
  height: 100vh;
  background-color: #2A2E31;
  color: #fff;
  padding: 12rem 0;
  overflow: hidden;
  position: relative;
}
.app-hero .hero-content h1 {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5.7rem;
  color: #D5E7D9;
}
.app-hero .hero-content p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #7B848D;
  margin-bottom: 2rem;
}
.app-hero .hero-image {
  position: relative;
}
.app-hero .hero-image .phone-container .phone-img {
  margin-top: 8rem;
}
.app-hero .hero-image .phone-container .bubble {
  position: absolute;
  margin-top: 8rem;
  z-index: 2;
  will-change: transform; /* 성능 최적화 */
}
.app-hero .hero-image .phone-container .bubble img {
  width: 100%;
}
.app-hero .hero-image .phone-container .bubble.bubble-1 {
  top: -60px;
  right: 20px;
  animation: float-1 6s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}
.app-hero .hero-image .phone-container .bubble.bubble-2 {
  top: 15px;
  right: -50px;
  animation: float-2 7s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}
.app-hero .hero-image .phone-container .bubble.bubble-3 {
  top: 100px;
  right: 0px;
  animation: float-3 8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes float-1 {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) translateX(3px) rotate(1deg);
  }
  50% {
    transform: translateY(-15px) translateX(0) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) translateX(-3px) rotate(-1deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}
@keyframes float-2 {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  20% {
    transform: translateY(-10px) translateX(-5px) rotate(-1deg);
  }
  40% {
    transform: translateY(-18px) translateX(0) rotate(0.5deg);
  }
  60% {
    transform: translateY(-12px) translateX(5px) rotate(1deg);
  }
  80% {
    transform: translateY(-5px) translateX(3px) rotate(0deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}
@keyframes float-3 {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  30% {
    transform: translateY(-12px) translateX(4px) rotate(1.5deg);
  }
  50% {
    transform: translateY(-20px) translateX(0) rotate(0deg);
  }
  70% {
    transform: translateY(-10px) translateX(-4px) rotate(-1deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}
.appTitle {
  font-size: 4.2rem;
  color: #1F2124;
  font-weight: 800;
}

.can-we-do {
  padding: 12rem;
}
.can-we-do .appTitle {
  padding-bottom: 6.8rem;
}
.can-we-do .card1, .can-we-do .card2 {
  width: calc(50% - 1rem);
}
.can-we-do .img-card {
  transition: all 0.3s ease;
}
.can-we-do .img-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}
.can-we-do .img-card {
  position: relative;
  width: 100%;
  height: 350px;
  background-color: #F1F3F5;
  border: 1px solid #DFE4EA;
  border-radius: 32px;
}
.can-we-do .img1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.can-we-do .card2 .img-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.can-we-do .img2 {
  width: 350px;
}
.can-we-do h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1F2124;
  padding: 2.2rem 0 0.8rem 0;
}
.can-we-do p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #AAB2B9;
  line-height: 1.6;
}

.history {
  padding: 12rem 0;
  display: flex;
  background-color: #D5E7D9;
}
.history .title {
  text-align: left;
}
.history .title h2 {
  color: #1F2124;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10rem;
}
.history .title h3 {
  color: #1F2124;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.7rem;
}
.history .title p {
  color: #7B848D;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.history img {
  margin-left: 6rem;
  width: 90%;
}

.app-cta {
  padding: 100px 0;
  background: #1F2124;
  color: #fff;
  text-align: center;
}
.app-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.app-cta p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.app-cta .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background-color: #fff;
  color: #1F2124;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.app-cta .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}
.app-cta .btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.app-cta .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero {
  background-color: #F1F3F5;
  padding: 12rem 0;
  margin-top: 7rem;
}
.hero .title h2 {
  color: #1F2124;
  font-size: 5.2rem;
  font-weight: 800;
  margin-bottom: 6.2rem;
}
.hero .title h3 {
  color: #1F2124;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.hero .title p {
  color: #AAB2B9;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 6.2rem;
}
.hero img {
  width: 100%;
  border-radius: 32px;
}

.interview {
  padding: 12rem 0;
  background-color: #D5E7D9;
}
.interview .container {
  background-color: #F7FEF9;
  border-radius: 32px;
}
.interview .content {
  padding: 6.2rem;
  display: flex;
  align-items: center;
}
.interview .title {
  flex: 1;
}
.interview .title span {
  background-color: #D5E7D9;
  padding: 6px 12px;
  border-radius: 10px;
  color: #7E9F85;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-block;
}
.interview .title h2 {
  color: #1F2124;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3.2rem;
  margin-top: 3.2rem;
  line-height: 1.2;
}
.interview .title p {
  color: #7B848D;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 4.2rem;
}
.interview .title button {
  background-color: #1F2124;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.interview .title button:hover {
  padding: 1.4rem 2.8rem;
}
.interview .title button:active {
  padding: 1.2rem 2.4rem;
}
.interview img {
  width: auto;
  height: 450px;
  margin-right: 6.2rem;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}

.from-us-to-you {
  height: 100vh;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/ourstory-bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.from-us-to-you::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.from-us-to-you .container {
  position: relative;
  z-index: 2;
}
.from-us-to-you .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.from-us-to-you h2 {
  color: #D5E7D9;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 6.4rem;
}
.from-us-to-you .message-content {
  max-width: 600px;
  margin: 0 auto;
}
.from-us-to-you .message-content .reminder {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2.4rem;
}
.from-us-to-you .message-content .description {
  font-size: 1.6rem;
  font-weight: 400;
  color: #F8F9FA;
  line-height: 1.6;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .from-us-to-you h2 {
    font-size: 3.2rem;
  }
  .from-us-to-you .message-content .reminder {
    font-size: 1.8rem;
  }
  .from-us-to-you .message-content .description {
    font-size: 1.4rem;
  }
}

.team {
  padding: 12rem 0;
  background-color: #F8F9FA;
}
.team h2 {
  color: #1F2124;
  font-size: 5.2rem;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.2;
}
.team h3 {
  color: #1F2124;
  font-size: 5.2rem;
  font-weight: 400;
  margin-bottom: 6.2rem;
  line-height: 1.2;
}
.team .team-members {
  max-width: 1200px;
}
.team .member-card {
  background-color: #F1F3F5;
  border-radius: 3.2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}
.team .member-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 3.2rem;
  border-top-right-radius: 3.2rem;
}
.team .member-card .member-info {
  background-color: #fff;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem; /* 좌우 패딩 늘림 */
  border-radius: 2rem;
  min-width: 80%; /* 최소 너비 설정 */
  text-align: left;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  justify-content: space-between;
  transition: all 0.3s ease; /* 부드러운 전환 효과 */
}
.team .member-card .member-info:hover {
  transform: translateX(-50%) translateY(-5px); /* 위로 살짝 올라가는 효과 */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* 그림자 강화 */
  cursor: pointer; /* 마우스 커서 변경 */
}
.team .member-card .member-info i {
  font-size: 3.5rem;
  transition: color 0.3s ease; /* 아이콘 색상 전환 효과 */
  border-radius: 13px;
}
.team .member-card .member-info i:hover {
  color: #1F2124; /* 아이콘에 호버 시 색상 변경 */
}
.team .member-card .member-info i:hover {
  color: #7E9F85;
}
.team .member-card .member-info i:active {
  color: #5b7660;
}
.team .member-card .member-info h4 {
  color: #1F2124;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.team .member-card .member-info p {
  color: #7B848D;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0rem;
}
.team .team-description {
  margin-top: 6.2rem;
}
.team .team-description p {
  color: #7B848D;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

.our-values {
  background-color: #1F2124;
  padding: 12rem 0;
  position: relative;
  overflow: hidden;
  /* 배경 효과 추가 */
  /* 카드 컨테이너 스타일 */
  /* 모바일용 설명 텍스트 */
}
.our-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(126, 159, 133, 0.15) 0%, rgba(31, 33, 36, 0) 50%);
  z-index: 1;
}
.our-values::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 70%, rgba(108, 216, 255, 0.1) 0%, rgba(31, 33, 36, 0) 50%);
  z-index: 1;
}
.our-values .container {
  position: relative;
  z-index: 2;
}
.our-values .section-title {
  color: #F8F9FA;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 6.8rem;
  text-align: center;
  position: relative;
  display: inline-block;
}
.our-values .values-container {
  margin-top: 3rem;
}
.our-values .values-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
  perspective: 1000px; /* 3D 효과를 위한 원근감 설정 */
}
.our-values .value-mobile-description {
  margin-top: 3rem;
  padding: 0 1.5rem;
  display: none;
}
@media (max-width: 768px) {
  .our-values .value-mobile-description {
    display: block;
  }
}
.our-values .value-mobile-description h3 {
  color: #F8F9FA;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
.our-values .value-mobile-description h3.active {
  display: block;
}
.our-values p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #7B848D;
  margin: 0 auto;
  text-align: center;
}

.our-values {
  padding: 12rem 0;
  background-color: #1F2124;
  color: #ffffff;
}
.our-values .section-title {
  color: #ffffff;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 6rem;
}
.our-values .values-container {
  max-width: 800px;
  margin: 0 auto;
}
.our-values .values-btn-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}
.our-values .values-btn-container .value-btn {
  color: #D5E7D9;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}
.our-values .values-btn-container .value-btn.active {
  opacity: 1;
}
.our-values .values-btn-container .value-btn:hover {
  opacity: 0.8;
}
.our-values .values-content {
  margin-bottom: 5rem;
}
.our-values .values-content .value-description {
  display: none;
}
.our-values .values-content .value-description.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.our-values .values-content .value-description p {
  color: #ebebeb;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.9;
}
.our-values .values-tagline {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.7;
  margin-top: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.interview {
  padding: 12rem 0;
  background-color: #D5E7D9;
}
.interview .container {
  background-color: #F7FEF9;
  border-radius: 32px;
}
.interview .content {
  padding: 6.2rem;
}
.interview span {
  color: #7E9F85;
  font-size: 1.8rem;
  font-weight: 500;
}
.interview h2 {
  color: #1F2124;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 2.4rem;
}
.interview p {
  color: #7B848D;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
.interview .quote {
  padding: 2.4rem;
  background-color: #EEFBF2;
  border-radius: 16px;
  margin-bottom: 2.4rem;
}
.interview .quote p {
  color: #1F2124;
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
}
.interview .quote-author {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
}
.interview .quote-author img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  margin-right: 1.6rem;
}
.interview .quote-author-info h4 {
  color: #1F2124;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.interview .quote-author-info p {
  color: #7B848D;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0;
}
.interview button {
  background-color: #7E9F85;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.interview button:hover {
  padding: 1.4rem 2.8rem;
}
.interview button:active {
  padding: 1.2rem 2.4rem;
}

.from-us-to-you {
  height: 100vh;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/ourstory-bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.from-us-to-you::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.from-us-to-you .container {
  position: relative;
  z-index: 2;
}
.from-us-to-you .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.from-us-to-you h2 {
  color: #D5E7D9;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 6.4rem;
}
.from-us-to-you .message-content {
  max-width: 600px;
  margin: 0 auto;
}
.from-us-to-you .message-content .reminder {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2.4rem;
}
.from-us-to-you .message-content .description {
  font-size: 1.6rem;
  font-weight: 400;
  color: #F8F9FA;
  line-height: 1.6;
  opacity: 0.7;
}

.team {
  padding: 12rem 0;
  background-color: #F8F9FA;
}
.team h2 {
  color: #1F2124;
  font-size: 5.2rem;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.2;
}
.team h3 {
  color: #1F2124;
  font-size: 5.2rem;
  font-weight: 400;
  margin-bottom: 6.2rem;
  line-height: 1.2;
}
.team .team-members {
  max-width: 1200px;
}
.team .team-description {
  margin-top: 6.2rem;
}
.team .team-description p {
  color: #7B848D;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 992px) {
  .header .logo a img {
    max-width: 80px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }
  .header .logo a img {
    max-width: 70px;
  }
}
@media (max-width: 992px) {
  .navbar .navbar-toggler {
    display: block;
  }
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  .navbar .navbar-collapse.show {
    right: 0;
  }
  .navbar .navbar-nav {
    flex-direction: column;
  }
  .navbar .navbar-nav .nav-item {
    margin: 1rem 0;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 1.8rem;
    padding: 1rem 0;
  }
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    width: 90%;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 1.6rem;
  }
}
@media (max-width: 992px) {
  .footer {
    padding: 4rem 0 2rem;
  }
  .footer .footer-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .footer .social-links {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
  .footer .social-links li {
    margin-left: 0;
    margin-right: 1rem;
  }
  .footer .footer-bottom {
    text-align: center;
  }
  .footer .footer-bottom .copyright {
    margin-bottom: 1rem;
  }
  .footer .footer-bottom .social-links {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer h5 {
    font-size: 1.6rem;
  }
  .footer .footer-tagline {
    font-size: 1.1rem;
  }
  .footer .footer-heading {
    font-size: 1.1rem;
  }
  .footer .footer-links a {
    font-size: 1.2rem;
  }
  .footer .footer-bottom {
    margin-top: 3rem;
  }
  .footer .footer-bottom .copyright {
    font-size: 0.8rem;
  }
  .footer .footer-bottom .social-links li a {
    width: 28px;
    height: 28px;
  }
  .footer .footer-bottom .social-links li a img {
    width: 14px;
    height: 14px;
  }
}
/* Section 07 - 후기 섹션 반응형 */
@media (max-width: 992px) {
  .sec07 {
    padding: 80px 0;
  }
  .sec07 .title {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
  .sec07 .testimonial-large {
    height: 450px;
    margin-bottom: 30px;
  }
  .sec07 .testimonial-medium,
  .sec07 .testimonial-small {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .sec07 {
    padding: 60px 0;
  }
  .sec07 .title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
  .sec07 .testimonial-large {
    height: 400px;
    margin-bottom: 30px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .sec07 .testimonial-large .testimonial-bubble {
    top: 15%;
    left: 20px;
    width: 80%;
    padding: 15px;
  }
  .sec07 .testimonial-medium,
  .sec07 .testimonial-small {
    height: 250px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .sec07 {
    padding: 40px 0;
  }
  .sec07 .title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
  .sec07 .testimonial-large {
    height: 350px;
    width: 100%;
  }
  .sec07 .testimonial-large .testimonial-bubble {
    top: 10%;
    padding: 15px;
  }
  .sec07 .testimonial-large .testimonial-bubble .user-avatar {
    width: 35px;
    height: 35px;
  }
  .sec07 .testimonial-large .testimonial-bubble .user-name {
    font-size: 1.5rem;
  }
  .sec07 .testimonial-large .testimonial-bubble .testimonial-text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .sec07 .testimonial-medium,
  .sec07 .testimonial-small {
    height: 220px;
    margin-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .sec02-videos .video-item {
    height: 35rem;
  }
  .sec02-videos .video-item .video-overlay .video-title {
    font-size: 1.8rem;
  }
  .sec02-videos .video-item .video-overlay .video-description {
    font-size: 1.4rem;
  }
  .value-card {
    width: 240px;
    height: 300px;
  }
  .value-card .value-card-front h3 {
    font-size: 2rem;
  }
  .value-card .value-card-back p {
    font-size: 1.5rem;
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .sec02-videos .video-item {
    height: 30rem;
  }
  .sec02-videos .video-item .video-overlay .video-title {
    font-size: 1.6rem;
  }
  .sec02-videos .video-item .video-overlay .video-description {
    font-size: 1.3rem;
  }
  .value-card {
    width: 220px;
    height: 280px;
  }
  .value-card .value-card-front h3 {
    font-size: 1.8rem;
  }
  .value-card .value-card-back p {
    font-size: 1.4rem;
    padding: 1.2rem;
  }
  .member-card .member-info {
    padding: 1.2rem;
  }
  .member-card .member-info h4 {
    font-size: 1.5rem;
  }
  .member-card .member-info p {
    font-size: 1.2rem;
  }
}
@media (max-width: 992px) {
  .black-dot {
    width: 12px;
    height: 12px;
  }
  .black-dot-card.active .black-dot {
    transform: scale(1.3);
  }
}
@media (max-width: 768px) {
  .black-dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 992px) {
  .btn {
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
  }
  .contact-button .btn {
    font-size: 1.8rem;
    padding: 1.5rem 3.5rem;
  }
  .btn-learn-more {
    font-size: 1.6rem;
  }
  .btn-learn-more::after {
    width: 20px;
    margin-left: 0.8rem;
  }
}
@media (max-width: 768px) {
  .btn {
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }
  .contact-button .btn {
    font-size: 1.6rem;
    padding: 1.2rem 3rem;
  }
  .btn-learn-more {
    font-size: 1.5rem;
  }
  .btn-learn-more::after {
    width: 18px;
    margin-left: 0.7rem;
  }
}
@media (max-width: 992px) {
  .interview button {
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
  }
  .interview button:hover {
    padding: 1.3rem 2.6rem;
  }
  .interview button:active {
    padding: 1.1rem 2.2rem;
  }
}
@media (max-width: 768px) {
  .interview button {
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
  .interview button:hover {
    padding: 1.1rem 2.2rem;
  }
  .interview button:active {
    padding: 0.9rem 1.8rem;
  }
}
/* Section 01 - 메인 배너 반응형 */
@media (max-width: 1200px) {
  .sec01 .contact-button .btn {
    padding: 1.8rem 4.7rem;
  }
}
@media (max-width: 992px) {
  .sec01 .contact-button .btn {
    font-size: 1.8rem;
    padding: 1.5rem 3.5rem;
  }
  .sec01 .main-img-container {
    display: none;
  }
  .sec01 .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sec01 .banner-content .sec01-title {
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
  }
  .sec01 .banner-content::after {
    content: "";
    display: block;
    width: 100vw;
    height: 30vh;
    background-image: url("../images/main-full-bg.png");
    background-size: cover;
    background-position: center;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .sec01 .contact-button .btn {
    font-size: 1.6rem;
    padding: 1.2rem 3rem;
  }
}
/* Section 02 - 소개 섹션 반응형 */
@media (max-width: 992px) {
  .sec02 {
    padding: 3rem 0;
  }
  .sec02 .container {
    margin-bottom: 4rem;
  }
  .sec02 .image-card {
    width: 100%;
    margin-bottom: 2rem;
  }
  .sec02 img {
    height: 300px;
    opacity: 1;
  }
  .sec02 .first-image img,
  .sec02 .last-image img {
    height: 300px;
    opacity: 1;
  }
  .sec02 .main-image img {
    height: 350px;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .sec02 img {
    height: 250px;
  }
  .sec02 .main-image img {
    height: 280px;
  }
  .sec02 .first-image img,
  .sec02 .last-image img {
    opacity: 0.7;
  }
}
@media (max-width: 576px) {
  .sec02 {
    padding: 2rem 0;
  }
  .sec02 .container {
    margin-bottom: 3rem;
  }
  .sec02 img {
    height: 220px;
  }
  .sec02 .main-image img {
    height: 250px;
    transform: none;
  }
  .sec02 .first-image img,
  .sec02 .last-image img {
    opacity: 1;
  }
}
/* Section 03 - 프로덕트 섹션 반응형 */
/* Section 04 - 앱 소개 섹션 반응형 */
@media (max-width: 992px) {
  .sec04 .row {
    flex-direction: column;
  }
  .sec04 .sec04-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .sec04 .sec04-content .description {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .sec04 .sec04-image-container {
    margin-bottom: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Section 06 - 스토리 섹션 반응형 */
@media (max-width: 992px) {
  .sec06 {
    padding: 80px 0;
    background-image: url("../images/sec06-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* col-lg-5 숨기기 */
    /* 텍스트 영역이 전체 너비를 사용하도록 설정 */
  }
  .sec06::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    z-index: 1;
  }
  .sec06 .img-fluid {
    display: none;
  }
  .sec06 .container {
    position: relative;
    z-index: 2;
  }
  .sec06 .story-content {
    padding-left: 0;
    text-align: center;
    margin: 0 auto;
    z-index: 999;
    color: #fff;
  }
  .sec06 .story-content .title {
    color: #ffffff !important;
    z-index: 999;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  .sec06 .story-content .description {
    font-size: 1.6rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    color: #ffffff !important;
    z-index: 999;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
  }
  .sec06 .story-content .btn-learn-more {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  .sec06 .story-content .btn-learn-more::after {
    background-color: #ffffff !important;
  }
  .sec06 .story-content .btn-learn-more img {
    filter: brightness(0) invert(1);
  }
  .sec06 .story-content .story-image {
    display: none;
  }
  .sec06 .col-lg-5 {
    display: none;
  }
  .sec06 .col-lg-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}
/* 히어로 섹션 반응형 */
@media (max-width: 992px) {
  .hero {
    padding: 8rem 0;
    margin-top: 5rem;
  }
  .hero .title h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .hero .title p {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  .hero img {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0;
    margin-top: 4rem;
  }
  .hero .title h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
  .hero .title h3 {
    font-size: 1.8rem;
  }
  .hero .title p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}
/* 가치 섹션 반응형 */
@media (max-width: 992px) {
  .our-values {
    padding: 8rem 0;
    /* 모바일용 설명 텍스트 */
  }
  .our-values .section-title {
    font-size: 3.6rem;
    margin-bottom: 5rem;
  }
  .our-values .values-card-container {
    gap: 2rem;
  }
  .our-values .value-card {
    width: 240px;
    height: 300px;
  }
  .our-values .value-mobile-description {
    display: block;
  }
  .our-values .value-mobile-description h3 {
    font-size: 2rem;
  }
  .our-values .value-mobile-description p {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .our-values {
    padding: 6rem 0;
  }
  .our-values .section-title {
    font-size: 3.2rem;
    margin-bottom: 4rem;
  }
  .our-values .values-card-container {
    gap: 1.5rem;
  }
  .our-values .value-card {
    width: 220px;
    height: 280px;
  }
  .our-values .value-card .value-card-front h3 {
    font-size: 2rem;
  }
  .our-values .value-card .value-card-back p {
    font-size: 1.4rem;
  }
  .our-values .value-mobile-description h3 {
    font-size: 1.8rem;
  }
  .our-values .value-mobile-description p {
    font-size: 1.4rem;
  }
}
/* 인터뷰 섹션 반응형 */
@media (max-width: 992px) {
  .interview {
    padding: 8rem 0;
  }
  .interview .content {
    padding: 4rem;
  }
  .interview span {
    font-size: 1.8rem;
  }
  .interview h2 {
    font-size: 3.6rem;
  }
  .interview p {
    font-size: 1.6rem;
  }
  .interview button {
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .interview {
    padding: 6rem 0;
  }
  .interview .content {
    padding: 3rem;
  }
  .interview span {
    font-size: 1.6rem;
  }
  .interview h2 {
    font-size: 3rem;
  }
  .interview p {
    font-size: 1.5rem;
  }
  .interview button {
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
}
/* From Us To You 섹션 반응형 */
@media (max-width: 992px) {
  .from-us-to-you h2 {
    font-size: 3.2rem;
  }
  .from-us-to-you .message-content .reminder {
    font-size: 1.8rem;
  }
  .from-us-to-you .message-content .description {
    font-size: 1.4rem;
  }
}
/* 팀 섹션 반응형 */
@media (max-width: 992px) {
  .team {
    padding: 8rem 0;
  }
  .team h2 {
    font-size: 4rem;
    margin-bottom: 0;
  }
  .team h3 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .team .member-card .member-info {
    padding: 1.5rem;
  }
  .team .member-card .member-info h4 {
    font-size: 1.6rem;
  }
  .team .member-card .member-info p {
    font-size: 1.3rem;
  }
  .team .team-description {
    margin-top: 4rem;
  }
  .team .team-description p {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .team {
    padding: 6rem 0;
  }
  .team h2 {
    font-size: 3.2rem;
  }
  .team h3 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
  .team .member-card .member-info {
    padding: 1.2rem;
  }
  .team .member-card .member-info h4 {
    font-size: 1.5rem;
  }
  .team .member-card .member-info p {
    font-size: 1.2rem;
  }
  .team .team-description {
    margin-top: 3rem;
  }
  .team .team-description p {
    font-size: 1.4rem;
  }
}
/* 앱 히어로 섹션 반응형 */
@media (max-width: 992px) {
  .app-hero {
    padding: 80px 0;
  }
  .app-hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .app-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
  .app-hero .hero-content p {
    font-size: 1.4rem;
  }
  .app-hero .hero-image .phone-container {
    max-width: 250px;
  }
  .app-hero .hero-image .phone-container .phone-img {
    margin-top: 6rem;
  }
}
@media (max-width: 768px) {
  .app-hero {
    padding: 60px 0;
  }
  .app-hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .app-hero .hero-content p {
    font-size: 1rem;
  }
  .app-hero .hero-content p br {
    display: none;
  }
  .app-hero .hero-image .phone-container {
    max-width: 200px;
  }
  .app-hero .hero-image .phone-container .bubble.bubble-1 {
    width: 40px;
    height: 40px;
  }
  .app-hero .hero-image .phone-container .bubble.bubble-2 {
    width: 35px;
    height: 35px;
  }
  .app-hero .hero-image .phone-container .bubble.bubble-3 {
    width: 38px;
    height: 38px;
  }
}
/* 앱 기능 섹션 반응형 */
@media (max-width: 992px) {
  .can-we-do {
    padding: 8rem 2rem;
  }
  .can-we-do .appTitle {
    font-size: 3.5rem;
    padding-bottom: 4rem;
  }
  .can-we-do .card1, .can-we-do .card2 {
    width: 100%;
    margin-bottom: 3rem;
  }
  .can-we-do .img-card {
    height: 300px;
  }
  .can-we-do h3 {
    font-size: 1.8rem;
    padding: 1.8rem 0 0.6rem 0;
  }
  .can-we-do p {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .can-we-do {
    padding: 6rem 1.5rem;
  }
  .can-we-do .appTitle {
    font-size: 3rem;
    padding-bottom: 3rem;
  }
  .can-we-do .img-card {
    height: 250px;
  }
  .can-we-do .img2 {
    width: 280px;
  }
  .can-we-do h3 {
    font-size: 1.6rem;
  }
  .can-we-do p {
    font-size: 1.4rem;
  }
}
/* 히스토리 섹션 반응형 */
@media (max-width: 992px) {
  .history {
    padding: 8rem 2rem;
    flex-direction: column;
  }
  .history .title h2 {
    font-size: 3.5rem;
    margin-bottom: 5rem;
    text-align: center;
  }
  .history .title h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .history .title p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
  .history img {
    margin-left: 0;
    width: 100%;
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .history {
    padding: 6rem 1.5rem;
  }
  .history .title h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
  .history .title h3 {
    font-size: 1.6rem;
  }
  .history .title p {
    font-size: 1.4rem;
  }
}
/* CTA 섹션 반응형 */
@media (max-width: 992px) {
  .app-cta {
    padding: 80px 0;
  }
  .app-cta h2 {
    font-size: 2rem;
  }
  .app-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .app-cta .btn-primary, .app-cta .btn-secondary {
    padding: 12px 25px;
  }
}
@media (max-width: 768px) {
  .app-cta {
    padding: 60px 0;
  }
  .app-cta h2 {
    font-size: 1.8rem;
  }
  .app-cta p {
    font-size: 1rem;
  }
  .app-cta .btn-primary, .app-cta .btn-secondary {
    display: block;
    margin: 0 auto 15px;
    max-width: 250px;
    padding: 10px 20px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Paperlogy";
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-1Thin.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-1Thin.woff") format("woff"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-1Thin.otf") format("opentype"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-1Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-2ExtraLight.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-2ExtraLight.woff") format("woff"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-2ExtraLight.otf") format("opentype"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-2ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-3Light.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-3Light.woff") format("woff"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-3Light.otf") format("opentype"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-3Light.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-4Regular.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-4Regular.woff") format("woff"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-4Regular.otf") format("opentype"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-4Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-5Medium.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-5Medium.woff") format("woff"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-5Medium.otf") format("opentype"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-5Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-6SemiBold.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-6SemiBold.woff") format("woff"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-6SemiBold.otf") format("opentype"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-6SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-7Bold.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-7Bold.woff") format("woff"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-7Bold.otf") format("opentype"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-7Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-8ExtraBold.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-8ExtraBold.woff") format("woff"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-8ExtraBold.otf") format("opentype"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-8ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-9Black.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-9Black.woff") format("woff"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-9Black.otf") format("opentype"), url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-9Black.ttf") format("truetype");
}
html {
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-family: "Paperlogy";
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.header .logo a {
  display: inline-block;
  transition: all 0.3s ease;
}
.header .logo a img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.header .logo a:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.container {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 1200px;
  margin: 0 auto;
}

.subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #5EAB92;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.title {
  font-size: 3.6rem;
  font-weight: 600;
  color: #1F2124;
  line-height: 1.4;
  text-align: center;
}

/* 모든 섹션에 공통으로 적용되는 스타일 */
.sec01, .sec02, .sec03, .sec04, .sec05, .sec06, .sec07 {
  padding: 10rem 0;
  height: -moz-fit-content;
  height: fit-content;
}

/* 모든 섹션의 컨테이너 높이도 fit-content로 통일 */
.sec01 .container, .sec02 .container, .sec03 .container, .sec04 .container,
.sec05 .container, .sec06 .container, .sec07 .container {
  height: -moz-fit-content;
  height: fit-content;
}

.subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #5EAB92;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.banner-content .title-left {
  width: 100%;
  align-self: flex-start;
}

.main-img-container {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

.main-img {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
.main-img img {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.main-img .contact-button {
  position: absolute;
  bottom: 2%;
  right: 0%;
  margin: 0;
  padding: 0;
}
.main-img .contact-button a {
  color: #fff;
  font-size: 2.2rem;
  padding: 2.2rem 5.6rem;
  border-radius: 32px;
  background-color: #2C3136;
  display: inline-block;
  white-space: nowrap;
}
.main-img .contact-button a:hover {
  background-color: #2a6565;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

@media (max-width: 1280px) {
  .sec01 .contact-button .btn {
    padding: 1.8rem 4.7rem;
  }
}
@media (max-width: 1024px) {
  .sec01 .contact-button .btn {
    font-size: 1.8rem;
    padding: 1.4rem 3.6rem;
  }
}
@media (max-width: 768px) {
  .sec01 .sec01-title span {
    left: 35%;
    bottom: 25%;
  }
}
@media (max-width: 576px) {
  .sec01 .sec01-title h1 {
    font-size: 4rem;
  }
  .sec01 .sec01-title span {
    width: -moz-fit-content;
    width: fit-content;
    right: 0;
    bottom: 20%;
  }
  .sec01 .sec01-title img {
    width: 84%;
    bottom: 70%;
  }
}
.title-left {
  text-align: left;
  width: 100%;
}
.title-left h1 {
  text-align: left;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2C3136;
}

.sec01 .container {
  width: 80%;
}

.sec01-title {
  position: relative;
  justify-content: left;
  margin-bottom: 30px;
  top: 0%;
  display: flex;
}
.sec01-title h1 {
  text-align: left;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #2C3136;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.sec01-title .poketa-logo {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  bottom: 35px;
}
.sec01-title img {
  position: relative;
  height: 6rem;
}
.sec01-title span {
  background-color: #D9E694;
  position: relative;
  height: 40px;
  right: 46%;
}

.pt-50 {
  margin-top: 50px;
}

.sec02 .title h2 {
  font-weight: 600;
  color: #1F2124;
  line-height: 1.4;
}
.sec02 .title span {
  background-color: #D9E694;
  padding: 0 10px;
}

/* ==========================================================================
SECTION 02 - 소개 섹션
========================================================================== */
.sec02 .title {
  text-align: center;
  margin-bottom: 3rem;
}
.sec02 h2 {
  margin-bottom: 0;
}

.sec02-videos .video-item {
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 40rem;
}
.sec02-videos .video-item:not(.active) .video-wrapper video {
  filter: blur(3px) brightness(0.9);
  transition: filter 0.3s ease;
}
.sec02-videos .video-item.active .video-wrapper {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.sec02-videos .video-item.active .video-wrapper video {
  filter: blur(0) brightness(1);
}
@media (max-width: 991px) {
  .sec02-videos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
    gap: 1rem;
  }
  .sec02-videos .video-item {
    min-width: 80%;
    flex: 0 0 auto;
    margin-right: 1rem;
  }
  .sec02-videos .video-item.active {
    min-width: 90%;
    order: -1;
  }
}
.sec02-videos .video-wrapper {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec02-videos video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
  transition: transform 0.3s ease;
  display: block;
  min-height: 100%;
}
.sec02-videos .first-image img,
.sec02-videos .last-image img {
  opacity: 0.4;
}
.sec02-videos .main-image img {
  width: 100%;
  height: 40rem;
  z-index: 2;
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .sec02-videos .image-card {
    width: 100%;
    margin-bottom: 2rem;
  }
  .sec02-videos img {
    height: 30rem;
    opacity: 1;
  }
  .sec02-videos .first-image img,
  .sec02-videos .last-image img {
    height: 30rem;
    opacity: 1;
  }
  .sec02-videos .main-image img {
    height: 35rem;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .sec02-videos img {
    height: 250px;
  }
  .sec02-videos .main-image img {
    height: 280px;
  }
  .sec02-videos .first-image img,
  .sec02-videos .last-image img {
    opacity: 0.7;
  }
}
@media (max-width: 576px) {
  .sec02-videos img {
    height: 220px;
  }
  .sec02-videos .main-image img {
    height: 250px;
    transform: none;
  }
  .sec02-videos .first-image img,
  .sec02-videos .last-image img {
    opacity: 1;
  }
}

.text-left {
  text-align: left;
}

.sec02 .title {
  text-align: center;
}

.sec03 .container {
  height: -moz-fit-content;
  height: fit-content;
}
.sec03 .title {
  text-align: center;
  align-items: center;
}
.sec03 h2 {
  font-weight: 600;
  color: #1F2124;
  margin-bottom: 7rem;
}
.sec03 .card-container {
  margin-top: 1rem;
}
.sec03 .product-card {
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  border: 1px solid #DFE4EA;
}
.sec03 .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.sec03 .product-card .card-img-top {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec03 .product-card .card-body {
  padding: 3.2rem 2.4rem;
}
.sec03 .product-card .card-title {
  font-weight: 600;
  color: #1F2124;
  margin-bottom: 1.4rem;
}
.sec03 .product-card .card-text {
  line-height: 1.5;
}
.sec03 .product-card h4 {
  font-size: 2rem;
}
.sec03 .product-card .card-text {
  font-size: 1.3rem;
  color: #7B848D;
  line-height: 1.6;
  font-weight: 500;
}

/* ==========================================================================
DATA SECTION - 데이터 섹션
========================================================================== */
.data-section {
  background-color: #e0ede0;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.data-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='pattern' width='40' height='40' viewBox='0 0 40 40' patternUnits='userSpaceOnUse' patternTransform='rotate(45)'%3E%3Crect width='100%25' height='100%25' fill='%23e0ede0'/%3E%3Ccircle cx='20' cy='20' r='1' fill='%235EAB92' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23pattern)'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}
.data-section .title {
  margin-bottom: 6.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.data-section .row {
  position: relative;
  z-index: 1;
}
.data-section .card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.data-section .card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(94, 171, 146, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s ease;
}
.data-section .card:hover, .data-section .card.dot-hovered {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(94, 171, 146, 0.2);
}
.data-section .card:hover::before, .data-section .card.dot-hovered::before {
  opacity: 1;
  transform: scale(1);
}
.data-section .card:hover .black-dot, .data-section .card.dot-hovered .black-dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
}
.data-section .card:hover h2, .data-section .card.dot-hovered h2 {
  color: #5EAB92;
  transform: translateY(-5px);
}
.data-section .card:hover p, .data-section .card.dot-hovered p {
  transform: translateY(-3px);
}
.data-section .card:hover::after, .data-section .card.dot-hovered::after {
  opacity: 1;
}
.data-section .card .display-5 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
.data-section .card h2 {
  margin-bottom: 1.4rem;
  margin-top: 7rem;
  font-weight: 700;
  font-size: 3.8rem;
  color: #1F2124;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.data-section .card h2::after {
  content: attr(data-suffix);
  font-size: 2.6rem;
  color: #5EAB92;
  position: relative;
  top: -0.5rem;
  margin-left: 0.2rem;
  opacity: 0.8;
}
.data-section .card p {
  color: #7B848D;
  font-size: 1.8rem;
  margin-bottom: 4.2rem;
  transition: all 0.3s ease;
  position: relative;
}
.data-section .card .card-detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}
.data-section .card .card-detail h4 {
  color: #5EAB92;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
}
.data-section .card .card-detail p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}
.data-section .card .card-detail .detail-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: #aaa;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.data-section .card .card-detail .detail-close:hover {
  color: #333;
  background-color: rgba(0, 0, 0, 0.05);
}
.data-section .card .card-body.show-detail .card-detail {
  transform: translateY(0);
  opacity: 1;
}
.data-section .card .bg-dark {
  background-color: #333 !important;
}
.data-section .card .dot-container {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1;
}
.data-section .card .black-dot {
  width: 24px;
  height: 24px;
  background-color: #000;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.data-section .card .black-dot .dot-icon {
  color: white;
  font-style: italic;
  font-weight: bold;
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.data-section .card .black-dot:hover .dot-icon {
  opacity: 1;
  transform: scale(1.1);
}
.data-section .card .black-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s ease;
}
.data-section .card .black-dot:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.data-section .counting-animation {
  animation: countUp 2s ease-out forwards;
  display: inline-block;
}
@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .data-section .card {
    margin-bottom: 1.5rem;
  }
  .data-section .section-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
SECTION 04 - 앱 소개 섹션
   ========================================================================== */
.sec04 {
  /* 패딩은 공통 스타일로 이동됨 (3rem) */
  background: linear-gradient(to Top, #EEEEEE, #FFFFFF);
}
.sec04 .container {
  height: -moz-fit-content;
  height: fit-content;
}
.sec04 .sec04-image-container {
  position: relative;
  overflow: hidden;
}
.sec04 .sec04-image-container img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  display: block;
}
.sec04 .title {
  font-size: 4rem;
  font-weight: 600;
  color: #1F2124;
  line-height: 1.4;
  margin-bottom: 4rem;
  text-align: left;
}
.sec04 .subtitle {
  text-align: left;
}
.sec04 .description {
  font-size: 1.5rem;
  width: 80%;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #7B848D;
  margin-bottom: 6.7rem;
}
.sec04 .cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.sec04 .cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #D5E7D9;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}
.sec04 .cta span {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #277058;
  display: inline-block;
  vertical-align: middle;
}
.sec04 .cta i {
  position: relative;
  font-size: 2rem;
  color: #277058;
  margin-left: 0.6rem;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}
.sec04 .cta:hover:before {
  width: 100%;
  background: #D5E7D9;
}
.sec04 .cta:hover i {
  transform: translateX(0);
}
.sec04 .cta:active {
  transform: scale(0.95);
}

@media (max-width: 991px) {
  .sec04 .sec04-content {
    margin-top: 6rem;
    padding-left: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .sec04 .sec04-content .description {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .sec04 .sec04-content .title {
    text-align: center;
  }
  .sec04 .sec04-content .subtitle {
    text-align: center;
  }
  .sec04 .sec04-image-container {
    display: none;
  }
  .sec04 .sec04-image-container .sec04-img img {
    display: none;
  }
}
.sec05 {
  /* 패딩은 공통 스타일로 이동됨 (3rem) */
}
.sec05 .container {
  height: -moz-fit-content;
  height: fit-content;
}
.sec05 .title {
  font-size: 4.2rem;
  font-weight: 600;
  color: #1F2124;
  line-height: 1.4;
  margin-bottom: 5.7rem;
}
.sec05 .belief-cards {
  margin-top: 2rem;
}
.sec05 .belief-card {
  position: relative;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  min-height: 200px;
  background-color: #f8f9fa;
  overflow: hidden;
  transition: all 0.3s ease;
}
.sec05 .belief-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1F2124;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}
.sec05 .belief-card p {
  font-size: 1.6rem;
  color: #7B848D;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}
.sec05 .belief-card .card-content {
  position: relative;
  z-index: 2;
}
.sec05 .belief-card .card-bg-effect {
  position: absolute;
  left: 30%;
  top: 10%;
  width: 90%;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}
.sec05 .belief-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.sec05 .belief-card:hover .card-bg-effect {
  transform: scale(1.2);
}
.sec05 .belief-card-blue {
  background-color: #F4F9FF;
  border: 1px solid #c7d1dd;
}
.sec05 .belief-card-blue .card-bg-effect img {
  width: 100%;
  height: 100%;
}
.sec05 .belief-card-green {
  background-color: #f7fff5;
  border: 1px solid #b5d5b1;
}
.sec05 .belief-card-green .card-bg-effect {
  left: 55%;
  top: -60%;
  width: 75%;
}
.sec05 .belief-card-green .card-bg-effect img {
  width: 100%;
  height: 100%;
}
.sec05 .belief-card-yellow {
  background-color: #FFFDF5;
  border: 1px solid #d5ccb1;
}
.sec05 .belief-card-yellow .card-bg-effect {
  left: 45%;
  top: -25%;
  width: 75%;
}
.sec05 .belief-card-yellow .card-bg-effect img {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .sec05 .title {
    font-size: 3.6rem;
  }
  .sec05 .belief-card {
    padding: 30px 25px;
  }
}
@media (max-width: 768px) {
  .sec05 {
    padding: 60px 0;
  }
  .sec05 .title {
    font-size: 3.2rem;
  }
  .sec05 .belief-card {
    margin-bottom: 20px;
  }
  .sec05 .belief-card h3 {
    font-size: 2.2rem;
  }
  .sec05 .belief-card p {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .sec05 {
    padding: 40px 0;
  }
  .sec05 .title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .sec05 .belief-card {
    padding: 25px 20px;
  }
  .sec05 .belief-card h3 {
    font-size: 2rem;
  }
  .sec05 .belief-card p {
    font-size: 1.4rem;
  }
  .sec05 .belief-card .card-bg-effect {
    width: 150px;
    height: 150px;
  }
}
.mb-6 {
  margin-bottom: 6rem;
}

/* ==========================================================================
SECTION 06 - 스토리 섹션
   ========================================================================== */
.sec06 {
  /* 패딩은 공통 스타일로 이동됨 (3rem) */
  background-color: #D5E7D9;
}
.sec06 .container {
  height: -moz-fit-content;
  height: fit-content;
}
.sec06 .story-image {
  position: relative;
}
.sec06 .story-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.sec06 .story-content {
  padding-left: 13rem;
}
.sec06 .story-content .title {
  font-size: 4.2rem;
  font-weight: 600;
  color: #1F2124;
  margin-bottom: 2.5rem;
  text-align: left;
}
.sec06 .story-content .description {
  font-size: 1.8rem;
  color: #3A4046;
  line-height: 1.6;
  text-align: left;
}
.sec06 .story-content .cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.sec06 .story-content .cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #bad5c0;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}
.sec06 .story-content .cta span {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #277058;
}
.sec06 .story-content .cta i {
  position: relative;
  font-size: 2rem;
  color: #277058;
  top: 0;
  margin-left: 0.6rem;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}
.sec06 .story-content .cta:hover:before {
  width: 100%;
  background: #bad5c0;
}
.sec06 .story-content .cta:hover i {
  transform: translateX(0);
}
.sec06 .story-content .cta:active {
  transform: scale(0.95);
}

@media (max-width: 992px) {
  .sec06 .story-content {
    padding-left: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .sec06 .story-content .title {
    text-align: center;
  }
  .sec06 .story-content .description {
    text-align: center;
    opacity: 0.7;
  }
  .sec06 .story-content p {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ==========================================================================
SECTION 07 - 후기 섹션
   ========================================================================== */
.sec07 {
  /* 패딩은 공통 스타일로 이동됨 (3rem) */
  background-color: #F9F9F9;
  /* 제목 스타일 */
}
.sec07 .container {
  height: -moz-fit-content;
  height: fit-content;
}
.sec07 .title {
  font-size: 4.2rem;
  font-weight: 600;
  color: #1F2124;
  line-height: 1.4;
  margin-bottom: 5rem;
}
.sec07 .testimonial-container {
  position: relative;
}
.sec07 .testimonial-item {
  transition: all 0.5s ease;
  cursor: pointer;
  overflow: hidden;
  height: 500px;
}
.sec07 .testimonial-item:not(.active) .testimonial-card {
  filter: blur(2px);
  opacity: 0.7;
}
.sec07 .testimonial-item:not(.active):hover .testimonial-card {
  filter: blur(1px) brightness(0.95);
}
.sec07 .testimonial-item.active .testimonial-bubble {
  transform: translateY(0);
}
.sec07 .testimonial-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 100%;
  max-height: 500px;
  transition: all 0.5s ease;
}
.sec07 .testimonial-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.sec07 .testimonial-bubble {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 0 0 12px 12px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.sec07 .user-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.sec07 .user-info .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.sec07 .user-info .user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec07 .user-info .user-name {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2C3136;
}
.sec07 .testimonial-text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  color: #3A4046;
}
@media (max-width: 991px) {
  .sec07 {
    padding: 80px 0;
    /* 첫 번째 리뷰는 991px부터 안 보이게 설정 */
    /* 두 번째 카드 이미지 위치 조정 */
    /* 991px 이하에서는 모든 카드에 블러 효과 제거 */
    /* 991px 이하에서는 모든 리뷰가 기본적으로 보이도록 설정 */
    /* 이미지에도 블러 효과 제거 */
    /* 활성화 여부와 상관없이 모든 카드의 리뷰 표시 */
    /* 추가 - 리뷰 카드 전체 스타일 재정의 */
  }
  .sec07 .title {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
  .sec07 #testimonial-1 {
    display: none !important;
  }
  .sec07 #testimonial-2 img {
    -o-object-position: center top !important;
       object-position: center top !important; /* 사진의 위쪽 부분을 보이게 설정 */
    -o-object-fit: cover !important;
       object-fit: cover !important;
    height: 100% !important;
  }
  .sec07 .testimonial-item {
    margin-bottom: 20px;
    height: 30rem;
  }
  .sec07 .testimonial-card {
    filter: none !important;
    opacity: 1 !important;
    height: 50rem;
    display: flex !important;
    flex-direction: column !important;
  }
  .sec07 .testimonial-bubble {
    transform: none !important;
    position: static !important;
    background: #fff;
    display: block !important;
    margin-top: 10px !important;
    height: auto !important;
    visibility: visible !important;
  }
  .sec07 img {
    filter: none !important;
    opacity: 1 !important;
    max-height: 200px !important;
  }
  .sec07 .testimonial-item:not(.active) .testimonial-bubble {
    transform: none !important;
    display: block !important;
    visibility: visible !important;
  }
  .sec07 .testimonial-item, .sec07 .testimonial-card {
    overflow: visible !important;
  }
}
@media (max-width: 767px) {
  .sec07 {
    padding: 60px 0;
  }
  .sec07 .title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .sec07 .testimonial-item {
    width: 100%;
  }
  .sec07 .testimonial-item.active,
  .sec07 .testimonial-item:not(.active) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .sec07 {
    padding: 40px 0;
  }
  .sec07 .title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
}

.sec-faq {
  height: -moz-fit-content;
  height: fit-content;
  background-color: #D5E7D9;
  padding: 8rem 0;
}
.sec-faq .container {
  height: -moz-fit-content;
  height: fit-content;
}
.sec-faq h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #1F2124;
  line-height: 1.4;
}
.sec-faq span {
  font-size: 2rem;
  font-weight: 600;
}
.sec-faq p {
  opacity: 0.7;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 1.4rem;
}
.sec-faq .accordion-item {
  border: none;
  margin-bottom: 1rem;
  background-color: transparent;
}
.sec-faq .accordion-button {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 1rem 0;
  font-weight: 500;
  color: #1F2124;
  text-align: left;
}
.sec-faq .accordion-button:focus {
  box-shadow: none;
  border-color: #999;
}
.sec-faq .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #1F2124;
}
.sec-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
}
.sec-faq .accordion-body {
  padding: 0.5rem 0 1.5rem;
  color: #1F2124;
  font-size: 1.4rem;
  line-height: 1.6;
}
.sec-faq .accordion-body p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sec-faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .sec-faq .accordion-button {
    font-size: 1.4rem;
  }
}

.modal {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}
.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem 2.5rem;
  background-color: #ffffff;
}
.modal-header .modal-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0;
  margin-top: 2rem;
  color: #333333;
  line-height: 1.3;
}
.modal-header .modal-title br + span {
  color: #5EAB92;
  font-weight: 600;
}
.modal-header .btn-close {
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.modal-header .btn-close::before, .modal-header .btn-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #333;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease;
}
.modal-header .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-header .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.modal-header .btn-close:hover::before, .modal-header .btn-close:hover::after {
  background-color: #5EAB92;
}
.modal-body {
  padding: 2.5rem;
}
.modal-body .form-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
}
.modal-body .form-control {
  height: 5.2rem;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  box-shadow: none;
}
.modal-body .form-control:focus {
  border-color: #5EAB92;
  box-shadow: 0 0 0 3px rgba(94, 171, 146, 0.15);
  background-color: #fff;
}
.modal-body .form-control::-moz-placeholder {
  color: #aaa;
  font-size: 1.5rem;
}
.modal-body .form-control::placeholder {
  color: #aaa;
  font-size: 1.5rem;
}
.modal-body textarea.form-control {
  height: auto;
  min-height: 12rem;
  resize: none;
}
.modal-body .mb-3 {
  margin-bottom: 2rem;
  position: relative;
}
.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
}
.modal-footer .btn-secondary {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  color: #666;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.2rem 2.4rem;
  transition: all 0.3s ease;
}
.modal-footer .btn-secondary:hover {
  background-color: #f0f0f0;
  color: #333;
}
.modal-footer button:not(.btn-secondary) {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  background: linear-gradient(135deg, #5EAB92, #4A9980);
  color: white;
  padding: 1.2rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(94, 171, 146, 0.3);
}
.modal-footer button:not(.btn-secondary):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 171, 146, 0.4);
}
.modal-footer button:not(.btn-secondary):active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(94, 171, 146, 0.3);
}
.modal-footer button:not(.btn-secondary) span {
  display: inline-block;
  margin-left: 1rem;
  font-weight: 600;
}
.modal-footer button:not(.btn-secondary) .svg-wrapper-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-footer button:not(.btn-secondary) .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.modal-footer button:not(.btn-secondary) svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.modal-footer button:not(.btn-secondary):hover .svg-wrapper {
  animation: float 1s ease-in-out infinite alternate;
}
.modal-footer button:not(.btn-secondary):hover svg {
  transform: rotate(-10deg);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}
@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }
  to {
    transform: translateY(-0.1em);
  }
}
.modal-footer {
  border-top: 1px solid #eee;
  padding: 2.4rem;
}
.modal-footer .btn {
  font-size: 1.4rem;
  padding: 1.2rem 2.4rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.modal-footer .btn-secondary {
  background-color: #f1f1f1;
  color: #333;
  border: none;
}
.modal-footer .btn-secondary:hover {
  background-color: #e5e5e5;
}
.modal-footer #sendMessageBtn {
  background: linear-gradient(135deg, #5EAB92, #398989);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(94, 171, 146, 0.3);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
}
.modal-footer #sendMessageBtn .svg-wrapper-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.modal-footer #sendMessageBtn:hover {
  background-color: #2a6565;
  transform: translateY(-2px);
}

.footer {
  background-color: #1F2124;
  color: #fff;
  padding: 5rem 0 2rem;
}
.footer .container {
  height: -moz-fit-content;
  height: fit-content;
}
.footer .footer-logo {
  max-width: 50px;
  height: auto;
  margin-bottom: 1rem;
}
.footer .container {
  height: -moz-fit-content;
  height: fit-content;
}
.footer h5 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.footer .footer-tagline {
  font-size: 1.2rem;
  color: #AAAAAA;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.footer .footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 0.8rem;
}
.footer .footer-links a {
  color: #AAAAAA;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.footer .footer-links a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.footer .footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #333333;
}
.footer .footer-bottom .copyright {
  font-size: 0.9rem;
  color: #777777;
  margin-bottom: 0;
}
.footer .footer-bottom .social-links {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-bottom .social-links li {
  margin-left: 1rem;
}
.footer .footer-bottom .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color 0.3s ease;
}
.footer .footer-bottom .social-links li a img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.footer .footer-bottom .social-links li a:hover {
  background-color: #555555;
}
@media (max-width: 991px) {
  .footer #testimonial-2 .testimonial-card img {
    -o-object-position: center 60%;
       object-position: center 60%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
  .footer .footer-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .footer .social-links {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
  .footer .social-links li {
    margin-left: 0;
    margin-right: 1rem;
  }
  .footer .footer-bottom {
    text-align: center;
  }
  .footer .footer-bottom .copyright {
    margin-bottom: 1rem;
  }
  .footer .footer-bottom .social-links {
    justify-content: center;
  }
}