.section1{
  width: 100%;
  height: 500px;
  position: relative;
}
.section1>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: relative;
}
.section1-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: column;
  gap: var(--gap-12);
  text-align: center;
  white-space: nowrap;
}
.section1-content h2{
  font-size: var(--font-size-7xl);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.35em;
}
.service-oil-filter .section1-content h2{
  letter-spacing: 0.2em;
}
.section1-content p{
  font-size: var(--font-size-4xl);
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}
.section1-content p.spacing{
  letter-spacing: 0.8em;
}

@media (max-width: 768px) {
  .section1{
    height: 50vw;
    min-height: 200px;
  }
  .section1-content{
    gap: var(--gap-2);
  }
  .section1-content h2{
    font-size: var(--font-size-4xl);
  }
  .section1-content p{
    font-size: var(--font-size-sm);
  }
  .service-oil-filter .section1-content p.spacing.coolant{
    font-size: var(--font-size-2xs);
  }
}

.section2{
  width: 100%;
  padding: 228px 0;
  background: linear-gradient(360deg, #FFFFFF 0%, #1B3862 100%);
}
.section2 .content_wrap{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  gap: var(--gap-12);
}
.section2 .content_top{
  display: flex;
  flex-flow: column;
  gap: var(--gap-8);
  text-align: center;
}
.section2 .content_top p{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.section2 .content_top p.text2{
  font-size: var(--font-size-6xl);
  font-weight: 900;
}
.section2 .content_top p.text3{
  font-size: var(--font-size-3xl);
  font-weight: 500;
}
.section2 .content_bottom{
  display: flex;
  gap: var(--gap-8);
}
.section2 .content_bottom .content{
  flex: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: var(--gap-8);
  background: rgba(27, 56, 98, 0.2);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(2px);
  border-radius: 30px;
  padding: var(--gap-10) var(--gap-4) var(--gap-12);
}
.section2 .content_bottom .content .content_icon{
  width: 100px;
  height: 100px;
  background: linear-gradient(133.08deg, #1B3862 4.35%, #626262 176.29%);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section2 .content_bottom .content .content_icon img{
  width: 65px;
  height: 65px;
}
.section2 .content_bottom .content .content_text{
  display: flex;
  flex-flow: column;
  gap: var(--gap-5);
  text-align: center;
}
.section2 .content_bottom .content .content_text h3{
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: #fff;
}
.section2 .content_bottom .content .content_text p{
  font-size: var(--font-size-lg);
  color: #fff;
}

@media (max-width: 768px) {
  .section2{
    padding-top: var(--gap-13);
    padding-bottom: var(--gap-7);
  }
  .section2 .content_wrap{
    gap: var(--gap-8);
  }
  .section2 .content_top{
    gap: var(--gap-4);
  }
  .section2 .content_top p{
    font-size: var(--font-size-xl);
  }
  .section2 .content_top p.text2{
    font-size: var(--font-size-6xl);
  }
  .section2 .content_top p.text3{
    font-size: var(--font-size-sm);
  }
  .section2 .content_bottom{
    gap: var(--gap-1);
  }
  .section2 .content_bottom .content{
    gap: 10px;
    border-radius: 10px;
    padding: var(--gap-4) var(--gap-1);
  }
  .section2 .content_bottom .content .content_icon{
    width: 10vw;
    height: 10vw;
    border-radius: 10px;
  }
  .section2 .content_bottom .content .content_icon img{
    width: 6.5vw;
    height: 6.5vw;
  }
  .section2 .content_bottom .content .content_text{
    gap: var(--gap-1);
  }
  .section2 .content_bottom .content .content_text h3{
    font-size: var(--font-size-xs);
  }
  .section2 .content_bottom .content .content_text p{
    font-size: var(--font-size-2xs);
  }
}


.type1{
  width: 100%;
}
.type1 .content_wrap{
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
}
.type1 .content_wrap .content{
  display: flex;
  align-items: center;
}
.type1 .content_wrap .content:nth-child(even){
  flex-flow: row-reverse;
}
.type1 .content_wrap .content>img{
  flex: 1;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.type1 .content_wrap .content .content_text{
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: var(--gap-6);
}
.type1 .content_wrap .content:nth-child(odd) .content_text{
  padding-left: var(--gap-20);
}
.type1 .content_wrap .content:nth-child(even) .content_text{
  text-align: right;
  padding-right: var(--gap-20);
}
.type1 .content_wrap .content .content_text .title{
  display: flex;
  flex-flow: column;
  gap: var(--gap-1);
  padding-bottom: var(--gap-4);
  position: relative;
}
.type1 .content_wrap .content .content_text .title::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 5px;
  background-color: var(--primary-color);
}
.type1 .content_wrap .content:nth-child(odd) .content_text .title::before{
  left: 0;
}
.type1 .content_wrap .content:nth-child(even) .content_text .title::before{
  right: 0;
}
.type1 .content_wrap .content .content_text .title h2{
  font-size: var(--font-size-4xl);
  font-weight: 500;
  color: #A2A2A2;
}
.type1 .content_wrap .content .content_text .title h3{
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: #282828;
}
.type1 .content_wrap .content .content_text .text{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
}
.type1 .content_wrap .content .content_text .text p{
  font-size: var(--font-size-2xl);
  color: #000;
  line-height: 1.3;
}
.type1 .content_wrap .content .content_text .text p span{
  font-weight: 600;
}
.type1 .content_wrap .content .content_text .text.list p{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--gap-3);
}
.type1 .content_wrap .content .content_text .text.list p.grey{
  font-size: var(--font-size-base);
  color: #8F8F8F;
  line-height: 1.3;
}


@media (max-width: 768px) {
  .type1{
    padding-bottom: var(--gap-5);
  }
  .service-suspension .type1{
    padding-top: var(--gap-5);
  }
  .type1 .content_wrap{
    gap: var(--gap-5);
  }
  .type1 .content_wrap .content{
    flex-flow: column;
    align-items: start;
    gap: 10px;
  }
  .type1 .content_wrap .content:nth-child(even){
    flex-flow: column;
  }
  .type1 .content_wrap .content>img{
    width: 100%;
    height: 37.5vw;
    border-radius: 10px;
  }
  .type1 .content_wrap .content .content_text{
    gap: 10px;
  }
  .type1 .content_wrap .content:nth-child(odd) .content_text{
    padding-left: 0;
  }
  .type1 .content_wrap .content:nth-child(even) .content_text{
    text-align: left;
    padding-right: 0;
  }
  .type1 .content_wrap .content .content_text .title{
    gap: 0;
    padding-bottom: var(--gap-1);
  }
  .type1 .content_wrap .content .content_text .title::before{
    width: 15vw;
    height: 3px;
  }
  .type1 .content_wrap .content:nth-child(odd) .content_text .title::before{
    left: 0;
  }
  .type1 .content_wrap .content:nth-child(even) .content_text .title::before{
    right: unset;
    left: 0;
  }
  .type1 .content_wrap .content .content_text .title h2{
    font-size: var(--font-size-sm);
  }
  .type1 .content_wrap .content .content_text .title h3{
    font-size: var(--font-size-4xl);
  }
  .type1 .content_wrap .content .content_text .text{
    gap: 10px;
  }
  .type1 .content_wrap .content .content_text .text p{
    font-size: var(--font-size-xs);
  }
  .type1 .content_wrap .content .content_text .text.list p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap-1);
  }
  .type1 .content_wrap .content .content_text .text.list p img{
    width: 3.75vw;
    height: 3.75vw;
  }
  .type1 .content_wrap .content .content_text .text.list p.grey{
    font-size: var(--font-size-2xs);
  }
}

