@charset "utf-8";

@import "reset.css";
@import "setup.css";
@import "layout.css";
@import "webfont.css";

/* color */
.clr-0 { #1f2937;}
.clr-1 { #ff2d75;}
.clr-2 { #ffaac7;}
.clr-3 { #f4eded;}
.clr-4 { #beedef;}
.clr-5 { #6c88a4;}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jua&family=Noto+Sans+KR:wght@400;700&display=swap');

/* layout */
body {
  position: relative;
  height: 100vh;
  -webkit-text-size-adjust: none;
  min-width: 360px;
  user-select: none;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'GmarketSansMedium';
  color: #444;
}

.bg-white-100 {
  background-color: #fff;
}

.bg-gray-100 {
  background-color: #f7f7f7;
}

main {
  max-width: 1200px; 
  margin: 0 auto; 
}

section {
  position: relative;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

@media (max-width: 600px) {
  section {
    padding-top: 1rem;
  }
}

/* =========================
    공통 네비게이션 스타일
========================= */
nav { 
  position: relative;
  background: #fff; 
  border-bottom: 1px solid #ddd; 
  /* position: fixed; 
  width: 100%;  */
  max-width: 1200px; 
  margin: 0 auto; 
  top: 0; 
  left: 0; 
  z-index: 1000; 
}

.nav-container { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 10px 10px; 
}

.nav-cont {
  padding: 10px 0px; 
}

.brand img { 
  display: block; 
  height: 40px; 
}

.menu { 
  display: flex; 
  gap: 20px; 
}

.menu a { 
  text-decoration: none; 
  color: #333; 
  font-weight: bold; 
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  justify-content: space-between; 
  width: 25px; 
  height: 20px; 
  cursor: pointer; 
  z-index: 1101; 
}

.hamburger span { 
  display: block; 
  height: 3px; 
  background: #333; 
  border-radius: 2px; 
  transition: all 0.4s ease; 
}

/* 햄버거 X 모양 수정 */
.hamburger.active span:nth-child(1) { 
  transform: rotate(45deg) translate(5px, 5px); 
}

.hamburger.active span:nth-child(2) { 
  opacity: 0; 
  transform: translateX(-20px); 
}

.hamburger.active span:nth-child(3) { 
  transform: rotate(-45deg) translate(5px, -5px); 
}

/* 모바일 메뉴 & 배경 */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1100 ;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.show {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  transition: right 0.3s ease;
  z-index: 1102;
}

.mobile-menu a {
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
  font-weight: bold;
}

.mobile-menu.show { right: 0; }

@media (max-width: 768px) {
  .menu { display: none; }
  .hamburger { display: flex; }
}

.nav-title {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}

/* Lucide */
.icon-box {
  position: absolute;
  left: 0; 
  display: flex;
  align-items: center;
}

i[data-lucide] {
  width: 24px;  
  height: 24px;
  color: #333; 
  border: 1px solid blue;
}

.icon-lg svg[data-lucide] {
  width: 48px;
  height: 48px;
}

.icon-md svg[data-lucide] {
  width: 36px;
  height: 36px;
}

.icon-sm svg[data-lucide] {
  width: 16px;
  height: 16px;
}

/* 스크롤 시 그림자 */
.scrolled nav { box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

/* =========================
    text-area 스타일
========================= */
.text-area {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px; 
  line-height: 1.6; 
  text-align: center;
}

.text-shadow {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* text 크기 */
.text-xxl {
  font-size: clamp(2rem, 3vw + 1rem, 4rem); /* 약 32px ~ 64px */
  font-weight: 900;
  line-height: 1.05;
  color: #121212;
  
  margin: 0;
  word-break: keep-all;
  letter-spacing: -0.02em;
}

.text-xl {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2.5rem); /* 24px ~ 40px */
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  word-break: keep-all;
  /* font-family: 'Jua', sans-serif; */
}

.text-lg {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem); /* 16px ~ 24px */
  font-weight: 600;
  line-height: 1.25;
  color: #253036;
  margin: 0;
}

.text-p {
  font-size: clamp(1rem, 1.2vw + 0.2rem, 1.2rem); /* 16px ~ 19.2px */
  font-weight: 400;
  line-height: 1.6;
  color: #444;
  margin: 0;
  hyphens: auto;
}

.text-sm {
  font-size: clamp(0.875rem, 0.9vw + 0.1rem, 1rem); /* 14px ~ 16px */
  font-weight: 400;
  line-height: 1.4;
  color: #6b6b6b;
  margin: 0;
}

@media (max-width: 420px) {
  .text-p { line-height: 1.55; }
  .text-sm { line-height: 1.45; }
}

/* text 색상 */
.text-pink {
  color: #ff2d75;
}

.text-pink-1 {
  color: #fa045a;
}

.text-lightpink {
  color: #f83c7e;
}
 

.text-green {
  color: #008536;
}

.text-blue {
  color: #0c56b2;
}

.text-lightblue {
  color: #d2f9f9;
}

.text-bluegray {
  color: #6c88a4;
}

.text-gray {
  color: #555; 
}

.text-darkgray {
  color: #333; 
}

.text-orange {
  color: #ff7a00;
}

.text-brown {
  color: #d84315;
}

/* =========================
    gnb 스타일
========================= */
.gnb {
  background-color: #fff;
}

.gnb-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  box-sizing: border-box;
}

.gnb-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 100px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.gnb-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.gnb-item:active {
  transform: translateY(-2px);
}

.gnb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
}

.gnb-text {
  font-weight: 700;
  font-size: 16px;
  color: #222;
  letter-spacing: -0.02em;
}

.gnb-item.pink .gnb-icon {
  background: #ff4da6;
  box-shadow: 0 6px 16px rgba(255, 77, 166, 0.16);
}
.gnb-item.pink {
  border: 2px solid rgba(255, 77, 166, 0.1);
}

.gnb-item.purple .gnb-icon {
  background: #8a63ff;
  box-shadow: 0 6px 16px rgba(138, 99, 255, 0.16);
}
.gnb-item.purple {
  border: 2px solid rgba(138, 99, 255, 0.1);
}

.gnb-item.green .gnb-icon {
  background: #3cc47a;
  box-shadow: 0 6px 16px rgba(60, 196, 122, 0.16);
}
.gnb-item.green {
  border: 2px solid rgba(60, 196, 122, 0.1);
}

.gnb-item.violet .gnb-icon {
  background: #6b42ff;
  box-shadow: 0 6px 16px rgba(107, 66, 255, 0.16);
}
.gnb-item.violet {
  border: 2px solid rgba(107, 66, 255, 0.1);
}

@media (max-width: 600px) {
  .gnb-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .gnb-item {
    min-height: 90px;
    padding: 14px;
  }
  .gnb-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .gnb-text {
    font-size: 14px;
  }
}

/* =========================
    card 스타일
========================= */
.cards-container {
  /* padding: 0 20px; */
  box-sizing: border-box;
  /* margin-top: 40px; */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
  height: 100%;
  box-sizing: border-box;
}

.card-text h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin: 0;
  font-weight: 700;
}

.card-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 4px;
  opacity: 0.9;
}

/* Lucide → 버튼 */
.card-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.card-arrow i {
  width: 22px;
  height: 22px;
  color: #fff;
}

.card:hover .card-arrow {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* =========================
    section 스타일
========================= */
section.gnb {
  padding-top: 3rem;
}

section.content {
  /* padding-top: 3rem; */
}

section.sect-w {
  width: 100%;
  max-width: 1200px;
  margin: 1rem auto 1rem;
  /* margin: 0 auto; */
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

@media (max-width: 600px) {
  section.sect-w {
    margin-top: 0;
  }

  section.sect-w-1, section.sect-w-2, section.sect-w-3 {
    margin-top: 1rem;
  }
}


.sect-w.sect-img {
  /* aspect-ratio: 2 / 1; */
  /* aspect-ratio: 16 / 9; */
}

.sect-w.sect-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sect-w.sect-w-1 {
  background-color: #fff8c9;
  
}

.sect-w.sect-w-2 {
  background-color: #e2fcfb;

}

.sect-w.sect-w-3 {
  background-color: #212737;
  
}

.sect-w.sect-w-4 {
  background-color: #ffeeef;
}

.sect-w.sect-w-5 {
  background-color: #fffae8;
}

.sect-w.sect-w-6 {
  background-color: #fffae8;
}

/* 🐾 살짝 움직이는 포인트 배경 효과 */
.section.sect-w.sect-w-1::before {
  content: "🐾";
  position: absolute;
  top: 50px;
  left: 10%;
  font-size: 2rem;
  opacity: 0.6;
  animation: pawMove 4s infinite alternate ease-in-out;
}

.section.sect-w.sect-w-1::after {
  content: "🐶";
  position: absolute;
  top: 120px;
  right: 10%;
  font-size: 2rem;
  opacity: 0.6;
  animation: pawMove 5s infinite alternate-reverse ease-in-out;
}

@keyframes pawMove {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

/* =========================
    sect-container 스타일
========================= */
.sect-container {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

/* 상단 해시태그 */
.top-hashtag {
  font-size: clamp(0.875rem, 1.8vw, 1.25rem);    
  color: #444;
  margin-bottom: 30px;
}

/* tag-list 스타일 */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.tag {
  background-color: #fff;
  color: #333;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #a2d6d4;
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* =========================
    sub page 스타일
========================= */
.section.sect-sub {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
  background-color: #f9f9f9;
}

.minfo {
  margin-top: 40px;
}
.minfo h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.minfo p {
  margin-bottom: 40px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  color: #555;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff6b81;
  margin-bottom: 12px;
}

.product-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section.sect-sub {
    padding: 30px 16px;
  }

  .product-item h4 {
    font-size: 1.1rem;
  }

  .product-item p {
    font-size: 0.95rem;
    margin-bottom: 0px;
  }
} 

/* ==============================
    birth-banner 스타일
============================== */
.birth-banner { 
  background: url('../img/bnr-birth.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 20px; 
  position: relative;
  color: #ffffff; 
  min-height: 400px; 
}

.birth-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.sect-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2; 
}



/* ==============================
    birth-project-banner 스타일
============================== */
/* === 애니메이션 === */
@keyframes bubble1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 20px) scale(1.1); }
}
@keyframes bubble2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.1); }
}
@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}

