/* 공통 CSS 영역 */




:root {
  /* color */
  --white-color: #fff;
  --border-color: #dedede;
  --lightgray-color: #dedede;
  --bg-color: #0d0d0d;
  --point-color: #ffba00;

  /* font-size */

  --title-font: 40px;
  --sub-font: 16px;
  /* size */

  --title-padding: 28px;
  
}

* {
  scroll-behavior: smooth;
  font-family: Arial, Helvetica, sans-serif;
}

.strong-color {
  color: var(--point-color);
}


.btn-active {
  color: var(--point-color)!important;
  font-weight: bold;
}
/*
.pagination-active {
  background-color: var(--point-color)!important;
} */

body {
  background-color: var(--bg-color);
  position: relative;
  width: 100%;
}

.wrap {
  position: relative;
}

.title-font {
  font-size: var(--title-font);
  font-weight: 900;
}

#logo-link {
  position: relative;
  z-index: 100000;
}

.sub-font {
  font-size: var(--sub-font);
  color: #cecece;
  line-height: 32px;
}

.inner {
  width: 1440px;
  margin: 0px auto;
}


.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

.black-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.black-line{
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 400px;
  bottom: -140px;
  background: url(../img/Main-Banner0Shadow.png) no-repeat center;
}

/* 헤더 영역 */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(255, 0, 0, 0), rgb(0, 0, 0));
  z-index: 99999;
  transition: .5s;
}

/* 헤더 css 임시 */

.header:hover {
  background: var(--white-color);
}

.header:hover .head-wrap .top-gnb li > a {
  color: #000;
}

.header:hover .first-col {
  display: block;
}

.header:hover .head-wrap .top-gnb2 li > a {
  color: #000;
}

.head-wrap .top-gnb li > a:hover {
  color: var(--point-color)!important;
}

.head-wrap .top-gnb2 li > a:hover {
  color: var(--point-color)!important;
}

.first-col li > a:hover {
  color: var(--point-color);
}



.header:hover  {
  background: var(--white-color);
}

.head-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 989;
}

#main-logo {
  position: relative;
  display: inline-block;
  padding: 20px 0;
}

.top-gnb{
  display: flex;
  margin-left: 100px;
}

.top-gnb2 {
  display: flex;
  margin-left: auto;
}


.head-wrap .top-gnb2 li {
  margin-right: 60px;
  text-align: center;
  white-space: nowrap;
}

.head-wrap .top-gnb li {
  text-align: left;
  width: 140px;
}



.head-wrap .top-gnb li > a,
.head-wrap .top-gnb2 li > a {
  font-size: 14px;
  color: white;
  font-weight: 500;
}

.top-searchbar {
  width: 102px;
  height: 28px;
  background-color: #ccc;
  border-radius: 4px;
  position: relative;
}

fieldset {
  display: flex;
  margin-left: 6px;
  height: 28px;
  align-items: center;
}

fieldset > input {
  width: calc(100% - 16px);
}

.hide-gnb {
  position: absolute;
  top: 80px;
  background-color: var(--white-color);
  width: 100%;
  height: 0px;
  transition: .5s;
  border-top: 1px solid var(--border-color);
}

.hide-gnb-wrap {
  margin-left: 205px;
  padding-top: 24px;
  padding-bottom: 32px;
  display: flex;
  width: 575px;
  white-space: nowrap;
  transition: .5s;
}

.hide-gnb ul li {
  margin-bottom: 12px;
}

.hide-gnb ul li a {
  color: #0B0B0B;
  font-size: 12px;
}


.first-col {
  width: 140px;
  display: none;
}





/* 메인 배너 영역 */

.hero {
  position: relative;
}

.main-img {
  position: relative;
  background: url(../img/pc-bg.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  z-index: 4;
}

.main-txt {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 650;
}

.main-txt h2 {
  font-size: 160px;
  color: var(--white-color);
  font-weight: 800;
}

.main-sub {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--white-color);
  line-height: 60px;
  color: #ffba00;
}

.main-sub2 {
  text-align: left;
  font-weight: 600;
  color: var(--white-color);
  font-size: 20px;
  margin-top: 16px;
  margin-left: 12px;
  line-height: 32px;
}

.main-btn-wrap {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
}

.main-btngroup {
  display: flex;
  justify-content: center;
}