.type1-2{
  width: 100%;
}
.type1-2 .content_wrap{
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
}
.type1-2 .content_wrap .content{
  display: flex;
  align-items: center;
}
.type1-2 .content_wrap .content:nth-child(even){
  flex-flow: row-reverse;
}
.type1-2 .content_wrap .content>img{
  flex: 1;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.type1-2 .content_wrap .content .content_text{
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: var(--gap-6);
}
.type1-2 .content_wrap .content:nth-child(odd) .content_text{
  padding-left: var(--gap-20);
}
.type1-2 .content_wrap .content:nth-child(even) .content_text{
  text-align: right;
  padding-right: var(--gap-20);
}
.type1-2 .content_wrap .content .content_text .title{
  display: flex;
  flex-flow: column;
  gap: var(--gap-1);
  padding-bottom: var(--gap-4);
  position: relative;
}
.type1-2 .content_wrap .content .content_text .title::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 5px;
  background-color: var(--primary-color);
}
.type1-2 .content_wrap .content:nth-child(odd) .content_text .title::before{
  left: 0;
}
.type1-2 .content_wrap .content:nth-child(even) .content_text .title::before{
  right: 0;
}
.type1-2 .content_wrap .content .content_text .title h2{
  font-size: var(--font-size-4xl);
  font-weight: 500;
  color: #A2A2A2;
}
.type1-2 .content_wrap .content .content_text .title h3{
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: #282828;
}
.type1-2 .content_wrap .content .content_text .text{
  display: flex;
  flex-flow: column;
  gap: var(--gap-5);
}
.type1-2 .content_wrap .content .content_text .text h4{
  font-size: var(--font-size-2xl);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.3;
}
.type1-2 .content_wrap .content .content_text .text p{
  font-size: var(--font-size-lg);
  color: #000;
  line-height: 1.4;
}
.type1-2 .content_wrap .content .content_text .text p span.bold{
  font-weight: 700;
}
.type1-2 .content_wrap .content .content_text .text p span.grey{
  color: #777575;
  font-size: var(--font-size-base);
}
.type1-2 .content_wrap .content .content_text .text.list .item{
  display: flex;
  gap: var(--gap-7);
}
.type1-2 .content_wrap .content .content_text .text.list .item .circle{
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.type1-2 .content_wrap .content .content_text .text.list .item p{
  font-size: var(--font-size-base);
  color: var(--text-color);
  line-height: 1.3;
}
.type1-2 .content_wrap .content .content_text .text.list .item p.semibold{
  font-weight: 600;
}
.type1-2 .content_wrap .content .content_text .text.list .item p span{
  font-weight: 600;
}

@media (max-width: 768px) {
  .type1-2{
    padding-bottom: var(--gap-5);
  }
  .type1-2 .content_wrap{
    gap: var(--gap-5);
  }
  .type1-2 .content_wrap .content{
    flex-flow: column;
    align-items: start;
    gap: 10px;
  }
  .type1-2 .content_wrap .content:nth-child(even){
    flex-flow: column;
  }
  .type1-2 .content_wrap .content>img{
    width: 100%;
    height: 37.5vw;
    border-radius: 10px;
  }
  .type1-2 .content_wrap .content .content_text{
    gap: 10px;
  }
  .type1-2 .content_wrap .content:nth-child(odd) .content_text{
    padding-left: 0;
  }
  .type1-2 .content_wrap .content:nth-child(even) .content_text{
    text-align: left;
    padding-right: 0;
  }
  .type1-2 .content_wrap .content .content_text .title{
    gap: 0;
    padding-bottom: var(--gap-1);
  }
  .type1-2 .content_wrap .content .content_text .title::before{
    width: 15vw;
    height: 3px;
  }
  .type1-2 .content_wrap .content:nth-child(odd) .content_text .title::before{
    left: 0;
  }
  .type1-2 .content_wrap .content:nth-child(even) .content_text .title::before{
    right: unset;
    left: 0;
  }
  .type1-2 .content_wrap .content .content_text .title h2{
    font-size: var(--font-size-sm);
  }
  .type1-2 .content_wrap .content .content_text .title h3{
    font-size: var(--font-size-4xl);
  }

  
  .type1-2 .content_wrap .content .content_text .text h4{
    font-size: var(--font-size-lg);
  }
  .type1-2 .content_wrap .content .content_text .text p{
    font-size: var(--font-size-sm);
  }
  .type1-2 .content_wrap .content .content_text .text p span.grey{
    font-size: var(--font-size-xs);
  }
  .type1-2 .content_wrap .content .content_text .text.list .item{
    gap: var(--gap-2);
  }
  .type1-2 .content_wrap .content .content_text .text.list .item .circle{
    width: 5vw;
    height: 5vw;
    min-width: 5vw;
    min-height: 5vw;
    font-size: var(--font-size-2xs);
  }
  .type1-2 .content_wrap .content .content_text .text.list .item p{
    font-size: var(--font-size-xs);
  }
}


.type2{
  width: 100%;
  padding-top: 150px;
  padding-bottom: 180px;
  background-image: url(../img/service/intake_section4_img1.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.service-dpf .type2{
  background-image: url(../img/service/dpf_section4_img1.png);
}
.service-cleaning .type2{
  background-image: url(../img/service/cleaning_section4_img1.png);
}
.type2 .content_wrap{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  gap: 100px;
}
.type2 .content_text{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
  text-align: center;
}
.type2 .content_text h3{
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: #fff;
}
.type2 .content_text p{
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: #fff;
}
.type2 .content_img{
  display: flex;
  gap: var(--gap-8);
}
.type2 .content_img>div{
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: var(--gap-5);
  background: #fff;
  border-radius: 30px;
  padding: 14px 10px;
  position: relative;
}
.type2 .content_img>div img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center center;
}
.type2 .content_img>div p{
  font-size: var(--font-size-4xl);
  font-weight: 500;
  color: #000;
  text-align: center;
}
.type2 .content_img>div .xmark{
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .type2{
    padding-top: var(--gap-12);
    padding-bottom: var(--gap-12);
  }
  .type2 .content_wrap{
    gap: var(--gap-5);
  }
  .type2 .content_text{
    gap: 10px;
  }
  .type2 .content_text h3{
    font-size: var(--font-size-xl);
  }
  .type2 .content_text p{
    font-size: var(--font-size-xs);
  }
  .type2 .content_img{
    gap: var(--gap-2);
  }
  .type2 .content_img>div{
    gap: var(--gap-2);
    border-radius: 10px;
    padding: var(--gap-1);
    padding-bottom: var(--gap-2);
  }
  .type2 .content_img>div img{
    height: 28vw;
  }
  .type2 .content_img>div p{
    font-size: var(--font-size-2xs);
  }
}

.type2-2 .content_img_wrap{
  display: flex;
  flex-flow: column;
  gap: var(--gap-12);
}
.type2-2 .content_img {
  display: flex;
  gap: var(--gap-1);
}
@media (max-width: 768px) {
  .type2-2 .content_img_wrap{
    gap: var(--gap-4);
  }
  .type2-2 .content_img .arrow {
    width: 2.5vw;
  }
}


.type3{
  width: 100%;
  padding: 150px 0;
}
.type3 .content_wrap{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  gap: var(--gap-12);
}
.type3 .content_top{
  display: flex;
  flex-flow: column;
  gap: var(--gap-8);
  text-align: center;
}
.type3 .content_top p{
  font-size: var(--font-size-8xl);
  font-weight: 900;
  color: var(--primary-color);
}
.type3 .content_top h3{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--text-color);
}
.type3 .content_bottom{
  display: flex;
  align-items: center;
  gap: var(--gap-8);
}
.type3 .content_bottom .content_left{
  flex: 1;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  overflow: hidden;
}
.type3 .content_bottom .content_left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.type3 .content_bottom .content_right{
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: var(--gap-6);
}
.type3 .content_bottom .content_right h4{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--text-color);
  padding-bottom: var(--gap-4);
  position: relative;
}
.type3 .content_bottom .content_right h4::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}
.type3 .content_bottom .content_right .list{
  display: flex;
  flex-flow: column;
  gap: var(--gap-8);
}
.type3 .content_bottom .content_right .list .item{
  height: 100px;
  padding: 0 var(--gap-6);
  display: flex;
  align-items: center;
  gap: var(--gap-7);
  background: #FBFBFB;
  border-radius: 15px;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.15));
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
.type3 .content_bottom .content_right .list .item::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-color);
}
.type3 .content_bottom .content_right .list .item .number{
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: #fff;
}
.type3 .content_bottom .content_right .list .item p{
  font-size: var(--font-size-xl);
  font-weight: 500;
  color: var(--text-color);
}
.type3 button{
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1B3862;
  border-radius: 500px;
  padding: var(--gap-3) var(--gap-10);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: #fff;
}

