:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e2e8f0;
  --soft:#f5f7fb;
  --primary:#2563eb;
  --dark:#0b1220;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans KR", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{ max-width:100%; display:block; border-radius:0; }
a{ color:inherit; text-decoration:none; }

.container{
  max-width:1600px;
  margin:auto;
  padding:50px 60px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.container01{
  max-width:1600px;
  margin:auto;
  padding:50px 60px;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.muted{ color:var(--muted); }
.badge{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
  cursor:pointer;
}
.btn--primary{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}
.btn--ghost{
  background:transparent;
}
.btn--dark{
  background:#111827;
  border-color:#111827;
  color:#fff;
}
.btn--full{ width:100%; }

/* Header */
.header{
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
}

.header__inner{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 30px;
  box-sizing:border-box;
}
.logo{ font-weight:900; letter-spacing:-.5px; }
.nav{
  display:none;
  gap:14px;
  align-items:center;
}
.nav a{
  padding:10px 10px;
  border-radius:10px;
}
.nav a:hover{ background:var(--soft); }

.nav__toggle{
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  padding:10px 12px;
  font-size:16px;
}

/* 모바일에서 메뉴 펼침 */
.nav.is-open{
  position:absolute;
  left:16px;
  right:16px;
  top:56px;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px;
}

/* Hero */
.hero{
  padding:28px 0 24px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:center;
}
.hero__text h1{
  margin:10px 0 10px;
  font-size:32px;
  line-height:1.2;
  letter-spacing:-1px;
}
.hero__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:16px 0;
}
.hero__info{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.infoBox{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background:#fff;
}
.infoBox__label{ font-size:12px; color:var(--muted); }
.infoBox__value{ display:block; margin-top:2px; }

/* Strip */
.strip{
  background:linear-gradient(90deg, #2563eb, #60a5fa);
  color:#fff;
  padding:14px 0;
}
.strip__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Sections */
.section{ padding:40px 20px; }
.section--soft{ background:var(--soft); }
.section--dark{ background:var(--dark); color:#fff; }
.section__head{ margin-bottom:18px; }
.section__head h2{
  margin:0 0 6px;
  font-size:24px;
  letter-spacing:-.5px;
}
.section--dark .muted{ color:rgba(255,255,255,.7); }

/* Cards */
.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.section--dark .card{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.12); }

/* Icon Grid */
.iconGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.iconItem{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.icon{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
}

/* Table */
.tableWrap{
  overflow:auto;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}
.table{
  width:100%;
  border-collapse:collapse;
  min-width:680px; /* 모바일에서 가로스크롤 */
}
.table th, .table td{
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:14px;
}
.table thead th{
  background:#f8fafc;
  position:sticky;
  top:0;
}

/* Cases */
.caseList{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.case{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}
.case__body h3{ margin:0 0 6px; }

/* FAQ */
.faq__item{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 14px;
  background:#fff;
  margin-bottom:10px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:800;
}
.faq__body{ margin-top:10px; color:var(--muted); }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.form{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  margin-top:16px;  
  padding:14px;
}
label{ display:block; font-weight:700; margin-bottom:10px; }
input, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  outline:none;
}
.section--dark input, .section--dark textarea{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  color:#fff;
}
.form__hint{ margin:8px 0 0; font-size:12px; opacity:.8; }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:24px 0 76px; /* 하단 고정 CTA 공간 */
}
.footer__grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
}
.footer__links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
}

/* Sticky CTA (Mobile) */
.stickyCta{
  position:fixed;
  left:0; right:0; bottom:0;
  padding:10px 12px;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--line);
  display:flex;
  gap:10px;
  z-index:60;
}
.stickyCta__btn{
  flex:1;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 0;
  text-align:center;
  font-weight:900;
  background:#fff;
}
.stickyCta__btn--primary{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

/* ✅ 반응형(태블릿 이상) */
@media (min-width: 768px){
  .nav{ display:flex; }
  .nav__toggle{ display:none; }

  .hero{ padding:48px 0; }
  .hero__grid{ grid-template-columns: 1.1fr .9fr; gap:24px; }
  .hero__text h1{ font-size:44px; }

  .cards{ grid-template-columns: repeat(3, 1fr); }
  .iconGrid{ grid-template-columns: repeat(4, 1fr); }

  .case{ grid-template-columns: 280px 1fr; align-items:center; }
  .contact{ grid-template-columns: 1fr 1fr; align-items:start; }

  .stickyCta{ display:none; }
}

/* 유튜브 전체 섹션 */
.youtube-section{
  background:#0f6f8f;     /* 파란 배경 */
  padding:60px 20px;
}

/* 가운데 정렬 */
.youtube-container{
  max-width:1100px;
  margin:0 auto;
}

/* 영상 비율 유지 */
.youtube-wrap{
  position:relative;
  padding-top:56.25%;   /* 16:9 */
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* 영상 꽉채우기 */
.youtube-wrap iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}






/* 상품 탭 */
.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 18px;
}