.main-btn {
  display: block;
  background: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding-right: 16px;
  padding-left: 36px;
  width: 143px;
  border-radius: 4px;
  margin-right: 40px;
  position: relative;
  cursor: pointer;
}

.main-btn span {
  position: relative;
  display: inline-block;
  line-height: 48px;
  color: #fff;
  padding-left: 16px;
  font-weight: bold;
  z-index: 10003;
}

.main-btn span.ride-qna::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: url(../img/mdi_car.png) no-repeat center center;
}

.main-btn span.carculate::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: url(../img/mdi_calculator.png) no-repeat center center;
}

.main-btn span.katalog::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: url(../img/material-symbols_book-2.png) no-repeat center center;
}

.main-btn span.cs-support::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: url(../img/mdi_phone-clock.png) no-repeat center center;
}

.main-btn span.promotion::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: url(../img/mdi_sale.png) no-repeat center center;
}

/* car-select */

.car-select h2,
.car-select span {
  color: #fff;
}

.car-spec {
  width: 300px;
  justify-content: space-between;
  display: flex;
}

.car-recommend {
  font-size: 14px;
}

.car-title {
  margin-bottom: 60px;
}

.car-title > p {
  font-size: 18px;
  color: #9d9d9d;
  margin-bottom: 12px;
}

.car-title h2 {
  font-size: 44px;
  font-weight: 900;
}


.car-spec .spec-tit {
  font-size: 24px;
  color: #cecece;
}

.car-spec .spec-sub {
  margin-top: 20px;
  font-size: 28px;
  color: #fff;
}

.car-recommend {
  margin-top: 20px;
  color: #cecece;
}


/* car - swiper  */

.carSwiper {
  width: 1440px;
  margin: 0px auto;
  overflow-x: hidden;
}

.car-select {
  padding-top: 140px;
  padding-bottom: 200px;
}


.carSwiper .swiper-wrapper {
  position: relative;
  width: 100%;
  display: flex;  
}

.carSwiper .swiper-slide .car-total-wrap {
  display: flex;
  align-items: center;
  width: 1440px;
  padding: 0px 100px;
  justify-content: space-between;
}

.carSwiper .swiper-slide img {
  display: block;
  /* border: 1px solid red; */
  object-fit: contain;
}

.carSwiper .swiper {
  margin-left: auto;
  margin-right: auto;
}

/* 스와이퍼 위치 및 넓이 설정 */
.carSwiper .swiper-pagination {
  position: relative;
  text-align: left;
  width: 1240px;
  padding-left: 100px;
  z-index: 999828;
  bottom: 100px!important;
}

/* 스와이퍼 페이지 네이션 설정 */
.carSwiper .swiper-pagination .swiper-pagination-bullet { 
background-color:lightgray; 
border-radius: 0px!important;
display: inline-block;
width:12px; height:12px;
margin-right:20px!important;
} 

/* 스와이퍼 페이지 네이션 활성화 색상 설정 */
.carSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffba00;
}