.type3 a.button{
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1B3862;
  border-radius: 500px;
  padding: var(--gap-3) var(--gap-10);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .type3{
    padding: var(--gap-7) 0;
  }
  .type3 .content_wrap{
    gap: var(--gap-4);
  }
  .type3 .content_top{
    gap: var(--gap-5);
  }
  .type3 .content_top p{
    font-size: 16vw;
  }
  .type3 .content_top h3{
    font-size: var(--font-size-xl);
  }
  .type3 .content_bottom{
    flex-flow: column;
    align-items: start;
    gap: var(--gap-5);
  }
  .type3 .content_bottom .content_left{
    width: 100%;
    border-radius: 10px;
  }
  .type3 .content_bottom .content_left img{
    height: 37.5vw;
  }
  .type3 .content_bottom .content_right{
    width: 100%;
    gap: 10px;
  }
  .type3 .content_bottom .content_right h4{
    font-size: var(--font-size-xl);
    padding-bottom: var(--gap-1);
  }
  .type3 .content_bottom .content_right h4::before{
    width: 25vw;
  }
  .type3 .content_bottom .content_right .list{
    gap: var(--gap-1);
  }
  .type3 .content_bottom .content_right .list .item{
    height: 11.25vw;
    padding: 0 var(--gap-3);
    gap: var(--gap-4);
    border-radius: 10px;
  }
  .type3 .content_bottom .content_right .list .item::before{
    width: 4px;
  }
  .type3 .content_bottom .content_right .list .item .number{
    width: 7.5vw;
    height: 7.5vw;
    font-size: var(--font-size-lg);
  }
  .type3 .content_bottom .content_right .list .item p{
    font-size: var(--font-size-lg);
  }
  .type3 button{
    width: 100%;
    padding: var(--gap-3) var(--gap-10);
    font-size: var(--font-size-lg);
  }
  .type3 a.button{
    width: 100%;
    padding: var(--gap-3) var(--gap-10);
    font-size: var(--font-size-lg);
  }
}