.tab{
  border:1px solid var(--line);
  background:#fff;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  cursor:pointer;
}

.tab.is-active{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

/* 탭 패널 show/hide */
.tabPanel{ display:none; }
.tabPanel.is-active{ display:block; }

/* 이미지 5개 반응형 갤러리 */
.productGallery{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.productGallery img{
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
}

/* 빈칸(450/540 준비중) */
.productGallery--empty .emptyBox{
  height:220px;
  border-radius:16px;
  border:1px dashed var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  background:#fff;
  font-weight:800;
}

/* 반응형: 태블릿 */
@media (min-width: 768px){
  .productGallery{ grid-template-columns: repeat(2, 1fr); }
  .productGallery--empty .emptyBox{ height:240px; }
}

/* 반응형: PC */
@media (min-width: 1024px){
  .productGallery{ grid-template-columns: repeat(3, 1fr); }
}


.nav a.active-link{
  background: var(--soft);
  font-weight: 900;
}



/* 탭 안 이미지: 풀사이즈 없이 "원본 비율 + 센터 정렬" */
.proShot{
  position: relative;
  display: flex;
  justify-content: center;   /* 가운데 정렬 */
  padding: 24px 0;
}

/* 이미지: container(1600) 안에서 최대폭만 제한 */
.proShot__img{
  display:block;
  max-width: 100%;           /* 모바일 대응 */
  width: auto;               /* 원본 기준 */
  height: auto;
  border-radius: 0px;
  border: 0px solid var(--line);

}

/* 라벨(01~05) */
.proShot__label{
  position:absolute;
  left: 16px;
  top: 16px;
  background: rgba(0,0,0,.55);
  color:#fff;
  font-weight:900;
  padding:8px 12px;
  border-radius:12px;
  font-size:14px;
}


/* 메인비주얼(메뉴 아래 큰 이미지) */
.mainVisual{
  width:100%;
  margin:0px 0;
}

.mainVisual__box{
  width:100%;
  height:720px;
  overflow:hidden;
}

.mainVisual__img{
  width:100%;
  height:100%;
  object-fit:cover;      /* 핵심 */
  object-position:center; /* 중앙 기준 */
  display:block;
}

/* 모바일 여백 조금 줄이기 */
@media (max-width:768px){
  .mainVisual__box{
    height:260px;
  }
}


/* ------------------------------
   Plan Cards (Glass Light)
------------------------------ */
.planCards{
  padding-top: 10px; /* 위 섹션과 간격 미세조정 */
  padding-bottom: 10px;
}

.planGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
}

.planCard{
  position:relative;
  display:block;
  padding:26px 26px 22px;
  border-radius:18px;
  text-decoration:none;
  overflow:hidden;

  /* glass */
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);

  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 150px;
}

.planCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.planCard__brand{
  display:block;
  font-size:12px;
  opacity:.72;
  margin-bottom:12px;
}

.planCard__title{
  display:block;
  font-size:34px;
  letter-spacing:-.6px;
  color:#111;
  margin-bottom:14px;
}

.planCard__cta{
  font-size:14px;
  opacity:.8;
}

/* color bubble */
.planCard::after{
  content:"";
  position:absolute;
  right:-52px; bottom:-52px;
  width:210px; height:210px;
  border-radius:50%;
  opacity:.28;
}

/* subtle diagonal sheen */
.planCard::before{
  content:"";
  position:absolute;
  left:-40%;
  top:-60%;
  width:140%;
  height:140%;
  transform: rotate(12deg);
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  opacity:.45;
  pointer-events:none;
}

