.mainVisual h2{
  font-size: clamp(0px, calc( 100 / 1920 * 100vw), 100px);
  text-align: center;
}
.textWrap .textBox {
  padding-top: 0 !important;
}
.productsNav{
  width: var(--main-width);
  max-width: var(--max-width);
  margin: 0 auto;
  position: sticky;
  top: var(--gnb-height);
  z-index: 1000;
  margin-top: -210px;
  transition: .3s;
}
.productsNav.sticky {
  width: 100%;
  max-width: 100%;
}
.productsNav ul{
  display: flex;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.productsNav.sticky ul{
  border-radius: unset;
}

.productsNav ul li{
  flex: 1;
  cursor: pointer;
  background-color: var(--primary-color);
  text-align: center;
  box-sizing: border-box;
}
.productsNav ul li:not(:last-child){
  border-right: 1px solid #fff;
}
.productsNav ul li a{
  display: inline-block;
  color: #fff;
  font-size: var(--font-size-sm);
  font-weight: bold;
  width: 100%; 
  height: 100%;
  padding: 2rem 0;
}
.productsMenu .active{
  background-color: #F7F9F9;
}
.productsMenu .active a{
  color: var(--primary-color);
}
.productsNav>div{
  text-align: center;
  background-color: #F7F9F9;
  padding: 1.5rem 1rem 1rem;
  font-size: var(--font-size-sm);
  color: var(--primary-color);
}
.productsNav>div a{
  font-size: var(--font-size-sm);
  color: var(--primary-color);
  white-space: nowrap;
}
.product-link.bold{
  font-weight: bold;
}

/* 섹션1 */
.section1{

}
.section1 .contentBox{
  padding: 10px;
  margin-bottom: 50px;
  display: flex;
  flex-flow: column;
  gap: 10px;
  background-color: #F7F9F9;
}
.section1 .content{
  /* min-height: 500px; */
  display: flex;
  gap: 50px;
  background-color: #fff;
  padding: 20px 0;
  scroll-margin-top: 300px;
}
.section1 .content .imgBox{
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
}
.section1 .content .imgBox img{
  max-width: 100%;
  max-height: 300px;
}
.section1 .content>div:nth-child(2){
  flex: 1;
  display: flex;
  align-items: center;
  gap: 58px;
}
.section1 .content>div:nth-child(2) h3{
  font-size: var(--font-size-sm);
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}
.section1 .content>div:nth-child(2) p{
  font-size: var(--font-size-sm);
  padding-right: 1rem;
}
@media (max-width: 1100px) {
  .productsNav {
    margin-top: -190px;
  }
}
@media (max-width: 767px) {
  .mainVisual {
    height: 50vh !important;
  }
  .section1 .contentBox {
    width: 100%;
    padding: 100px 20px;
  }
  .productsNav {
    width: 100%;
  }
  .section1 .content {
    flex-flow: column;
    gap: 20px;
  }
  .section1 .content>div:nth-child(2) {
    flex-flow: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  .section1 .content .imgBox {
    width: 80%;
    margin: 0 auto;
  }
  .section1 .content>div:nth-child(2) p {
    padding-right: unset;
  }
}