.type4{
  width: 100%;
  padding: 110px 0;
  background: var(--primary-color);
  display: flex;
  flex-flow: column;
  gap: var(--gap-14);
}
.type4 .content_wrap{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  gap: var(--gap-10);
}
.type4 .content_wrap h3{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.type4 .content_wrap>div{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-8);
}
.type4 .content_wrap>div .content{
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.type4 .content_wrap>div .content img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px;
}
.type4 .content_wrap>div .content .text{
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.type4 .content_wrap>div .content .text h4{
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #fff;
}
.type4 .content_wrap>div .content .text p{
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: #fff;
}

@media (max-width: 768px) {
  .type4{
    padding: var(--gap-12) 0;
    gap: var(--gap-10);
  }
  .type4 .content_wrap{
    gap: var(--gap-4);
  }
  .type4 .content_wrap h3{
    font-size: var(--font-size-4xl);
  }
  .type4 .content_wrap>div{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .type4 .content_wrap>div .content img{
    height: 30vw;
  }
  .type4 .content_wrap>div .content .text{
    gap: var(--gap-1);
  }
  .type4 .content_wrap>div .content .text h4{
    font-size: var(--font-size-xs);
  }
  .type4 .content_wrap>div .content .text p{
    font-size: var(--font-size-2xs);
  }
}


.type5{
  width: 100%;
  padding: 150px 0;
}
.type5 .content_wrap{
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 100px;
}
.type5 .content_wrap>.title{
  display: flex;
  flex-flow: column;
  text-align: center;
}
.type5 .content_wrap>.title h3{
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--text-color);
}
.type5 .content_wrap>.title p{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--text-color);
}
.type5 .content_wrap>div:not(.title){
  display: flex;
  flex-flow: column;
  gap: 100px;
}
.type5 .content_wrap>div .content{
  display: flex;
  align-items: center;
  gap: var(--gap-8);
}
.type5 .content_wrap>div .content:nth-child(even){
  flex-flow: row-reverse;
}
.type5 .content_wrap>div .content .content_img{
  width: 59.6%;
  position: relative;
}
.type5 .content_wrap>div .content .content_img img{
  width: 100%;
  height: 490px;
  object-fit: cover;
  object-position: center center;
}
.type5 .content_wrap>div .content:nth-child(odd) .content_img img{
  border-radius: 0 50px 50px 0;
}
.type5 .content_wrap>div .content:nth-child(even) .content_img img{
  border-radius: 50px 0 0 50px;
}
.type5 .content_wrap>div .content .content_img .number{
  display: none;
}
.type5 .content_wrap>div .content:nth-child(odd) .content_text{
  align-items: flex-start;
  text-align: left;
}
.type5 .content_wrap>div .content:nth-child(even) .content_text{
  align-items: flex-end;
  text-align: right;
}
.type5 .content_wrap>div .content .content_text{
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: var(--gap-10);
}
.type5 .content_wrap>div .content .content_text .number{
  width: fit-content;
  font-size: var(--font-size-4xl);
  font-weight: 500;
  padding: var(--gap-3) var(--gap-8);
  background: var(--primary-color);
  border-radius: 100px;
  color: #fff;
}
.type5 .content_wrap>div .content .content_text .content_text_inner{
  display: flex;
  flex-flow: column;
  gap: var(--gap-6);
}
.type5 .content_wrap>div .content .content_text .content_text_inner .title{
  display: flex;
  flex-flow: column;
  gap: var(--gap-1);
  padding-bottom: var(--gap-6);
  position: relative;
}
.type5 .content_wrap>div .content .content_text .content_text_inner .title::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 5px;
  background: var(--primary-color);
}
.type5 .content_wrap>div .content:nth-child(odd) .content_text .content_text_inner .title::before{
  left: 0;
}
.type5 .content_wrap>div .content:nth-child(even) .content_text .content_text_inner .title::before{
  right: 0;
}
.type5 .content_wrap>div .content .content_text .content_text_inner .title p{
  font-size: var(--font-size-base);
  font-weight: 500;
  color: #999999;
}
.type5 .content_wrap>div .content .content_text .content_text_inner .title h4{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--text-color);
}
.type5 .content_wrap>div .content .content_text .content_text_inner>p{
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .type5{
    padding: var(--gap-12) 0;
  }
  .type5 .content_wrap{
    gap: var(--gap-5);
    padding: 0 var(--padding-x);
  }
  .type5 .content_wrap>.title{
    gap: var(--gap-1);
  }
  .type5 .content_wrap>.title h3{
    font-size: var(--font-size-xs);
  }
  .type5 .content_wrap>.title p{
    font-size: var(--font-size-xl);
  }
  .type5 .content_wrap>div:not(.title){
    gap: var(--gap-5);
  }
  .type5 .content_wrap>div .content{
    flex-flow: column;
    align-items: start;
    gap: 10px;
  }
  .type5 .content_wrap>div .content:nth-child(even){
    flex-flow: column;
  }
  .type5 .content_wrap>div .content .content_img{
    width: 100%;
  }
  .type5 .content_wrap>div .content .content_img img{
    height: 37.5vw;
  }
  .type5 .content_wrap>div .content:nth-child(odd) .content_img img{
    border-radius: 10px;
  }
  .type5 .content_wrap>div .content:nth-child(even) .content_img img{
    border-radius: 10px;
  }
  .type5 .content_wrap>div .content .content_img .number{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: #fff;
    width: 25vw;
    height: 8.75vw;
    background: var(--primary-color);
    border-radius: 15px;
  }
  .type5 .content_wrap>div .content:nth-child(odd) .content_text{
    align-items: flex-start;
    text-align: left;
  }
  .type5 .content_wrap>div .content:nth-child(even) .content_text{
    align-items: flex-start;
    text-align: left;
  }
  .type5 .content_wrap>div .content .content_text{
    gap: var(--gap-1);
  }
  .type5 .content_wrap>div .content .content_text .number{
    display: none;
  }
  .type5 .content_wrap>div .content .content_text .content_text_inner{
    gap: var(--gap-1);
  }
  .type5 .content_wrap>div .content .content_text .content_text_inner .title{
    gap: 0;
    padding-bottom: var(--gap-1);
  }
  .type5 .content_wrap>div .content .content_text .content_text_inner .title::before{
    width: 25vw;
    height: 3px;
  }
  .type5 .content_wrap>div .content:nth-child(even) .content_text .content_text_inner .title::before{
    right: unset;
    left: 0;
  }
  .type5 .content_wrap>div .content .content_text .content_text_inner .title p{
    font-size: var(--font-size-xs);
  }
  .type5 .content_wrap>div .content .content_text .content_text_inner .title h4{
    font-size: var(--font-size-xl);
  }
  .type5 .content_wrap>div .content .content_text .content_text_inner>p{
    font-size: var(--font-size-sm);
  }
}

