.mainVisual{
  text-align: center;
}
.mainVisual h2{
  font-size: var(--font-size-xl);
  margin-bottom: 90px;
}
.mainVisual .textBox .imgBox{
  width: 26.5%;
  margin: 0 auto;
  margin-bottom: 56px;
}
.mainVisual p{
  font-size: var(--font-size-lg);
  margin-bottom: 114px;
}
.mainVisual .textBox button{
  color: var(--primary-color);
  font-size: var(--font-size-xl);
  font-weight: bold;
  padding: 15px 45px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 3px solid var(--primary-color);
}

/* 섹션1 */
.section1{
  padding-top: 230px;
  padding-bottom: 230px;
}
.section1 h2{
  font-size: var(--font-size-xxl);
  margin-bottom: 70px;
  text-align: center;
  color: var(--primary-color);
}
.section1 .contentBox{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 50px;
}
.section1 .content{
  min-width: 280px;
  min-height: 380px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid #B8B8B8;
  transition: all 0.3s;
  cursor: pointer;
}
.section1 .content:hover{
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}
.section1 .content .textBox{
  text-align: center;
}
.section1 .content .textBox h3{
  font-size: 25px;
  margin-bottom: 12px;
  color: var(--primary-color);
}
.section1 .content .textBox p{
  font-size: 14px;
  color: var(--primary-color);
}

/* 섹션2 */
.section2{
  padding-top: 230px;
  padding-bottom: 230px;
  background-image: url(../assets/se2_img2.jpg);
  background-position: center;
  background-size: cover;
}
.section2 .swiper{
  width: 100%;
  /* height: 630px; */
}
.section2 .swiper .swiper-slide{

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3rem;
  box-sizing: border-box;
  gap: clamp(32px, calc( 64 / 1920 * 100vw), 64px);
}
.section2 .swiper .swiper-slide>div:nth-child(2){
  padding-left: clamp(0px, calc( 57 / 1920 * 100vw), 57px);
}
.section2 .swiper .swiper-slide h3{
  font-size: var(--font-size-xxl);
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}
.section2 .swiper .swiper-slide button{
  font-size: var(--font-size-sm);
  font-weight: bold;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 12px 28px;
}
.section2 .swiper .swiper-slide .number{
  position: absolute;
  font-size: clamp(0px, calc( 150 / 1920 * 100vw), 150px);
  line-height: clamp(0px, calc( 150 / 1920 * 100vw), 150px);
  font-weight: bold;
  color: #fff;
  bottom: 0;
  left: calc(clamp(0px, calc(57 / 1920 * 100vw), 57px) * -1);
  z-index: -1;
}
.swiper-button-next, .swiper-button-prev {
  color: #BAC2C6 !important;
}
.section2 .swiper .swiper-slide img{
  width: 100%;
}


.section2 .text-area{
margin:30px 0;
text-align:right;
}

.section2 .text-area .stitle{
font-size:var(--font-size-xl);
}



/* 섹션3 */
.section3{
  padding-top: 230px;
  padding-bottom: 230px;
  background-color: #F5F5F5;
}
.section3 h2{
  width: var(--main-width);
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: var(--font-size-xxl);
  margin-bottom: 70px;
  text-align: left;
  color: var(--primary-color);
}
.section3 .contentBox{
  display: flex;
  justify-content: space-between;
  /* gap: 3rem; */
}
.section3 .content{
  cursor: pointer;
}
.section3 .iconBox i{
  transition: all 0.6s;
}
.section3 .content:nth-child(1):hover .imgBox img{
  transform: scale(1.1);
}
.section3 .content:nth-child(2)>div:hover .iconBox i{
  color: #fff !important;
}
.section3 .content:nth-child(1){
  width: 55%;
  height: 300px;
  display: flex;
  background-color: #fff;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}
.section3 .content:nth-child(1) .imgBox{
  width: 50%;
  overflow: hidden;
}
.section3 .content:nth-child(1) .imgBox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}
.section3 .content:nth-child(1)>div:nth-child(2){
  width: 50%;
  padding: 3rem 2rem;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.section3 .content:nth-child(1) .textBox h3{
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
  color: var(--text-color);
}
.section3 .content:nth-child(1) .textBox p{
  font-size: var(--font-size-xs);
  color: var(--text-color);
}
.section3 .content .iconBox{
  font-size: var(--font-size-xxl);
}
.section3 .content:nth-child(1) .iconBox{
  display: flex;
  justify-content: end;
}
.section3 .content:nth-child(2){
  width: 43%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 1rem;
}
.section3 .content:nth-child(2)>div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  padding: 0 2rem;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}

.section3 .content:nth-child(2)>div a{
  display: flex;
  justify-content: space-between;
 width:100%;
}

.section3 .content:nth-child(2)>div:nth-child(1){
  background-color: lightskyblue;
}
.section3 .content:nth-child(2)>div:nth-child(2){
  background-color: lightgray;
}
.section3 .content:nth-child(2) .textBox{
  font-size: var(--font-size-lg);
  font-weight: bold;
  color: #fff;
}

@media (max-width: 1920px) {
  .section1 .contentBox{
    grid-template-columns: repeat(2, 1fr);
    justify-items: unset;
  }

}
@media (max-width: 1200px) {
  .mainVisual h2 {
    margin-bottom: 30px;
  }
  .mainVisual .textBox .imgBox {
    margin-bottom: 40px;
  }
  .mainVisual p {
    margin-bottom: 60px;
  }
}
@media (max-width: 950px) {
  .section1 .contentBox{
    gap: 1rem;
  }
  .section1 .content{
    min-width: 130px;
    min-height: 230px;
  }
  .section3 .contentBox {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    gap: 3rem;
  }
  .section3 .content {
    width: 100% !important;
  }
  .section3 .content:nth-child(1) {
    height: 200px;
  }
  .section3 .content:nth-child(2)>div {
    padding: 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .mainVisual {
    height: 100vh !important;
  }

  .section1,
  .section2,
  .section3,
  .section4,
  .section5,
  .section6,
  .section7,
  .section8 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mainVisual h2 {
    margin-bottom: 20px;
  }
  .mainVisual .textBox .imgBox {
    width: 40%;
    margin-bottom: 30px;
  }
  .mainVisual p {
    margin-bottom: 50px;
  }
  .section1 .content .textBox h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .section1 .content .textBox p {
    font-size: 12px;
  }
  .section2 .swiper .swiper-slide {
    flex-flow: column;
    gap: 2rem;
  }
  .section2 .swiper .swiper-slide .number {
    position: absolute;
    font-size: clamp(50px, calc(150 / 1920* 100vw), 150px);
    line-height: clamp(50px, calc(150 / 1920* 100vw), 150px);
    font-weight: bold;
    color: #fff;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .section2 .swiper .swiper-slide>div:nth-child(2) {
    padding-left: unset;
    text-align: center;
  }
  .section3 .content:nth-child(1)>div:nth-child(2) {
    padding: 1.5rem 1rem;
  }
}