@import url("../scss/common.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
.top_cover {
  width: 100%;
  height: 300px;
  background: url("../images/banner00.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.top_cover .top {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}
.top_cover .top_cover_title {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}
.top_cover .top_cover_text {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  margin-top: 15px;
  line-height: 1.5;
}
.top_cover .bg_cover_black {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .top_cover {
    height: 400px;
  }
  .top_cover .top_cover_title {
    font-size: 3rem;
  }
  .top_cover .top_cover_text {
    font-size: 1.1rem;
  }
}
@media (min-width: 992px) {
  .top_cover {
    height: 500px;
    background-attachment: fixed;
  }
  .top_cover .top_cover_title {
    font-size: 3.5rem;
  }
  .top_cover .top_cover_text {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .top_cover {
    height: 600px;
  }
}

section {
  padding: 6rem 0;
}
section .section-title {
  position: relative;
  margin-bottom: 4rem;
  text-align: center;
}
section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
section .section-title .divider {
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 0 auto;
}

.section01 .team-member {
  margin-bottom: 30px;
  text-align: center;
}
.section01 .team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section02 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("assets/images/numbers-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 5rem 0;
}
.section02 .section-title {
  color: #fff;
}
.section02 .number-item {
  text-align: center;
  padding: 2rem;
}
.section02 .number-item h3 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section03 {
  padding: 100px 0;
  background-color: #f8f9fa;
}
.section03 .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section03 .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.section03 .title-line {
  width: 60px;
  height: 2px;
  background-color: #5E8B7E;
  margin: 0 auto 20px;
}
.section03 .section-desc {
  font-size: 1.1rem;
  color: #666;
}
.section03 .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.section03 .philosophy-card {
  padding: 40px 30px;
  background-color: white;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}
.section03 .philosophy-card:hover {
  transform: translateY(-10px);
}
.section03 .philosophy-icon {
  margin-bottom: 25px;
}
.section03 .philosophy-icon svg {
  transition: transform 0.3s ease;
}
.section03 .philosophy-card:hover .philosophy-icon svg {
  transform: scale(1.1);
}
.section03 .philosophy-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.section03 .philosophy-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.section04 {
  padding: 100px 0;
  background-color: #f8f9fa;
}
.section04 .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section04 .section-title {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section04 .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 20px;
}
.section04 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.section04 .gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
}
.section04 .gallery-card:hover {
  transform: translateY(-10px);
}
.section04 .gallery-image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.section04 .gallery-card:hover .gallery-image {
  transform: scale(1.05);
}
.section04 .gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}
.section04 .gallery-card:hover .gallery-content {
  transform: translateY(0);
  opacity: 1;
}
.section04 .gallery-title {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.section04 .gallery-category {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.section04 .gallery-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.section04 .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: transparent;
  color: #222;
  border: 2px solid #222;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.section04 .cta-button:hover {
  background: #8E8675;
  border: 2px solid #8E8675;
  color: white;
}
.section04 .cta-button svg {
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.section04 .cta-button:hover svg {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .section03 .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .section04 .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .section01 h3 {
    font-size: 48px;
  }
  .section01 h3 h4 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section01 {
    padding: 120px 0 80px;
  }
  .section01 .row .col-md-12 h3 {
    font-size: 58px;
  }
  .section01 h3 {
    font-size: 36px;
  }
  .section01 h4 {
    font-size: 24px;
  }
  .section03 .philosophy-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .section04 .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 576px) {
  .section01 h3 {
    font-size: 28px;
  }
  .section01 h4 {
    font-size: 20px;
  }
  .section01 .row .col-md-12 h3 {
    font-size: 44px;
  }
  .section01 .bg-light .col-lg-6 p {
    font-size: 15px;
  }
  .philosophy .gap {
    gap: 20px;
  }
}
@media (max-width: 431px) {
  .section01 .row {
    padding-top: 70px;
  }
  .section01 .row .bar {
    left: 8%;
    top: -95px;
  }
  .section01 .row .col-md-12 h4 {
    font-size: 22px;
  }
}
@media (max-width: 390px) {
  .section01 .row .col-md-12 h3 {
    font-size: 35px;
  }
}/*# sourceMappingURL=Brand.css.map */