.type6{
  width: 100%;
  padding: 150px 0;
  background: #F4F4F4;
}
.type6 .content_wrap{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  gap: var(--gap-12);
}
.type6 .content_wrap>.title{
  display: flex;
  flex-flow: column;
  gap: var(--gap-8);
  text-align: center;
}
.type6 .content_wrap>.title h3{
  font-size: var(--font-size-8xl);
  font-weight: 900;
  color: var(--primary-color);
}
.type6 .content_wrap>.title p{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--text-color);
}
.type6 .content_wrap .content_wrap_inner{
  display: flex;
  flex-flow: column;
  gap: 150px;
}
.type6 .content_wrap .content_top{
  display: flex;
  align-items: center;
  gap: var(--gap-8);
}
.type6 .content_wrap .content_top .content_img{
  width: 50%;
  height: 450px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  overflow: hidden;
}
.type6 .content_wrap .content_top .content_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.type6 .content_wrap .content_top .content_text{
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: var(--gap-6);
}
.type6 .content_wrap .content_top .content_text h4{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--text-color);
  padding-bottom: var(--gap-4);
  position: relative;
}
.type6 .content_wrap .content_top .content_text h4::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}
.type6 .content_wrap .content_top .content_text .list{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
  max-height: 290px;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.15));
  border-radius: 15px;
  padding: var(--gap-8) var(--gap-7);
  padding-right: var(--gap-1);
  position: relative;
  background: #FBFBFB;
  overflow: hidden;
}
.type6 .content_wrap .content_top .content_text .list .item::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
}
.type6 .content_wrap .content_top .content_text .list .list_inner{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-4);
}
.type6 .content_wrap .content_top .content_text .list .item{
  display: flex;
  align-items: center;
  gap: 5px;
}
.type6 .content_wrap .content_top .content_text .list .item .circle{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}
.type6 .content_wrap .content_top .content_text .list .item p{
  font-size: var(--font-size-xs);
  color: var(--text-color);
}
.type6 .content_wrap .content_bottom{
  display: flex;
  flex-flow: column;
  gap: var(--gap-12);
}
.type6 .content_wrap .content_bottom>p{
  font-size: var(--font-size-5xl);
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
}
.type6 .content_wrap .content_bottom>p span{
  font-weight: 700;
}
.type6 .content_wrap .content_bottom .content_img{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-16);
}
.type6 .content_wrap .content_bottom .content_img>div{
  display: flex;
  flex-flow: column;
  gap: var(--gap-7);
}
.type6 .content_wrap .content_bottom .content_img>div p{
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: #000;
  text-align: center;
}
.type6 .content_wrap .content_bottom .content_img>div p span{
  font-weight: 800;
}
.type6 .content_wrap .content_bottom .content_img .divider{
  width: 1px;
  height: 196px;
  background: #AFAFAF;
}

@media (max-width: 768px) {
  .type6{
    padding: var(--gap-12) 0;
  }
  .type6 .content_wrap{
    gap: var(--gap-5);
  }
  .type6 .content_wrap>.title{
    gap: 10px;
  }
  .type6 .content_wrap>.title h3{
    font-size: 16vw;
  }
  .type6 .content_wrap>.title p{
    font-size: var(--font-size-xl);
  }
  .type6 .content_wrap .content_wrap_inner{
    gap: var(--gap-12);
  }
  .type6 .content_wrap .content_top{
    flex-flow: column;
    align-items: start;
    gap: 10px;
  }
  .type6 .content_wrap .content_top .content_img{
    width: 100%;
    height: 37.5vw;
  }
  .type6 .content_wrap .content_top .content_text{
    width: 100%;
    gap: 10px;
  }
  .type6 .content_wrap .content_top .content_text h4{
    font-size: var(--font-size-4xl);
    padding-bottom: var(--gap-1);
  }
  .type6 .content_wrap .content_top .content_text h4::before{
    width: 25vw;
  }
  .type6 .content_wrap .content_top .content_text .list{
    width: 100%;
    gap: var(--gap-2);
    max-height: unset;
    padding: var(--gap-4);
    padding-right: var(--gap-2);
  }
  .type6 .content_wrap .content_top .content_text .list .item::before{
    width: 3px;
  }
  .type6 .content_wrap .content_top .content_text .list .list_inner{
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap-2);
  }
  .type6 .content_wrap .content_top .content_text .list .item .circle{
    width: 2vw;
    height: 2vw;
  }
  .type6 .content_wrap .content_top .content_text .list .item p{
    font-size: var(--font-size-sm);
  }
  .type6 .content_wrap .content_bottom{
    gap: var(--gap-4);
  }
  .type6 .content_wrap .content_bottom>p{
    font-size: var(--font-size-xl);
  }
  .type6 .content_wrap .content_bottom .content_img{
    gap: var(--gap-4);
  }
  .type6 .content_wrap .content_bottom .content_img>div{
    gap: 10px;
  }
  .type6 .content_wrap .content_bottom .content_img>div img{
    width: 42.5vw;
  }
  .type6 .content_wrap .content_bottom .content_img>div p{
    font-size: var(--font-size-sm);
  }
  .type6 .content_wrap .content_bottom .content_img .divider{
    height: 23.75vw;
  }
}