.swiper-button-prev {  left:0px; color: #dedede!important; opacity: 0.6;}
.swiper-button-next {  right:0px;color:#dedede!important; opacity: 0.6;}







/* 브랜드 스토리 */

.brand-story {
  padding-bottom: 200px;
  background-color: #0d0d0d;
}

.count-interact {
  padding-top: 150px;
}

.brand-story .sub-font {
  margin-top: 28px;
}

.brand-content {
  padding-top: 180px;
}


.table-flex {
  position: relative;
  margin-top: 150px;
  display: flex;
  justify-content: end;
}

.table-head {
  position: absolute;
  /* border: 1px solid yellow; */
  width: 100%;
  line-height: 1em;
  left: 100px;
  top: 80px;
  margin-right: 350px;
  font-size: 140px;
  color: var(--point-color);
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}

.table {
  display: flex;
  justify-content: end;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
  /* border: 1px solid red; */
  border-bottom: 1px solid var(--border-color);
  opacity: 0.2;
  transition: all .8s;
  position: relative;
}

.table .table-year {
  margin-right: 160px;
  font-size: 36px;
  font-weight: bold;
}

.table .table-sub {
  color: var(--lightgray-color);
  line-height: 32px;
}

/* 브랜드 인기모델 */

.popular-model {
  position: relative;
  margin-top: 120px;
}

.radial-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url(../img/bg-radial.png) no-repeat center;
  width: 1030px;
  height: 1030px;
  z-index: -1;
}

.popular-model .inner {
  text-align: center;
  padding-bottom: 100px;
}

.rank-btn {
  color: var(--white-color);
  font-size: 24px;
  padding-right: 40px;
  cursor: pointer;
}

.rank-wrap .title-font {
  padding-bottom: var(--title-padding);
}

.rank-wrap .sub-font {
  padding-bottom: 80px;
}


.car-imgwrap {
  display: flex;
  flex-direction: column;
  padding-top: 180px;
  padding-bottom: 180px;
}

.car-imgbox {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding-bottom: 60px;
  justify-content: center;
  /* 축소 기능 비활성화 */
  flex-shrink: 0;
}

.car-imgbox img {
  width: 355px;
  height: 240px;  
}

.car-name {
  text-align: left;
  padding-left: 120px;
  /* border:1px dashed yellow; */
  width:670px;
}

.car-name h2 {
  font-size: 36px;
  font-weight: 800;
}

.car-name p {
  font-size: 20px;
  font-weight: 400;
  padding-top: 16px;
}

.car-name .hash-tag {
  font-size: 16px;
  font-weight: 400;
  color: var(--lightgray-color);
  padding-left: 24px;
}

/* border에 넣으려면 더 복잡하다. 그냥 이렇게 넣어도 될듯 */

.trans-border {
  height: 1px;
  background-image:linear-gradient(to right, rgba(255,0,0,0), rgb(255, 255, 255), rgba(255,0,0,0)) ;
}

#whole-ranking {display: block; }
#ranking-20 {display: none; }
#ranking-30 {display: none; }
#ranking-40 {display: none;}

.display-change {
  display: block;
}































/* 나만의 JEEP 만들기 */

.own-jeep {
  padding-bottom: 240px;
}

.own-jeep .inner {
  text-align: center;
}


.own-jeep .title-font {
  padding: var(--title-padding);
}

.own-jeep .img-grid {
  display: grid;
  margin: 0px auto;
  width: 1440px;
  height: 660px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-auto-rows: 480px;
  grid-gap: 20px;
  grid-template-areas: 
  'a b b'
  'a c d'
  ;
  margin-top: 180px;
}

.own-jeep .img-grid .items {
  position: relative;
}

.own-jeep .img-grid .items-sub {
  position: absolute;
  z-index: 1;
  bottom: 32px;
  left: 32px;
}

.items-sub p:nth-child(1) {
  font-weight: 800;
  font-size: 32px;
  padding-bottom: 8px;
}

.items-sub p:nth-child(2) {
  font-size: 18px;
} 


.own-jeep img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.itemA {
  grid-area: a;
  cursor: pointer;
  overflow: hidden;
}


.itemA:hover .hover-item1 {
  transform: scale(1.1);
}



.itemB {
  grid-area: b;
  cursor: pointer;  
}

.caution {
  font-size: 13px;
  color: var(--border-color);
}

.itemC {
  overflow: hidden;
}


.own-jeep img {
  transition: all 0.5s;
}

.img-wrapping {
  overflow: hidden;
}

.itemC:hover .hover-item3 , .itemD:hover .hover-item4 {
  transform: scale(1.1);
}

.itemB:hover .hover-item2 {
  transform: scale(1.1);

}






/* 카탈로그 */

.catalog {
  text-align: center;
}

.catalog-box {
  padding-top: 20px;
  position: relative;
}

.acceso-select .title-font, .catalog-select .title-font {
  padding-bottom: var(--title-padding);
}

.catalog-txt p {
  font-size: 20px;
  font-weight: 300;
  /* font-style: italic; */
  color: var(--lightgray-color);
}

.catalog-txt h2 {
  margin-top: 10px;
  font-size: 44px;
  font-weight: 800;
}

.catalog-txt button {
  margin-top: 60px;
  color: #000;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 8px;
  background-color: var(--point-color);
  cursor: pointer;
}

.catalog-txt a {
  padding-left: 20px;
  font-weight: 500;
}

.catalog .title-font {
  padding-bottom: var(--title-padding);
}

.catalog-btn {
  padding-top: 80px;
}

.catalog-btn .car-btn , .catalog-btn .accesori-btn {
  font-size: 24px;
  color: var(--white-color);
  cursor: pointer;
}

.slide1 {
  padding-top: 80px;
}

/* 카탈로그 스와이퍼 */


.catalogSwiper {
  width: 1240px;
  margin: 0px auto;
  overflow: visible!important;
}

.catalog-select {
  text-align: center;
  display: block;
}

.catalog-select , .acceso-select {
  padding-bottom: 180px;
  overflow-x: hidden;
}

.catalog-select, .acceso-select {
  padding-top: 60px;
} 


.catalogSwiper .swiper-wrapper {
  position: relative;
  width: 100%;
  display: flex;  
}

.catalogSwiper .swiper-slide .catalog-total-wrap {
  display: flex;
  align-items: center;
  width: 1240px;
  padding: 0px 100px;
  justify-content: space-between;
}


.catalogSwiper .swiper-slide img {
  display: block;
  /* border: 1px solid red; */
  object-fit: contain;
}

.catalogSwiper .swiper {
  margin-left: auto;
  margin-right: auto;
}

.catalogSwiper .swiper-slide {
  width: 100%;
  transform: scale(0.9)!important;
  transition: 0.5s;
  opacity: 0.4;
}

.catalogSwiper .swiper-slide-active {
  transform: scale(1)!important;
  opacity: 1;
}






.catalogSwiper .catalog-txt {
  text-align: left;
  position: absolute;
  top: 160px;
  left: 160px;
} 




/* 스와이퍼 위치 및 넓이 설정 */
.catalogSwiper .swiper-pagination {
  position: relative;
  text-align: left;
  width: 1240px;
  padding-left: 100px;
  z-index: 999828;
}

/* 스와이퍼 페이지 네이션 설정 */
.catalogSwiper .swiper-pagination .swiper-pagination-bullet { 
background-color:lightgray; 
border-radius: 0px!important;
display: inline-block;
width:12px; height:12px;
margin-right:20px!important;
} 

/* 스와이퍼 페이지 네이션 활성화 색상 설정 */
.catalogSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffba00;
}

