.mainVisual h2{
  font-size: var(--font-size-xl);
  margin-bottom: clamp(20px, calc( 60 / 1920 * 100vw), 60px);
}
.mainVisual h3{
  min-width: clamp(65px, calc( 142 / 1920 * 100vw), 142px);
  font-size: var(--font-size-md);
}
.mainVisual p{
  font-size: var(--font-size-sm);
}
.mainVisual .textBox>div{
  display: flex;
  justify-content: space-between;
  padding-left: 5%;
  gap: 2rem;
}
.mainVisual .textBox .imgBox{
  width: auto;
}
.mainVisual .textBox>div>div>p:nth-child(1){
  margin-bottom: clamp(20px, calc( 48 / 1920 * 100vw), 48px);
  line-height: clamp(16px, calc( 35 / 1920 * 100vw), 35px);
}
.mainVisual .textBox>div>div>div:nth-child(2){
  margin-bottom: clamp(16px, calc( 32 / 1920 * 100vw), 32px);
}
.mainVisual .textBox>div>div>div{
  display: flex;
}

/* 섹션1 */
.section1{
  padding-top: 78px;
  padding-bottom: 52px;
  background-color: var(--primary-color);
}
.section1 .contentBox{
  display: flex;
}
.section1 ul{
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.section1 li{
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: #fff;
}
.section1 li span{
  font-size: var(--font-size-xs);
}

/* 섹션2 */
.section2{
  padding-top: 230px;
  padding-bottom: 170px;
}
.section2 .contentBox h2{
  font-size: var(--font-size-xl);
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.section2 .contentBox p{
  font-size: var(--font-size-sm);
}
.section2 .contentBox p span{
  font-size: var(--font-size-xs);
}
.section2 .contentBox>div{
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.section2 .content .imgBox{
  min-width: 50%;
}
.section2 .content .imgBox img{
  width: 100%;
}
.section2 .content>div:nth-child(2){
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  gap: 2rem;
}
.section2 .transportation{
  display: flex;
  flex-flow: column;
  gap: 50px;
  font-size: var(--font-size-xs);
}
.section2 .transportation i{
  display: flex;
  justify-content: center;
  font-size: 36px;
  min-width: 41px;
  color: #434343;
}
.section2 .transportation>div{
  display: flex;
  gap: 38px;
}
.section2 .bus>div{
  display: flex;
  flex-flow: column;
  gap: 25px;
}
.section2 .bus>div>div{
  display: flex;
  gap: 10px;
}
.section2 .bus .colorBox{
  height: fit-content;
  white-space: nowrap;
  padding: 5px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #fff;
}
.section2 .bus .colorBox.blue{
  background-color: var(--primary-color);
}
.section2 .bus .colorBox.red{
  background-color: #C00000;
}
.section2 .bus .colorBox.green{
  background-color: #00B050;
}
.section2 .bus .colorBox.yellow{
  background-color: #E4E915;
}
.section2 .subway>div{
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.section2 .subway>div>div{
  display: flex;
  align-items: center;
  gap: 12px;
}
.section2 .subway .colorBox{
  min-width: 36px;
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-sm);
  border: 5px solid red;
  border-radius: 50%;
}
.section2 .subway .colorBox.green{
  border-color: #5FC26B;
}
.section2 .subway .colorBox.blue{
  border-color: #5799D5;
}

/* 섹션3 */
.section3{
  padding-top: 150px;
  padding-bottom: 64px;
  background-color: #F7F9F9;
  color: #434343;
}
.section3 .contentBox h2{
  font-size: var(--font-size-xl);
  margin-bottom: 78px;
}
.section3 .contentBox p:nth-child(2){
  font-size: var(--font-size-sm);
  margin-bottom: 24px;
}
.section3 .contentBox p:nth-child(3){
  font-size: var(--font-size-xs);
}

/* 섹션4 */
.section4{
  padding-top: 160px;
  padding-bottom: 180px;
  background-image: url(../assets/introduce/section4_img1.png);
  background-size: cover;
  background-position: center;
}
.section4 .contentBox{
  display: flex;
  gap: 26px;
  text-align: center;
  align-items: stretch;
}
.section4 .content{
  flex: 1;
  display: flex;
  flex-flow: column;
}
.section4 .content>div:nth-child(1){
  color: #434343;
  font-size: var(--font-size-sm);
  font-weight: bold;
  background-color: #fff;
  padding: 22px 1rem;
  box-sizing: border-box;
}
.section4 .content>div:nth-child(2){
  flex: 1;
  color: #fff;
  font-size: var(--font-size-xs);
  background-color: var(--primary-color);
  padding: 25% 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

@media (max-width: 1000px) {
  /* .mainVisual .textBox>div {
    flex-flow: column;
    justify-content: space-between;
    padding-left: 5%;
    gap: 2rem;
  } */
}
@media (max-width: 767px) {
  .mainVisual {
    height: 100vh !important;
  }
  .section1,
  .section2,
  .section3,
  .section4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mainVisual .textBox>div {
    flex-flow: column;
    padding-left: 0;
  }
  .textWrap .textBox {
    text-align: center;
  }
  .mainVisual h2 {
    text-align: center;
  }
  .mainVisual .textBox>div>div>p:nth-child(1){
    line-height: clamp(22px, calc( 35 / 1920 * 100vw), 35px);
  }
  .mainVisual .textBox .imgBox {
    margin: 0 auto;
    width: 50%;
  }
  .mainVisual .textBox>div>div>div {
    flex-flow: column;
    gap: 1rem;
  }
  .section2 .contentBox>div {
    flex-flow: column;
  }
  .section4 .contentBox {
    flex-flow: column;
  }
}