.type7{
  width: 100%;
  height: 700px;
  position: relative;
}
.type7 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.type7 .content_wrap{
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.type7 .content_wrap .content_text{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
}
.type7 .content_wrap .content_text h3{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: #fff;
  position: relative;
  padding-bottom: var(--gap-4);
}
.type7 .content_wrap .content_text h3::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 5px;
  background: var(--primary-color);
}
.type7 .content_wrap .content_text>div{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
}
.type7 .content_wrap .content_text>div h4{
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #fff;
}
.type7 .content_wrap .content_text>div p{
  font-size: var(--font-size-lg);
  color: #fff;
}
.type7 .content_wrap .content_text>div p.regular{
  font-size: var(--font-size-xs);
  color: #fff;
}
.type7 .content_wrap .content_text>p{
  font-size: var(--font-size-lg);
  color: #fff;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .type7{
    height: 66vw;
  }
  .type7 .content_wrap{
    width: 100%;
  }
  .type7 .content_wrap .content_text{
    gap: var(--gap-1);
    text-align: center;
  }
  .type7 .content_wrap .content_text h3{
    font-size: var(--font-size-4xl);
    padding-bottom: var(--gap-1);
  }
  .type7 .content_wrap .content_text h3::before{
    left: 50%;
    transform: translateX(-50%);
    width: 25vw;
  }
  .type7 .content_wrap .content_text>div h4{
    font-size: var(--font-size-lg);
  }
  .type7 .content_wrap .content_text>div p{
    font-size: var(--font-size-sm);
  }
  .type7 .content_wrap .content_text>div p.regular{
    font-size: var(--font-size-2xs);
  }
  .type7 .content_wrap .content_text>p{
    font-size: var(--font-size-xs);
  }
}


.type8{
  width: 100%;
  padding: 150px 0;
}
.type8 .content_wrap{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  gap: 88px;
}
.type8 .content_wrap .title{
  display: flex;
  flex-flow: column;
  gap: var(--gap-8);
  text-align: center;
}
.type8 .content_wrap .title h3{
  font-size: var(--font-size-8xl);
  font-weight: 900;
  color: var(--primary-color);
}
.type8 .content_wrap .title p{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--text-color);
}
.type8 .content_wrap .content{
  display: flex;
  gap: var(--gap-8);
}
.type8 .content_wrap .content .item{
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: var(--gap-8);
  text-align: center;
  border: 3px solid #1B3862;
  border-radius: 15px;
  height: 500px;
  padding-top: var(--gap-20);
}
.type8 .content_wrap .content .item .item_title{
  display: flex;
  flex-flow: column;
  gap: var(--gap-2);
  height: 190px;
}
.type8 .content_wrap .content .item .item_title p{
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: var(--primary-color);
}
.type8 .content_wrap .content .item .item_title h4{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-3xl);
  font-weight: 500;
  color: #000;
}
.type8 .content_wrap .content .item>p{
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: #000;
}

@media (max-width: 768px) {
  .type8{
    padding: var(--gap-12) 0;
  }
  .type8 .content_wrap{
    gap: var(--gap-5);
  }
  .type8 .content_wrap .title{
    gap: 10px;
  }
  .type8 .content_wrap .title h3{
    font-size: 16vw;
  }
  .type8 .content_wrap .title p{
    font-size: var(--font-size-xl);
  }
  .type8 .content_wrap .content{
    flex-flow: column;
    gap: 10px;
  }
  .type8 .content_wrap .content .item{
    gap: 10px;
    text-align: start;
    height: unset;
    padding-top: var(--gap-3);
    padding: var(--gap-3);
  }
  .type8 .content_wrap .content .item .item_title{
    display: inline;
    gap: var(--gap-2);
    height: unset;
  }
  .type8 .content_wrap .content .item .item_title p{
    display: inline;
    width: fit-content;
    font-size: var(--font-size-xl);
    margin-right: var(--gap-1);
  }
  .type8 .content_wrap .content .item .item_title h4{
    display: inline;
    font-size: var(--font-size-lg);
  }
  .type8 .content_wrap .content .item>p{
    font-size: var(--font-size-sm);
  }
}


.type9{
  width: 100%;
  padding: 150px 0;
  background: #F4F4F4;
}
.type9 .content_wrap{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  gap: var(--gap-20);
}
.type9 .content_wrap .title{
  display: flex;
  flex-flow: column;
  gap: var(--gap-8);
  text-align: center;
}
.type9 .content_wrap .title h3{
  font-size: var(--font-size-8xl);
  font-weight: 900;
  color: var(--primary-color);
}
.type9 .content_wrap .title p{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--text-color);
}
.type9 .content_wrap .content_wrap_inner{
  display: flex;
  flex-flow: column;
  gap: 128px;
}
.type9 .content_wrap .content_wrap_inner .content_top{
  display: flex;
  gap: var(--gap-8);
}
.type9 .content_wrap .content_wrap_inner .content_top .content{
  flex: 1;
  height: 250px;
  display: flex;
  flex-flow: column;
  gap: var(--gap-2);
  text-align: center;
  padding-top: var(--gap-13);
  border-radius: 15px;
  overflow: hidden;
}
.type9 .content_wrap .content_wrap_inner .content_top .content:nth-child(1){
  background-image: url(../img/service/drive-belt_section4_img1.png);
  background-size: cover;
  background-position: center center;
}
.type9 .content_wrap .content_wrap_inner .content_top .content:nth-child(2){
  background-image: url(../img/service/drive-belt_section4_img2.png);
  background-size: cover;
  background-position: center center;
}
.type9 .content_wrap .content_wrap_inner .content_top .content h4{
  width: 75%;
  margin: 0 auto;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: #fff;
  padding-bottom: var(--gap-4);
  border-bottom: 1px solid #fff;
}
.type9 .content_wrap .content_wrap_inner .content_top .content p{
  flex: 1;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
.type9 .content_wrap .content_wrap_inner .content_bottom{
  display: flex;
  flex-flow: column;
  gap: var(--gap-12);
  text-align: center;
}
.type9 .content_wrap .content_wrap_inner .content_bottom h4{
  font-size: var(--font-size-5xl);
  font-weight: 400;
  color: #000;
}
.type9 .content_wrap .content_wrap_inner .content_bottom h4 span{
  font-weight: 600;
}
.type9 .content_wrap .content_wrap_inner .content_bottom .list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-8);
}
.type9 .content_wrap .content_wrap_inner .content_bottom .list .item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap-12) 0;
  border: 1px solid #1B3862;
  border-radius: 20px;
  background: #fff;
  font-size: var(--font-size-3xl);
  font-weight: 400;
  color: #000;
}