.catalogSwiper .swiper-button-prev {  left:0px; color: #dedede!important; opacity: 0.6;}
.catalogSwiper .swiper-button-next {  right:0px;color:#dedede!important; opacity: 0.6;}


/* 액세서리 카탈로그  */


.acceso-select {
  text-align: center;
  display: none;
}

.accesoriSwiper {
  width: 1240px;
  margin: 0px auto;
  overflow: visible!important;
}

.accesoriSwiper .swiper-wrapper {
  position: relative;
  width: 100%;
  display: flex;  
}

.accesoriSwiper .swiper-slide .catalog-total-wrap {
  display: flex;
  align-items: center;
  width: 1240px;
  padding: 0px 100px;
  justify-content: space-between;
}


.accesoriSwiper .swiper-slide img {
  display: block;
  object-fit: contain;
}

.accesoriSwiper .swiper {
  margin-left: auto;
  margin-right: auto;
}

.accesoriSwiper .swiper-slide {
  position: relative;
  transform: scale(0.9);
  transition: 0.5s;
  opacity: 0.5;
}

.accesoriSwiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}




.accesoriSwiper .catalog-txt {
  text-align: left;
  position: absolute;
  top: 160px;
  left: 160px;
} 




/* 스와이퍼 위치 및 넓이 설정 */
.accesoriSwiper .swiper-pagination {
  position: relative;
  text-align: left;
  width: 1240px;
  padding-left: 100px;
  z-index: 999828;
  top: 24px;
}

/* 스와이퍼 페이지 네이션 설정 */
.accesoriSwiper .swiper-pagination .swiper-pagination-bullet { 
background-color:lightgray; 
border-radius: 0px!important;
display: inline-block;
width:12px; height:12px;
margin-right:20px!important;
} 

/* 스와이퍼 페이지 네이션 활성화 색상 설정 */
.accesoriSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffba00;
}