/* === 기본 컨테이너 === */
.birth-project-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #ffebee 0%, #fff3e0 100%); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #444;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* 배경 버블 */
.birth-project-container::before {
  content: '';
  position: absolute; top: -30px; left: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, #ffcc80 0%, #ffab91 100%);
  border-radius: 50%;
  opacity: 0.5;
  animation: bubble1 10s infinite ease-in-out;
}
.birth-project-container::after {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, #a7ffeb 0%, #80cbc4 100%);
  border-radius: 50%;
  opacity: 0.5;
  animation: bubble2 12s infinite ease-in-out;
}

/* 제목 */
.birth-project-container h2 {
  margin-bottom: 50px;
  font-size: 2.6em;
  font-weight: 800;
  position: relative;
  z-index: 2;
  letter-spacing: -1px;
}
.birth-project-container h2::after {
  content: '🐾';
  margin-left: 10px;
  font-size: 0.8em;
  animation: bounce 1s infinite alternate;
}

/* === 타임라인 === */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 2;
  position: relative;
}

.timeline-step {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  /* padding: 30px 20px; */
  border-radius: 12px;
  /* text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* 반투명 오버레이 */
.timeline-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 0;
}

.timeline-step p span {
  display: inline-block;
  width: 100%;
  padding: 8px 10px;
  margin-top: 10px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.timeline-step h3, 
.timeline-step p, 
.timeline-step .step-number {
  position: relative;
  z-index: 100;
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  /* text-shadow: 0 2px 4px rgba(0,0,0,0.4); */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* hover 시 살짝 들림 */
.timeline-step:hover .step-number {
  transform: translateY(-3px);
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.timeline-step p {
  font-size: 1rem;
  line-height: 1.5;
}

/* === 카드별 배경 이미지 === */
.step-breeder {
  background-image: url('../img/step-breeder.jpg');
}
.step-auction {
  background-image: url('../img/step-auction.jpg');
}
.step-petshop {
  background-image: url('../img/step-petshop.jpg');
}
.step-family {
  background-image: url('../img/step-family.jpg');
}

/* === 단계별 테마 컬러 === */
.step-breeder .step-number {
  color: #ef5350;
}
.step-breeder p span {
  background: #ef5350;
}

.step-auction .step-number {
  color: #ffb300;
}
.step-auction p span {
  background: #ffb300;
}

.step-petshop .step-number {
  color: #42a5f5;
}
.step-petshop p span {
  background: #42a5f5;
}

.step-family .step-number {
  color: #81c784;
}
.step-family p span {
  background: #81c784;
}

/* 반응형 */
@media (max-width: 1024px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .timeline-step {
    min-height: 240px;
  }
}

/* =========================
    사주 입력 폼
========================= */
.saju-form {

}

/* =========================
    btn 스타일
========================= */
.btn-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #444;
  color: #fff;
  font-weight: 700;
  padding: 10px 50px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.bnr-img-box {
  position: relative;
  width: 100%;
  /* aspect-ratio: 16 / 9;  */
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.bnr-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-img-wrap {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.img-btn {
  margin-top: 40px;
}


@media (max-width: 768px) {
  .btn-wrap {
    margin-bottom: 12px;
    margin-top: 12px;
  }

  .btn-img-wrap {
    top: 60%;
  }

  .bnr-img-box {
    aspect-ratio: 4 / 3;
  }

}

.btn-green {
  background-color: #008536;
}

.btn-darkgreen {
  background-color: #1b484a;
}

.btn-yellow {
  background-color: #ffd700;
}

.btn-orange {
  background-color: #ff5100;
}

.btn-sky {
  background-color: #1fe2f0;
}

.btn-pink {
  background-color: #ff2d75
}

.btn:hover {
  background-color: #fff;
  color: #333;
  transform: translateY(-4px);
}

/* =========================
    footer 스타일
========================= */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #ccc;
  padding: 60px 20px 40px;
  border-top: 2px solid #ffcc66;
}

.footer-top {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(1.2);
}

.footer-logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffcc66;
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #aaa;
  margin-top: 8px;
  font-style: italic;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.footer-icons i {
  width: 26px;
  height: 26px;
  color: #ffcc66;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-icons i:hover {
  transform: scale(1.2);
  opacity: 1;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #222;
}

.ft-left {
  flex: 1;
  min-width: 280px;
  margin-bottom: 20px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

.ft-right {
  flex: 1;
  min-width: 280px;
  text-align: right;
  font-size: 14px;
}

.ft-links {
  margin-bottom: 10px;
}

.ft-links a {
  color: #ffcc66;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ft-links a:hover {
  opacity: 0.7;
}

.ft-links span {
  color: #444;
  margin: 0 6px;
}

.ft-phone {
  font-weight: 600;
  color: #fff;
}

.ft-time {
  color: #888;
  font-size: 13px;
}

.serviceCenter p:last-child {
  margin-top: 12px;
  font-size: 12px;
  color: #666;
  padding-top: 12px;
}

@media (max-width: 768px) {
  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .ft-right {
    text-align: center;
  }

  .footer-logo h2 {
    font-size: 1.5rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }
}