@media (max-width: 768px) {
  .type9{
    padding: var(--gap-12) 0;
  }
  .type9 .content_wrap{
    gap: var(--gap-5);
  }
  .type9 .content_wrap .title{
    gap: var(--gap-4);
  }
  .type9 .content_wrap .title h3{
    font-size: 16vw;
  }
  .type9 .content_wrap .title p{
    font-size: var(--font-size-xl);
  }
  .type9 .content_wrap .content_wrap_inner{
    gap: var(--gap-12);
  }
  .type9 .content_wrap .content_wrap_inner .content_top{
    flex-flow: column;
    gap: var(--gap-5);
  }
  .type9 .content_wrap .content_wrap_inner .content_top .content{
    flex: 1;
    height: unset;
    padding-top: var(--gap-3);
    padding: var(--gap-3);
  }
  .type9 .content_wrap .content_wrap_inner .content_top .content h4{
    width: 75%;
    font-size: var(--font-size-sm);
    padding-bottom: var(--gap-2);
  }
  .type9 .content_wrap .content_wrap_inner .content_top .content p{
    font-size: var(--font-size-sm);
  }
  .type9 .content_wrap .content_wrap_inner .content_bottom{
    gap: var(--gap-5);
  }
  .type9 .content_wrap .content_wrap_inner .content_bottom h4{
    font-size: var(--font-size-xl);
  }
  .type9 .content_wrap .content_wrap_inner .content_bottom .list{
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-5);
  }
  .type9 .content_wrap .content_wrap_inner .content_bottom .list .item{
    padding: var(--gap-5) 0;
    font-size: var(--font-size-lg);
  }
}

.type10{
  width: 100%;
  height: 600px;
  background-image: url(../img/service/suspension_section3_img1.png);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.type10 .content{
  display: flex;
  flex-flow: column;
  gap: var(--gap-8);
  text-align: center;
  padding: 0 var(--padding-x);
}
.type10 .content h3{
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: #fff;
}
.type10 .content p{
  font-size: var(--font-size-3xl);
  font-weight: 500;
  color: #fff;
}

@media (max-width: 768px) {
  .type10{
    height: 62.5vw;
  }
  .type10 .content{
    gap: var(--gap-5);
  }
  .type10 .content h3{
    font-size: var(--font-size-4xl);
  }
  .type10 .content p{
    font-size: var(--font-size-sm);
  }
}


.type11{
  width: 100%;
  padding: 150px 0;
}
.type11 .content{
  display: flex;
  flex-flow: column;
  gap: var(--gap-6);
  text-align: center;
  padding: 0 var(--padding-x);
}
.type11 .content h3{
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--text-color);
  padding-bottom: var(--gap-4);
  position: relative;
}
.type11 .content h3::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: var(--primary-color);
}
.type11 .content p{
  font-size: var(--font-size-lg);
  color: #000;
  line-height: 1.3;
  font-weight: 500;
}

@media (max-width: 768px) {
  .type11{
    padding: var(--gap-12) 0;
  }
  .type11 .content{
    gap: var(--gap-5);
  }
  .type11 .content h3{
    font-size: var(--font-size-4xl);
    padding-bottom: var(--gap-1);
  }
  .type11 .content h3::before{
    width: 25vw;
    height: 3px;
  }
  .type11 .content p{
    font-size: var(--font-size-xs);
  }
}


.section_bottom{
  width: 100%;
  height: 800px;
}
.section_bottom img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px) {
  .section_bottom{
    height: 37.5vw;
  }
}