.accesoriSwiper .swiper-button-prev {  left:0px; color: #dedede!important; opacity: 0.6;}
.accesoriSwiper .swiper-button-next {  right:0px;color:#dedede!important; opacity: 0.6;}

















/* 시승 신청 폼 */

.car-form {
  text-align: center;
}

.car-form .title-font {
  padding-bottom: var(--title-padding);
}

.must-font {
  text-align: left;
  padding-bottom: 20px;
}


.form-example label {
  display: none;
}

/* .form-left .select-label {
  display: block;
} */

#exhibition, #know , #when-buy, #whatgoal {
  color: gray;
  background-color: transparent;
  position: relative;
}


.form-example .form-main {
  border-bottom: 1px solid #fff;
  color: #fff;
  width: 660px;
  font-weight: bold;
  padding-bottom: 12px;
  padding-top: 16px;
  font-size: 16px;
}





#car-form{
  margin-top: 120px;

}

.car-form-wrap {
  display: flex;
  width: 1440px;
  justify-content: space-between;
  /* padding-bottom: 32px; */
}

.subform {
  padding-bottom: 0;
}


 .form-left{ 
  padding-right: 60px;
}

.form-left {
  padding-bottom: 60px;
}

.form-left:last-child {
  padding-bottom: 0px;
}

.form-right .form-example:last-child {
  padding-bottom: 0px;
}

.form-right .form-example {
  padding-bottom: 60px;

}


.subform .form-left, .subform .form-right {
  padding-bottom: 80px;
}

.subform .form-left:last-child, .subform .form-right:last-child {
  padding-bottom: 32px;
}



.form-example .form-complete {
  border: none;
  display: inline-block;
  padding: 12px 40px;
  font-weight: 800;
  background-color: var(--point-color);
  border-radius: 8px;
  cursor: pointer;
}

.form-btm label {
  display: none;
}

.form-btm {
  display:flex;
  margin-right: auto;
  justify-content: space-between;
}


.form-total-wrap {
  display: flex;
}



input[type="submit"] {
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.personal {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.personal input {
    appearance:none;
    border:1px solid var(--border-color);
    width:16px; height:16px;
    margin-right: 12px;
}
.personal input:checked { background:var(--point-color); } /* check box 체크 되었을 때 style */

.select {
  background: url(../img/select-btn.jpg) no-repeat right ;
  background-size: 28px;
}

.form-must {
  position: relative;
}

.form-must::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 8px;
  height: 8px;
   background: url(../img/must-select.png) no-repeat center ;
  background-size: 8px; 
}

.select option {
  background-color: var(--bg-color);
  color: #fff;
  outline: 0;
  padding: 8px 0;
}




















/* 푸터 영역 */

.footer {
  height: 400px;
  background-color: #0B0B0B;
  margin-top: 180px;
  /* position: fixed;
  bottom: 0;
  margin: 0px auto;
  width: 100%; */
}

#sub-2footer {
  height: 400px;
  background-color: #0B0B0B;
  position: fixed;
  bottom: 0;
  margin: 0px auto;
  width: 100%;
}


.top-footer p:nth-child(1) {
  margin-bottom: 20px;
}

.top-footer span {
  font-size: 14px;
  margin-right: 36px;
}

.sns-wrap a {
  display: inline-block;
  margin-right: 28px;
}

.sns-wrap a.instagram {
  content: '';
  background: url(../img/mdi_instagram.png) no-repeat center;
  display:inline-block;
  width: 40px;
  height: 40px;
}

.sns-wrap a.youtube {
  content: '';
  background: url(../img/ri_youtube-fill.png) no-repeat center;
  display:inline-block;
  width: 40px;
  height: 40px;
}
.sns-wrap a.kakao {
  content: '';
  background: url(../img/ri_kakao-talk-fill.png) no-repeat center;
  display:inline-block;
  width: 40px;
  height: 40px;
}

.sns-wrap a.facebook::before {
  content: '';
  background: url(../img/f7_logo-facebook.png) no-repeat center;
  display:inline-block;
  width: 40px;
  height: 40px;
}

.top-footwrap {
  display: flex;
  justify-content: space-between;
  padding-top: 100px;
}

.footer-btm {
  margin-top: 80px;
}

.footer-btm img {
  margin-bottom: 16px;
}

.copy-right {
  color: darkgray;
}



/* 서브 페이지 */


.car-caculate .inner {
  text-align: left;
}

#calculate-form {
  margin-top: 40px;
}

/* carform 스와이퍼*/

.car-sub-form {
  padding: 0 100px;
}

.carform-select .inner {
  margin-bottom: 80px;
}

.carform-select .inner .title-font {
  padding-bottom: var(--title-padding);
}