.planCard--360::after{ background:#1e66ff; }
.planCard--450::after{ background:#25b75f; }
.planCard--540::after{ background:#ff9f0a; }

/* 모바일: 1열 */
@media (max-width: 900px){
  .planGrid{ grid-template-columns: 1fr; gap:16px; }
  .planCard__title{ font-size:28px; }
}



/* 상품 카드 탭 */
.productTabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-bottom:40px;
}

/* 카드 */
.productCard{
  position:relative;
  border:0;
  padding:30px;
  border-radius:12px;
  color:#fff;
  text-align:left;
  cursor:pointer;
  font-weight:600;
  transition:.2s;
}

.productCard strong{
  display:block;
  font-size:30px;
  margin-top:6px;
}

.productBrand{
  font-size:12px;
  opacity:.8;
}

/* 카드 색상 */
.productCard--360{
  background:linear-gradient(135deg,#2b6cff,#1a46a0);
}

.productCard--450{
  background:linear-gradient(135deg,#5db347,#2e7d32);
}

.productCard--540{
  background:linear-gradient(135deg,#ffae2b,#ef6c00);
}

/* 카드 장식 */
.productCard::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:160px;
  height:160px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
}

/* hover */
.productCard:hover{
  transform:translateY(-5px);
}

/* 선택된 카드 */
.productCard.is-active{
  box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* 모바일 */
@media (max-width:900px){

.productTabs{
grid-template-columns:1fr;
gap:16px;
}

.productCard strong{
font-size:24px;
}

}





/* ==========================
   Compare Table - Emphasis
========================== */
.tableWrap{
  padding: 14px;
  border-radius: 0;
  background: #fff;
  border: 0;                   /* ✅ 제거 */
  box-shadow: 0 12px 28px rgba(16,24,40,.10);
}

/* 표 전체 */
.table{
  width:100%;
  border-collapse: collapse;
  border-spacing: 0;
  background:#fff;
}

/* 헤더 */
.table thead th{
  position: sticky;            /* 모바일 가로스크롤 시 헤더 유지(선택효과) */
  top: 0;
  z-index: 1;
  padding: 16px 14px;
  font-size: 15px;
  font-weight: 800;
  color:#0b1220;
  background: linear-gradient(180deg, #f7faff, #eef4ff);
  border-bottom: 2px solid #d7e3ff;
}

/* 첫 컬럼(구분) 강조 */
.table thead th:first-child,
.table tbody td:first-child{
  font-weight: 800;
  color:#0b1220;
  background: #fbfcff;
}

/* 바디 */
.table tbody td{
  padding: 8px 8px;
  font-size: 18px;
  line-height: 1.5;
  color:#1f2937;
  border-bottom: 0;   /* ✅ 제거 */
}

/* 줄무늬(가독성) */
.table tbody tr:nth-child(even) td{
  background: #fcfdff;
}

/* hover 강조 */
.table tbody tr:hover td{
  background: #f3f7ff;
}

/* 세로 구분선 더 선명하게 */
.table thead th + th,
.table tbody td + td{
  border-left: 1px solid #e2eaf7;
}

/* 컬럼별 포인트(360/450/540) - 위쪽 바 */
.table thead th:nth-child(2){
  box-shadow: inset 0 4px 0 #1e66ff;
}
.table thead th:nth-child(3){
  box-shadow: inset 0 4px 0 #25b75f;
}
.table thead th:nth-child(4){
  box-shadow: inset 0 4px 0 #ff9f0a;
}

/* O / X 가 더 눈에 띄게 (텍스트 기반) */
.table td{
  word-break: keep-all;
}

/* 모바일에서 표가 너무 눌리면 */
@media (max-width: 768px){
  .tableWrap{ padding: 10px; border-radius: 14px; }
  .table thead th{ padding: 14px 12px; font-size: 14px; }
  .table tbody td{ padding: 12px; font-size: 13px; }
}



/* 360 / 450 / 540 상품명만 크게 */
.table thead th:nth-child(n+2){
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  padding: 22px 10px;
  letter-spacing:-1px;
}

/* 구분은 원래 크기 유지 */
.table thead th:first-child{
  font-size: 16px;
  font-weight: 600;
}

/* 표 내용 글씨 */
.table td{
  font-size: 22px;
  padding: 18px 10px;
  text-align: center;
}

/* 구분 열 */
.table td:first-child{
  text-align: left;
  font-weight: 600;
}


.hero{
  background:#f5f7fb;   /* 원하는 배경색 */
  padding:80px 0;
}



.hero__info{
  display:flex;
  gap:20px;
  margin-top:35px;
}

/* 기본 카드 */
.infoBox{
  border-radius:16px;
  padding:26px 34px;
  min-width:240px;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
  position:relative;
  overflow:hidden;
  color:#fff;
}

/* 둥근 패턴 */
.infoBox::after{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  background:rgba(255,255,255,0.15);
  border-radius:50%;
  right:-40px;
  top:-30px;
}

/* 상담전화 (주황색) */
.infoBox:nth-child(1){
  background:linear-gradient(135deg,#f97316,#ea580c);
}

/* 운영시간 (회색) */
.infoBox:nth-child(2){
  background:linear-gradient(135deg,#6b7280,#4b5563);
}

/* 라벨 */
.infoBox__label{
  display:block;
  font-size:14px;
  color:#ffffff;
  opacity:0.9;
  margin-bottom:6px;
}

/* 값 */
.infoBox__value{
  font-size:30px;
  font-weight:800;
  letter-spacing:1px;
  color:#fff;
}

.hero__info{
  display:flex;
  gap:20px;
  margin-top:35px;
}

/* 상담전화 (더 넓게) */
.infoBox:nth-child(1){
  flex:1.4;
}

/* 운영시간 */
.infoBox:nth-child(2){
  flex:1;
}

.compareSection{
  background:#f4f8fb;
}

.compareCards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:34px;
}

.compareCard{
  position:relative;
  background:#fff;
  border-radius:28px;
  padding:34px 30px;
  box-shadow:0 18px 45px rgba(20,40,80,.08);
  overflow:hidden;
}

.compareCard::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
}

.compareCard--blue::before{background:#2563eb;}
.compareCard--green::before{background:#22c55e;}
.compareCard--orange::before{background:#f59e0b;}

.compareCard__badge{
  display:inline-flex;
  padding:7px 13px;
  border-radius:999px;
  background:#eef4ff;
  color:#2563eb;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.compareCard--green .compareCard__badge{
  background:#ecfdf3;
  color:#16a34a;
}

.compareCard--orange .compareCard__badge{
  background:#fff7ed;
  color:#ea580c;
}

.compareCard h3{
  font-size:28px;
  line-height:1.25;
  margin-bottom:26px;
  color:#0f172a;
}

.compareCard ul{
  list-style:none;
  padding:0;
  margin:0;
}

.compareCard li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:15px 0;
  border-bottom:1px solid #edf1f5;
  font-size:16px;
}

.compareCard li:last-child{
  border-bottom:0;
}

.compareCard li span{
  color:#64748b;
  font-weight:500;
}

.compareCard li strong{
  color:#0f172a;
  font-weight:700;
  text-align:right;
}

/* 모바일 */
@media(max-width:768px){
  .compareCards{
    grid-template-columns:1fr;
    gap:16px;
    margin-top:22px;
  }

  .compareCard{
    border-radius:20px;
    padding:26px 22px;
  }

  .compareCard h3{
    font-size:24px;
    margin-bottom:20px;
  }

  .compareCard li{
    font-size:14px;
    padding:13px 0;
  }

  .compareCard li strong{
    max-width:55%;
    word-break:keep-all;
  }
}

.fullImgSection{

  background:#f4f8fb;
}

.fullImgSection .container{
  background:#fff;
  border-radius:28px;
  padding:60px; /* 🔥 핵심 (PC도 적용) */
  overflow:hidden;
  box-shadow:0 18px 45px rgba(20,40,80,.08);
  box-sizing:border-box;
}

.fullImgSection img{
  width:100%;
  display:block;
  border-radius:18px; /* 🔥 이미지도 살짝 둥글게 */
}

/* 모바일 */
@media(max-width:768px){
  .fullImgSection{
  }

  .fullImgSection .container{
    border-radius:18px;
    padding:16px; /* 🔥 모바일 여백 최적화 */
  }

  .fullImgSection img{
    border-radius:12px;
  }
}



.kakaoCard{
  display:block;

  border-radius:24px;
  padding:20px;
  box-shadow:0 18px 45px rgba(20,40,80,.08);
  transition:all .2s ease;
}

.kakaoCard img{
  width:100%;
  display:block;
  border-radius:16px;
}

/* 살짝 떠오르는 효과 */
.kakaoCard:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(20,40,80,.12);
}

/* 모바일 */
@media(max-width:768px){
  .kakaoCard{
    padding:0px;
    border-radius:18px;
  }

  .kakaoCard img{
    border-radius:12px;
  }
}


.privacyBox{
  margin-top:16px;
}

.privacyBox textarea{
  width:100%;
  height:80px;
  border-radius:12px;
  padding:14px;
  font-size:11px;
  line-height:1.6;
  letter-spacing:-1px;
  resize:none;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.06);
  color:#ddd;
  overflow-y:auto;
}

/* 체크박스 */
.privacyCheck{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  font-size:13px;
  color:#ddd;
}

.privacyCheck input{
  width:16px;
  height:16px;
}


html{
  scroll-behavior:smooth;
}

.dotNav{
  position:fixed;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  z-index:9998;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.dotNav a{
  position:relative;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#bbb;
  display:block;
  transition:.25s;
}

.dotNav a:hover{
  background:#ff5a00;
  transform:scale(1.25);
}

.dotNav a span{
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  background:#111;
  color:#fff;
  font-size:13px;
  padding:6px 10px;
  border-radius:20px;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  transition:.25s;
}

.dotNav a:hover span{
  opacity:1;
  visibility:visible;
}

@media(max-width:768px){
  .dotNav{
    display:none;
  }
}

.heroSlider{
  overflow:hidden;
  position:relative;
}

.heroSlider__track{
  display:flex;
  width:200%;
  animation: heroSlide 8s infinite;
}

.heroSlider__item{
  width:50%;
  flex-shrink:0;
}

.heroSlider__item img{
  width:100%;
  height:auto;
  display:block;
}

@keyframes heroSlide{
  0%{ transform:translateX(0); }
  40%{ transform:translateX(0); }

  50%{ transform:translateX(-50%); }
  90%{ transform:translateX(-50%); }

  100%{ transform:translateX(0); }
}