.service-oil-filter .section3{
  width: 100%;
  padding: 120px 0;
}
.service-oil-filter .section3 .content_wrap{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  gap: 104px;
}
.service-oil-filter .section3 .content_wrap .content_top{
  display: flex;
  flex-flow: column;
  gap: var(--gap-9);
}
.service-oil-filter .section3 .content_wrap .content_top h3{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
}
.service-oil-filter .section3 .content_wrap .content_top .content{
  display: flex;
  flex-flow: column;
  gap: var(--gap-14);
}
.service-oil-filter .section3 .content_wrap .content_top .content .steps{
  display: flex;
  align-items: center;
}
.service-oil-filter .section3 .content_wrap .content_top .content .steps .step{
  flex: 1;
  height: 180px;
  padding: var(--gap-9) var(--gap-2);
  background: var(--primary-color);
  border-radius: 15px;
  display: flex;
  flex-flow: column;
  gap: var(--gap-2);
  text-align: center;
}
.service-oil-filter .section3 .content_wrap .content_top .content .steps .step h4{
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #fff;
}
.service-oil-filter .section3 .content_wrap .content_top .content .steps .step p{
  flex: 1;
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: #fff;
}
.service-oil-filter .section3 .content_wrap .content_top .content .steps .step p span{
  font-size: var(--font-size-base);
  font-weight: 700;
}
.service-oil-filter .section3 .content_wrap .content_top .content>p{
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #000;
  text-align: center;
}
.service-oil-filter .section3 .content_wrap .content_top .content>p span{
  font-size: var(--font-size-xl);
  font-weight: 700;
}
.service-oil-filter .section3 .content_wrap .content_bottom{
  display: flex;
  flex-flow: column;
  gap: var(--gap-12);
}
.service-oil-filter .section3 .content_wrap .content_bottom .content1{
  display: flex;
  flex-flow: column;
  gap: var(--gap-9);
}
.service-oil-filter .section3 .content_wrap .content_bottom .content1 .content1_img{
  display: flex;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content1 .content1_img img{
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content1 .content1_img div{
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: var(--gap-14);
  background: var(--primary-color);
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content1 .content1_img div span{
  font-size: var(--font-size-xl);
  font-weight: 700;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content1>p{
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #000;
  text-align: center;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content1>p span{
  font-size: var(--font-size-xl);
  font-weight: 700;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content2{
  display: flex;
  flex-flow: column;
  gap: var(--gap-9);
}
.service-oil-filter .section3 .content_wrap .content_bottom .content2 img{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content2 >p{
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #000;
  text-align: center;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content2>div{
  display: flex;
  flex-flow: column;
  gap: var(--gap-6);
}
.service-oil-filter .section3 .content_wrap .content_bottom .content2>div h3{
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--text-color);
  text-align: center;
  padding-bottom: var(--gap-4);
  position: relative;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content2>div h3::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: var(--primary-color);
}
.service-oil-filter .section3 .content_wrap .content_bottom .content2>div>p{
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.3;
}
.service-oil-filter .section3 .content_wrap .content_bottom .content2>div>p span{
  font-size: var(--font-size-xl);
  font-weight: 700;
}

@media (max-width: 768px) {
  .service-oil-filter .section3{
    padding-top: var(--gap-6);
    padding-bottom: var(--gap-12);
  }
  .service-oil-filter .section3 .content_wrap{
    gap: var(--gap-12);
  }
  .service-oil-filter .section3 .content_wrap .content_top{
    gap: var(--gap-6);
  }
  .service-oil-filter .section3 .content_wrap .content_top h3{
    font-size: var(--font-size-xl);
  }
  .service-oil-filter .section3 .content_wrap .content_top .content{
    gap: var(--gap-6);
  }
  .service-oil-filter .section3 .content_wrap .content_top .content .steps .arrow{
    display: none;
  }
  .service-oil-filter .section3 .content_wrap .content_top .content .steps{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .service-oil-filter .section3 .content_wrap .content_top .content .steps .step{
    height: 35vw;
    padding: var(--gap-5) var(--gap-2);
  }
  .service-oil-filter .section3 .content_wrap .content_top .content .steps .step h4{
    font-size: var(--font-size-sm);
  }
  .service-oil-filter .section3 .content_wrap .content_top .content .steps .step p{
    font-size: var(--font-size-xs);
  }
  .service-oil-filter .section3 .content_wrap .content_top .content .steps .step p span{
    font-size: var(--font-size-xs);
  }
  .service-oil-filter .section3 .content_wrap .content_top .content>p{
    font-size: var(--font-size-base);
  }
  .service-oil-filter .section3 .content_wrap .content_top .content>p span{
    font-size: var(--font-size-base);
  }
  .service-oil-filter .section3 .content_wrap .content_bottom{
    gap: var(--gap-12);
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content1{
    gap: var(--gap-5);
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content1 .content1_img{
    flex-flow: column;
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content1 .content1_img img{
    width: 100%;
    height: auto;
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content1 .content1_img div{
    padding-left: var(--gap-5);
    padding: var(--gap-8) var(--gap-5);
    font-size: var(--font-size-base);
    border-radius: 0 0 10px 10px;
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content1 .content1_img div span{
    font-size: var(--font-size-base);
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content1>p{
    font-size: var(--font-size-base);
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content1>p span{
    font-size: var(--font-size-base);
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content2{
    gap: var(--gap-5);
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content2 img{
    height: 37.5vw;
    border-radius: 10px;
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content2 >p{
    font-size: var(--font-size-base);
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content2>div{
    gap: 10px;
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content2>div h3{
    font-size: var(--font-size-xl);
    padding-bottom: 10px;
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content2>div h3::before{
    width: 25vw;
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content2>div>p{
    font-size: var(--font-size-base);
  }
  .service-oil-filter .section3 .content_wrap .content_bottom .content2>div>p span{
    font-size: var(--font-size-base);
  }
}


.service-oil-filter .section4{
  width: 100%;
  padding: 120px 0;
}
.service-oil-filter .section4 .content_wrap{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  gap: 88px;
}
.service-oil-filter .section4 .content_wrap .content_top{
  display: flex;
  flex-flow: column;
  gap: var(--gap-12);
}
.service-oil-filter .section4 .content_wrap .content_top>p{
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #000;
  text-align: center;
}
.service-oil-filter .section4 .content_wrap .content_top >p span{
  font-size: var(--font-size-xl);
  font-weight: 700;
}
.service-oil-filter .section4 .content_wrap .content_top .content_img{
  display: flex;
}
.service-oil-filter .section4 .content_wrap .content_top .content_img img{
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.service-oil-filter .section4 .content_wrap .content_top .content_img div{
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: var(--gap-14);
  background: var(--primary-color);
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}
.service-oil-filter .section4 .content_wrap .content_bottom{
  display: flex;
  flex-flow: column;
  gap: var(--gap-6);
}
.service-oil-filter .section4 .content_wrap .content_bottom h3{
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--text-color);
  text-align: center;
  padding-bottom: var(--gap-4);
  position: relative;
}
.service-oil-filter .section4 .content_wrap .content_bottom h3::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: var(--primary-color);
}
.service-oil-filter .section4 .content_wrap .content_bottom>p{
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .service-oil-filter .section4{
    padding-top: var(--gap-5);
    padding-bottom: var(--gap-12);
  }
  .service-oil-filter .section4 .content_wrap{
    gap: var(--gap-5);
  }
  .service-oil-filter .section4 .content_wrap .content_top{
    gap: var(--gap-12);
  }
  .service-oil-filter .section4 .content_wrap .content_top>p{
    font-size: var(--font-size-base);
  }
  .service-oil-filter .section4 .content_wrap .content_top >p span{
    font-size: var(--font-size-base);
  }
  .service-oil-filter .section4 .content_wrap .content_top .content_img{
    flex-flow: column;
  }
  .service-oil-filter .section4 .content_wrap .content_top .content_img img{
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }
  .service-oil-filter .section4 .content_wrap .content_top .content_img div{
    padding-left: var(--gap-5);
    padding: var(--gap-8) var(--gap-5);
    font-size: var(--font-size-base);
    border-radius: 0 0 10px 10px;
  }
  .service-oil-filter .section4 .content_wrap .content_bottom{
    gap: 10px;
  }
  .service-oil-filter .section4 .content_wrap .content_bottom h3{
    font-size: var(--font-size-xl);
    padding-bottom: 10px;
  }
  .service-oil-filter .section4 .content_wrap .content_bottom h3::before{
    width: 25vw;
  }
  .service-oil-filter .section4 .content_wrap .content_bottom>p{
    font-size: var(--font-size-sm);
  }
}