.carform-select .inner .sub-font {
  font-size: 24px;
}

.carform-select {
  margin-top: 200px;
}


.carformSwiper {
  width: calc(100% - 200px);
  margin: 0px auto;
  height: 300px;
  /* overflow-x: hidden; */
  /* border: 1px solid red; */
}

.car-select {
  padding-top: 140px;
  padding-bottom: 200px;
}




.carformSwiper .swiper-slide-active {
  opacity: 1;
}


.carformSwiper .swiper-slide {
  text-align: center;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* flex: 0 0 355px!important; */
  width: 100%;
  /* flex-shrink: 1!important; */
  transform: scale(0.9);
  opacity: 0.6;
}

#window-load-slide {
  border: 3px solid var(--point-color);
  transform: scale(1);
  opacity: 1;
}




.carformSwiper .swiper-slide .img-box p {
  padding-top: 8px;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.carformSwiper .swiper-slide .img-box {
  width: 400px;
}

.carformSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carformSwiper .swiper {
  margin-left: auto;
  margin-right: auto;
}

/* 스와이퍼 위치 및 넓이 설정 */
.carformSwiper .swiper-pagination {
  display: none;
  position: relative;
  text-align: left;
  width: 100%;
  padding-left: 100px;
  z-index: 999828;
  /* bottom: 40px!important; */
}

/* 스와이퍼 페이지 네이션 설정 */
.carformSwiper .swiper-pagination .swiper-pagination-bullet { 
background-color:lightgray; 
border-radius: 0px!important;
display: inline-block;
width:16px; height:16px;
margin-right:20px!important;
} 

/* 스와이퍼 페이지 네이션 활성화 색상 설정 */
.carformSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffba00;
}

.carformSwiper .swiper-button-prev {  left:0px; color: #dedede!important; opacity: 0.6;}
.carformSwiper .swiper-button-next {  right:0px;color:#dedede!important; opacity: 0.6;}




/* sub-2 */

.carculate-ok {
  padding-top: 240px;
}

.carculate-ok .inner {
  display: flex;
  justify-content: center;
}

.carculate-font {
  margin-right: 120px;
}

.carculate-ok .title-font {
  padding-bottom: var(--title-padding);
}

.carculate-ok .sub-font {
  padding-bottom: 12px;
}

.carculate-ok .cs-font {
  line-height: 1.5em;
  color: var(--lightgray-color);
}

.sub-img-box {
  width: 355px;
  height: 240px;
}


/* 팝업 부분 */

.pop-wrap {
  /* background-color: var(--bg-color); */
  background-color: #fff;
  opacity: 0.95;
}

.easy-modeBtn, .easy-modeBtn2, .easy-modeBtn3 {
  cursor: pointer;
  color: #0B0B0B;
}


.pop-right {
  color: var(--point-color);
  cursor: pointer;
  margin-left: 6px;
  text-decoration: underline;
} 

.pop-wrap .close-btn {
  display: block;
  background:url(../img/close_btn.png) no-repeat center;
  width: 24px;
  height: 24px;
  margin-right: 20px;
}


.pop-wrap .title-font {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 16px;
  color: #0B0B0B;

}

.pop-wrap .sub-font {
  /* color: #fff; */
  color: #0B0B0B;
  opacity: 0.9;
}


.pop-wrap .main-logo {
  display: inline-block;
  height: 32px;
  margin-left: 20px;
}

.pop-wrap .main-logo img {
  height: 100%;
}

.pop-inner {
  padding: 0 20px;
  margin: 0px auto;
}

.easy-modeBtn, .easy-modeBtn2, .easy-modeBtn3 {
  background-color: var(--point-color);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 700;
  margin-left: auto;
  margin-right: 20px;
}

.pop-title { 
  font-weight: 800;
  display: inline-block;
  font-size: 24px;
  margin-left: 20px;
}

.pop-head {
  /* border-bottom: 1px solid var(--border-color); */
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #202020;
}

/* 개인정보 처리 목적 */

.text-container {
  padding: 32px 0;
}

.pop-wrap .personal {
  display: inline-flex;
  align-items: center;
  background-color: #202020;
  padding: 8px 12px;
  position: fixed;
  bottom: 8px;
  right: 20px;
  border-radius: 4px;
}

/* 정보주체 권리 */

.info-right {
  line-height: 1.5em;
}