style.scss 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552
  1. @font-face {
  2. font-family: 'AudiType';
  3. src: url('/fonts/AudiTypeVF.woff2') format('woff2-variations');
  4. font-display: swap;
  5. font-style: normal;
  6. font-stretch: 130%;
  7. }
  8. // Utility classes for padding and margin (1-100)
  9. @for $i from 0 through 200 {
  10. // Padding
  11. .pt--#{$i} { padding-top: #{$i}px !important; }
  12. .pr--#{$i} { padding-right: #{$i}px !important; }
  13. .pb--#{$i} { padding-bottom: #{$i}px !important; }
  14. .pl--#{$i} { padding-left: #{$i}px !important; }
  15. .p--#{$i} { padding: #{$i}px !important; }
  16. // Margin
  17. .mt--#{$i} { margin-top: #{$i}px !important; }
  18. .mr--#{$i} { margin-right: #{$i}px !important; }
  19. .mb--#{$i} { margin-bottom: #{$i}px !important; }
  20. .ml--#{$i} { margin-left: #{$i}px !important; }
  21. .m--#{$i} { margin: #{$i}px !important; }
  22. }
  23. body{
  24. background-color: hsla(216, 23%, 8%, 1);
  25. color: rgb(252, 252, 253);
  26. font-family: 'AudiType';
  27. font-weight: 400;
  28. &:has(.mobile--menu.active){
  29. overflow: hidden;
  30. }
  31. }
  32. .ellipsis1 {
  33. overflow: hidden;
  34. text-overflow: ellipsis;
  35. display: -webkit-box;
  36. -webkit-line-clamp: 1;
  37. -webkit-box-orient: vertical;
  38. }
  39. .ellipsis2 {
  40. overflow: hidden;
  41. text-overflow: ellipsis;
  42. display: -webkit-box;
  43. -webkit-line-clamp: 2;
  44. -webkit-box-orient: vertical;
  45. }
  46. .ellipsis3 {
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. display: -webkit-box;
  50. -webkit-line-clamp: 3;
  51. -webkit-box-orient: vertical;
  52. }
  53. *{
  54. background-repeat: no-repeat;
  55. }
  56. .ico, ::after, ::before{
  57. display: inline-block;
  58. background-repeat: no-repeat;
  59. background-position: center;
  60. }
  61. button{
  62. cursor: pointer;
  63. }
  64. // Header Styles
  65. header{
  66. position: relative;
  67. z-index: 1000;
  68. .header--wrap{
  69. display: flex;
  70. align-items: center;
  71. justify-content: space-between;
  72. padding: 20px 40px;
  73. position: relative;
  74. z-index: 1002;
  75. .header--logo--wrap{
  76. transition: opacity 0.3s;
  77. }
  78. }
  79. // 햄버거 버튼 (기본 숨김)
  80. .header--hamburger{
  81. display: none;
  82. flex-direction: column;
  83. justify-content: center;
  84. align-items: center;
  85. background: none;
  86. border: none;
  87. width: 18px;
  88. height: 18px;
  89. cursor: pointer;
  90. z-index: 1000;
  91. position: relative;
  92. span{
  93. position: absolute;
  94. width: 18px;
  95. height: 2px;
  96. background-color: rgb(252, 252, 253);
  97. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  98. &:nth-child(1){
  99. top: 12px;
  100. }
  101. &:nth-child(2){
  102. top: 50%;
  103. transform: translateY(-50%);
  104. }
  105. &:nth-child(3){
  106. bottom: 12px;
  107. }
  108. }
  109. &::after{
  110. content: 'Menu';
  111. position: absolute;
  112. color: #fcfcfd;
  113. font-size: 14px;
  114. left: calc(100% + 12px);
  115. }
  116. // 메뉴 열렸을 때 X 모양으로 변환
  117. &.active{
  118. span{
  119. &:nth-child(1){
  120. top: 50%;
  121. transform: translateY(-50%) rotate(45deg);
  122. }
  123. &:nth-child(2){
  124. opacity: 0;
  125. transform: translateY(-50%) scale(0);
  126. }
  127. &:nth-child(3){
  128. bottom: 50%;
  129. transform: translateY(50%) rotate(-45deg);
  130. }
  131. }
  132. }
  133. }
  134. .header--menu--wrap{
  135. display: flex;
  136. gap: 32px;
  137. >a{
  138. cursor: pointer;
  139. font-size: 16px;
  140. color: rgb(252, 252, 253);
  141. transition: opacity 0.3s ease;
  142. &:hover{
  143. opacity: 0.7;
  144. }
  145. }
  146. }
  147. // Dim Layer
  148. .header--dim{
  149. position: fixed;
  150. top: 0;
  151. left: 0;
  152. width: 100%;
  153. height: 100vh;
  154. background-color: hsla(216, 26%, 1%, 1);
  155. opacity: 0;
  156. visibility: hidden;
  157. transition: opacity 0.3s ease, visibility 0.3s ease;
  158. z-index: 999;
  159. &.active{
  160. opacity: 0.65;
  161. visibility: visible;
  162. }
  163. }
  164. // Submenu Navigation
  165. .header--submenu{
  166. position: absolute;
  167. top: 0;
  168. left: 0;
  169. width: 100%;
  170. max-height: 1000px;
  171. background-color: #020203;
  172. transform: translateY(-100%);
  173. transition: transform 0.3s ease;
  174. z-index: 1001;
  175. padding-top: 80px;
  176. &.active{
  177. transform: translateY(0);
  178. }
  179. .submenu--content{
  180. max-width: 1920px;
  181. margin: 0 auto;
  182. padding: 40px 96px 40px 205px;
  183. }
  184. .submenu--list{
  185. display: flex;
  186. flex-wrap: wrap;
  187. row-gap: 24px;
  188. >a{
  189. font-size: 14px;
  190. color: #fcfcfdb2;
  191. transition: opacity 0.3s ease;
  192. width: 34%;
  193. &:hover{
  194. opacity: 0.7;
  195. }
  196. }
  197. }
  198. }
  199. // 모바일 메뉴
  200. .mobile--menu{
  201. position: fixed;
  202. top: 0px;
  203. left: 0;
  204. width: 100%;
  205. height: calc(100vh - 72px);
  206. background-color: #020203;
  207. transform: translateY(-100%);
  208. transition: transform 0.4s ease;
  209. z-index: 999;
  210. overflow: hidden;
  211. display: none;
  212. &.active{
  213. transform: translateY(0);
  214. top: 72px;
  215. }
  216. .mobile--menu--header{
  217. display: flex;
  218. align-items: center;
  219. cursor: pointer;
  220. margin: 0 20px;
  221. padding: 28px 0 16px;
  222. border-bottom: 1px solid rgb(204, 204, 204);
  223. .back--btn{
  224. cursor: pointer;
  225. width: 24px;
  226. height: 24px;
  227. background-image: url(/img/ico--arrow.svg);
  228. transform: rotate(180deg);
  229. &~span{
  230. margin-left: 12px;
  231. font-size: 14px;
  232. color: #fcfcfdb2;
  233. }
  234. }
  235. }
  236. .mobile--menu--main{
  237. position: absolute;
  238. top: 0;
  239. left: 0;
  240. width: 100%;
  241. height: 100%;
  242. background-color: #020203;
  243. transition: transform 0.4s ease;
  244. &.hidden{
  245. transform: translateX(-100%);
  246. }
  247. .mobile--menu--list{
  248. display: flex;
  249. flex-direction: column;
  250. padding: 28px 20px;
  251. gap: 24px;
  252. >a{
  253. font-size: 14px;
  254. cursor: pointer;
  255. display: flex;
  256. justify-content: space-between;
  257. color: #fcfcfdb2;
  258. transition: all 0.3s ease;
  259. &:hover{
  260. color: rgb(252, 252, 253);
  261. }
  262. .ico{
  263. width: 24px;
  264. height: 24px;
  265. background-image: url(/img/ico--arrow.svg);
  266. }
  267. }
  268. }
  269. }
  270. .mobile--menu--sub{
  271. position: absolute;
  272. top: 0;
  273. right: 0;
  274. width: 100%;
  275. height: 100%;
  276. background-color: #020203;
  277. transform: translateX(100%);
  278. transition: transform 0.4s ease;
  279. &.active{
  280. transform: translateX(0);
  281. }
  282. .mobile--submenu--list{
  283. display: flex;
  284. flex-direction: column;
  285. padding: 28px 20px;
  286. gap: 24px;
  287. >a{
  288. font-size: 14px;
  289. color: #fcfcfdb2;
  290. transition: all 0.3s ease;
  291. &:hover{
  292. color: #fcfcfd;
  293. }
  294. }
  295. }
  296. }
  297. }
  298. }
  299. main{
  300. .main--container{
  301. max-width: 1920px;
  302. margin: 0 auto;
  303. .main--visual{
  304. width: 100%;
  305. height: calc(-72px + 100vh);
  306. position: relative;
  307. &::after{
  308. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 51.5%);
  309. position: absolute;
  310. top: 0;
  311. left: 0;
  312. width: 100%;
  313. height: 100%;
  314. z-index: 0;
  315. pointer-events: none;
  316. content: '';
  317. display: inline-block;
  318. }
  319. >div{
  320. width: 100%;
  321. height: 100%;
  322. >img{
  323. width: 100%;
  324. height: 100%;
  325. object-fit: cover;
  326. }
  327. >video{
  328. width: 100%;
  329. height: 100%;
  330. object-fit: cover;
  331. }
  332. &.text--wrap{
  333. position: absolute;
  334. z-index: 1;
  335. top: 0;
  336. height: fit-content;
  337. left: 0;
  338. padding: 40px 0 0 96px;
  339. h2{
  340. font-size: 44px;
  341. line-height: 64px;
  342. }
  343. p{
  344. margin-top: 8px;
  345. font-size: 20px;
  346. line-height: 32px;
  347. }
  348. .button--wrap{
  349. margin-top: 24px;
  350. display: flex;
  351. gap: 8px;
  352. }
  353. }
  354. }
  355. }
  356. .img--desc--section{
  357. display: flex;
  358. padding: 64px 96px;
  359. &.reverse{
  360. flex-direction: row-reverse;
  361. .desc--wrap{
  362. padding-right: 72px;
  363. }
  364. }
  365. .img--wrap{
  366. width: 50%;
  367. border-radius: 20px;
  368. overflow: hidden;
  369. img{
  370. width: 100%;
  371. height: 100%;
  372. object-fit: cover;
  373. }
  374. }
  375. .desc--wrap{
  376. width: 50%;
  377. display: flex;
  378. flex-direction: column;
  379. justify-content: center;
  380. padding: 0 72px;
  381. h3{
  382. font-size: 36px;
  383. margin-bottom: 8px;
  384. }
  385. h4{
  386. font-size: 24px;
  387. }
  388. p{
  389. font-size: 16px;
  390. color: rgba(252, 252, 253, 0.7);
  391. &.desc{
  392. font-size: 12px;
  393. }
  394. }
  395. }
  396. .btn--wrap{
  397. display: flex;
  398. gap: 8px;
  399. }
  400. }
  401. }
  402. .visual--section{
  403. position: relative;
  404. margin: 0 auto;
  405. max-width: 1920px;
  406. width: 100%;
  407. &::after{
  408. content: '';
  409. width: 100%;
  410. position: absolute;
  411. height: 100%;
  412. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  413. top: 0;
  414. left: 0;
  415. }
  416. &.h--800{
  417. .img--wrap{
  418. height: 800px;
  419. }
  420. }
  421. &.h--430{
  422. .img--wrap{
  423. height: 430px;
  424. img{
  425. object-position: 70% top;
  426. }
  427. }
  428. }
  429. .img--wrap{
  430. overflow: hidden;
  431. height: 100vh;
  432. img{
  433. width: 100%;
  434. max-width: 100%;
  435. height: 100%;
  436. object-fit: cover;
  437. }
  438. }
  439. .title--wrap{
  440. position: absolute;
  441. z-index: 3;
  442. top: 0;
  443. left: 0;
  444. color: rgb(2, 2, 3);
  445. padding: 40px 96px;
  446. >h2{
  447. font-size: 44px;
  448. margin-bottom: 8px;
  449. }
  450. >p{
  451. font-size: 20px;
  452. }
  453. .greeting--txt{
  454. margin-top: 30px;
  455. line-height: 1.7;
  456. font-size: 14px;
  457. height: 190px;
  458. }
  459. &.color--white{
  460. color: #fcfcfd;
  461. }
  462. }
  463. .desc--wrap{
  464. .desc{
  465. font-size: 12px;
  466. color: rgba(252, 252, 253, 0.7);
  467. padding: 24px 96px;
  468. }
  469. }
  470. }
  471. // audi stories
  472. .detail--container{
  473. max-width: 1920px;
  474. width: 100%;
  475. margin: 0 auto;
  476. .title--wrap{
  477. padding: 40px;
  478. text-align: center;
  479. h2{
  480. font-size: 72px;
  481. margin-bottom: 24px;
  482. }
  483. p{
  484. color: rgba(252, 252, 253, 0.7);
  485. font-size: 16px;
  486. }
  487. }
  488. .content--wrap{
  489. padding: 40px 88px;
  490. .tech--card--wrap{
  491. display: flex;
  492. row-gap: 72px;
  493. column-gap: 16px;
  494. flex-wrap: wrap;
  495. .tech--card{
  496. width: calc((100% - 48px) / 4);
  497. display: flex;
  498. flex-direction: column;
  499. .img--wrap{
  500. margin-bottom: 24px;
  501. border-radius: 20px;
  502. overflow: hidden;
  503. >img{
  504. width: 100%;
  505. aspect-ratio: 16 / 9;
  506. object-fit: cover;
  507. }
  508. }
  509. >h3{
  510. font-size: 24px;
  511. margin-bottom: 8px;
  512. }
  513. >p{
  514. margin-bottom: 24px;
  515. color: rgba(252, 252, 253, 0.7);
  516. font-size: 16px;
  517. font-stretch: 105%;
  518. &.type2{
  519. margin-top: 40px;
  520. color: rgba(252, 252, 253, 0.7);
  521. font-size: 14px;
  522. }
  523. }
  524. >a{
  525. display: flex;
  526. font-size: 16px;
  527. text-underline-offset: 7px;
  528. text-decoration: underline 1px rgb(252, 252, 253);
  529. align-items: center;
  530. .ico{
  531. width: 24px;
  532. height: 24px;
  533. background-image: url(/img/ico--arrow.svg);
  534. }
  535. }
  536. }
  537. }
  538. // 이벤트 게시판
  539. .event--wrap{
  540. display: grid;
  541. grid-template-columns: repeat(3, 1fr);
  542. gap: 40px 16px;
  543. margin-bottom: 80px;
  544. .event--card{
  545. display: flex;
  546. flex-direction: column;
  547. .img--wrap{
  548. margin-bottom: 24px;
  549. border-radius: 20px;
  550. overflow: hidden;
  551. img{
  552. width: 100%;
  553. aspect-ratio: 16 / 9;
  554. object-fit: cover;
  555. }
  556. }
  557. h3{
  558. font-size: 24px;
  559. margin-bottom: 24px;
  560. }
  561. a{
  562. display: flex;
  563. font-size: 16px;
  564. text-underline-offset: 7px;
  565. text-decoration: underline 1px rgb(252, 252, 253);
  566. align-items: center;
  567. color: rgb(252, 252, 253);
  568. .ico{
  569. width: 24px;
  570. height: 24px;
  571. background-image: url(/img/ico--arrow.svg);
  572. }
  573. }
  574. }
  575. }
  576. // 뉴스 게시판
  577. .news--wrap{
  578. margin-bottom: 80px;
  579. .news--table{
  580. width: 100%;
  581. table-layout: fixed;
  582. thead{
  583. tr{
  584. border-top: 2px solid #fff;
  585. border-bottom: 1px solid rgba(252, 252, 253, 0.7);
  586. th{
  587. padding: 20px 0;
  588. white-space: nowrap;
  589. text-align: center;
  590. }
  591. }
  592. }
  593. tbody{
  594. tr{
  595. td{
  596. text-align: center;
  597. padding: 20px 0;
  598. font-size: 16px;
  599. white-space: nowrap;
  600. }
  601. cursor: pointer;
  602. transition: all 0.3s;
  603. &:hover{
  604. background-color: rgba(252, 252, 253, 0.3);
  605. }
  606. &:last-child{
  607. border-bottom: 1px solid rgba(252, 252, 253, 0.7);
  608. }
  609. }
  610. }
  611. }
  612. }
  613. .view--wrap{
  614. .title--wrap{
  615. >h2{
  616. font-size: 48px;
  617. }
  618. border-top: 1px solid rgba(252,252,253,0.7);
  619. border-bottom: 1px solid rgba(252,252,253,0.7);
  620. }
  621. .cont--wrap{
  622. padding: 70px 0;
  623. margin-bottom: 200px;
  624. border-bottom: 1px solid rgba(252,252,253,0.7);
  625. }
  626. }
  627. .ls--card--wrap{
  628. .ls--card{
  629. display: flex;
  630. gap: 72px;
  631. align-items: center;
  632. .ls--img--wrap{
  633. width: 50%;
  634. overflow: hidden;
  635. border-radius: 20px;
  636. }
  637. .ls--txt--wrap{
  638. width: 50%;
  639. >h2{
  640. font-size: 36px;
  641. margin-bottom: 8px;
  642. }
  643. >h3{
  644. font-size: 24px;
  645. margin-bottom: 8px;
  646. }
  647. >p{
  648. font-size: 16px;
  649. color: rgba(252, 252, 253, 0.7);
  650. margin-bottom: 24px;
  651. &.desc{
  652. margin-top: 40px;
  653. font-size: 14px;
  654. margin-bottom: 0;
  655. }
  656. }
  657. }
  658. }
  659. }
  660. .sales--advisor--wrap{
  661. padding: 60px 0;
  662. .sales--team--wrap{
  663. h3{
  664. font-size: 20px;
  665. font-weight: 600;
  666. margin-bottom: 30px;
  667. margin-top: 60px;
  668. }
  669. &:first-child{
  670. h3{
  671. margin-top: 0;
  672. }
  673. }
  674. .advisor--list{
  675. >ul{
  676. display: flex;
  677. flex-wrap: wrap;
  678. >li{
  679. width: 25%;
  680. display: flex;
  681. flex-direction: column;
  682. align-items: center;
  683. position: relative;
  684. padding: 25px;
  685. border: 1px solid #555;
  686. background-color: rgba(219, 223, 230, 0.05);
  687. margin-left: -1px;
  688. margin-top: -1px;
  689. &.flag{
  690. &::after{
  691. content: '';
  692. top: -10px;
  693. left: 0;
  694. display: inline-block;
  695. position: absolute;
  696. width: 53px;
  697. background-image: url(/img/company/img--flag.jpg);
  698. height: 54px;
  699. }
  700. }
  701. .advisor--img{
  702. width: 172px;
  703. height: 210px;
  704. img{
  705. width: 100%;
  706. height: 100%;
  707. object-fit: cover;
  708. }
  709. }
  710. .advisor--info{
  711. text-align: center;
  712. margin-top: 30px;
  713. font-size: 16px;
  714. font-weight: 400;
  715. margin-bottom: 10px;
  716. }
  717. .btn--wrap{
  718. display: flex;
  719. gap: 6px;
  720. >a{
  721. --gradient-start: hsla(216, 20%, 17%, 1);
  722. --gradient-end: hsla(216, 21%, 12%, 1);
  723. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  724. transition-duration: 250ms;
  725. transition-property: --gradient-start, --gradient-end, box-shadow;
  726. padding: 12px 16px;
  727. font-size: 15px;
  728. overflow: hidden;
  729. border-radius: 20px;
  730. border: none;
  731. cursor: pointer;
  732. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  733. backdrop-filter: blur(40px);
  734. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  735. display: flex;
  736. text-decoration: none;
  737. &:hover{
  738. --gradient-start: hsla(216, 18%, 21%, 1);
  739. --gradient-end: hsla(216, 18%, 21%, 1);
  740. box-shadow: rgb(42,57,64) 0px 0px 0px 1px inset;
  741. }
  742. }
  743. }
  744. }
  745. }
  746. }
  747. }
  748. }
  749. }
  750. .img--section{
  751. .img--wrap{
  752. overflow: hidden;
  753. border-radius: 20px;
  754. img{
  755. width: 100%;
  756. display: block;
  757. }
  758. video{
  759. width: 100%;
  760. height: 100%;
  761. display: block;
  762. object-fit: cover;
  763. }
  764. }
  765. &.none--bdrs{
  766. .img--wrap{
  767. border-radius: 0;
  768. }
  769. }
  770. &.type2{
  771. display: flex;
  772. gap: 16px;
  773. .img--box{
  774. width: 50%;
  775. }
  776. }
  777. &.type3{
  778. display: flex;
  779. gap: 16px;
  780. .img--box{
  781. &:first-child{
  782. width: 35%;
  783. }
  784. &:last-child{
  785. width: 70%;
  786. }
  787. }
  788. }
  789. .desc--wrap{
  790. margin-top: 24px;
  791. font-size: 16px;
  792. color: #fcfcfdb2;
  793. .desc{
  794. font-size: 12px;
  795. }
  796. }
  797. }
  798. .title--section{
  799. text-align: center;
  800. padding: 64px 96px;
  801. &.mid--type{
  802. max-width: 1440px;
  803. margin: 0 auto;
  804. }
  805. >h2{
  806. margin-bottom: 24px;
  807. font-size: 44px;
  808. &.big--title{
  809. font-size: 72px;
  810. }
  811. }
  812. >h3{
  813. font-size: 24px;
  814. margin-bottom: 24px;
  815. &.big--title{
  816. font-size: 36px;
  817. }
  818. }
  819. >p{
  820. color: rgba(252, 252, 253, 0.7);
  821. font-size: 16px;
  822. &.desc{
  823. color: rgba(252, 252, 253, 0.7);
  824. font-size: 14px;
  825. }
  826. }
  827. }
  828. .desc--section{
  829. padding: 64px 96px;
  830. margin: 0 auto;
  831. max-width: 950px;
  832. >h2{
  833. font-size: 72px;
  834. }
  835. >h3{
  836. &.big--title{
  837. font-size: 44px;
  838. }
  839. font-size: 36px;
  840. margin-bottom: 40px;
  841. }
  842. >h4{
  843. font-size: 24px;
  844. }
  845. >p{
  846. margin: 0 auto;
  847. color: rgba(252, 252, 253, 0.7);
  848. font-size: 16px;
  849. }
  850. &.mid--type{
  851. max-width: 1440px;
  852. }
  853. &.full--type{
  854. width: 100%;
  855. max-width: 100%;
  856. >h3{
  857. margin-bottom: 16px;
  858. }
  859. >ul{
  860. display: flex;
  861. flex-direction: column;
  862. gap: 24px;
  863. >li{
  864. font-size: 24px;
  865. }
  866. }
  867. }
  868. .ceo--box{
  869. display: flex;
  870. margin-top: 24px;
  871. gap: 40px;
  872. p{
  873. color: rgba(252, 252, 253, 0.7);
  874. font-size: 16px;
  875. width: 60%;
  876. }
  877. .ceo--img--wrap{
  878. width: 40%;
  879. display: flex;
  880. justify-content: flex-end;
  881. align-items: flex-end;
  882. .ceo--name{
  883. text-align: right;
  884. margin-right: 20px;
  885. padding-bottom: 55px;
  886. strong{
  887. font-size: 30px;
  888. }
  889. }
  890. .img--wrap{
  891. min-width: 243px;
  892. }
  893. }
  894. }
  895. }
  896. .img--desc--section{
  897. display: flex;
  898. padding: 64px 0;
  899. &.mid--type{
  900. margin: 0 auto;
  901. max-width: 1248px;
  902. .desc--wrap{
  903. padding-right: 0;
  904. }
  905. }
  906. &.reverse{
  907. flex-direction: row-reverse;
  908. .desc--wrap{
  909. padding-right: 72px;
  910. }
  911. }
  912. .img--wrap{
  913. width: 50%;
  914. border-radius: 20px;
  915. overflow: hidden;
  916. img{
  917. width: 100%;
  918. height: 100%;
  919. object-fit: cover;
  920. }
  921. &.type2{
  922. }
  923. }
  924. .desc--wrap{
  925. width: 50%;
  926. display: flex;
  927. flex-direction: column;
  928. justify-content: center;
  929. padding: 0 72px;
  930. h3{
  931. font-size: 36px;
  932. margin-bottom: 8px;
  933. }
  934. h4{
  935. font-size: 24px;
  936. }
  937. p{
  938. font-size: 16px;
  939. color: rgba(252, 252, 253, 0.7);
  940. &.desc{
  941. font-size: 12px;
  942. }
  943. }
  944. }
  945. &.type2{
  946. .inner--box{
  947. width: 50%;
  948. .img--wrap{
  949. width: 100%;
  950. }
  951. .desc{
  952. margin-top: 12px;
  953. color: rgba(252, 252, 253, 0.7);
  954. font-size: 14px;
  955. }
  956. }
  957. }
  958. }
  959. .more--section{
  960. margin-top: 100px;
  961. >h2{
  962. font-size: 44px;
  963. margin-bottom: 40px;
  964. }
  965. .tech--card--wrap{
  966. display: flex;
  967. column-gap: 16px;
  968. .tech--card{
  969. width: calc((100% - 48px) / 4);
  970. display: flex;
  971. flex-direction: column;
  972. .img--wrap{
  973. margin-bottom: 24px;
  974. border-radius: 20px;
  975. overflow: hidden;
  976. >img{
  977. width: 100%;
  978. aspect-ratio: 16 / 9;
  979. object-fit: cover;
  980. }
  981. }
  982. >h3{
  983. font-size: 24px;
  984. margin-bottom: 8px;
  985. }
  986. >p{
  987. margin-bottom: 24px;
  988. color: rgba(252, 252, 253, 0.7);
  989. font-size: 16px;
  990. font-stretch: 105%;
  991. &.type2{
  992. margin-top: 40px;
  993. color: rgba(252, 252, 253, 0.7);
  994. font-size: 14px;
  995. }
  996. }
  997. >a{
  998. display: flex;
  999. font-size: 16px;
  1000. text-underline-offset: 7px;
  1001. text-decoration: underline 1px rgb(252, 252, 253);
  1002. align-items: center;
  1003. .ico{
  1004. width: 24px;
  1005. height: 24px;
  1006. background-image: url(/img/ico--arrow.svg);
  1007. }
  1008. }
  1009. }
  1010. }
  1011. &.type2{
  1012. .tech--card--wrap{
  1013. flex-wrap: wrap;
  1014. row-gap: 40px;
  1015. .tech--card{
  1016. width: calc(50% - 8px);
  1017. }
  1018. }
  1019. }
  1020. &.type3{
  1021. .tech--card--wrap{
  1022. flex-wrap: wrap;
  1023. row-gap: 40px;
  1024. .tech--card{
  1025. width: calc((100% - 32px) / 3);
  1026. }
  1027. }
  1028. }
  1029. }
  1030. .caution--section{
  1031. padding: 40px 0;
  1032. ul{
  1033. display: flex;
  1034. flex-direction: column;
  1035. gap: 12px;
  1036. counter-reset: item;
  1037. li{
  1038. padding-left: 34px;
  1039. color: rgba(252, 252, 253, 0.7);
  1040. font-size: 16px;
  1041. position: relative;
  1042. &::before{
  1043. content: counter(item) ". ";
  1044. counter-increment: item;
  1045. position: absolute;
  1046. left: 16px;
  1047. }
  1048. }
  1049. }
  1050. }
  1051. }
  1052. }
  1053. footer{
  1054. position: relative;
  1055. .footer--wrap{
  1056. position: relative;
  1057. .scroll--to--top{
  1058. position: absolute;
  1059. top: 24px;
  1060. right: 96px;
  1061. display: flex;
  1062. font-size: 14px;
  1063. color: #fcfcfd;
  1064. gap: 12px;
  1065. .ico{
  1066. width: 24px;
  1067. height: 24px;
  1068. transform: rotate(270deg);
  1069. background-image: url(/img/ico--arrow.svg);
  1070. }
  1071. }
  1072. .footer--site--map{
  1073. >ul{
  1074. >li{
  1075. >ul{
  1076. >li{
  1077. >a{
  1078. font-size: 14px;
  1079. }
  1080. }
  1081. }
  1082. }
  1083. }
  1084. }
  1085. }
  1086. .footer--info--wrap{
  1087. .sns--wrap{
  1088. display: flex;
  1089. justify-content: flex-end;
  1090. margin-bottom: 12px;
  1091. gap: 8px;
  1092. >a{
  1093. width: 48px;
  1094. height: 48px;
  1095. display: inline-block;
  1096. border-radius: 50%;
  1097. display: flex;
  1098. align-items: center;
  1099. justify-content: center;
  1100. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1101. transition-duration: 250ms;
  1102. transition-property: color, box-shadow, border-color, background;
  1103. cursor: pointer;
  1104. box-sizing: border-box;
  1105. width: 48px;
  1106. height: 48px;
  1107. background: rgb(24, 29, 37);
  1108. color: rgb(252, 252, 253);
  1109. border: 1px solid rgb(44, 52, 63);
  1110. background-repeat: no-repeat;
  1111. background-position: center;
  1112. &.fb{
  1113. background-image: url(/img/ico--fb.svg);
  1114. }
  1115. &.ins{
  1116. background-image: url(/img/ico--ins.svg);
  1117. }
  1118. }
  1119. }
  1120. .copy--wrap{
  1121. border-top: 2px solid rgba(252,252,253,0.2);
  1122. font-size: 14px;
  1123. color: #fcfcfdb2;
  1124. padding-bottom: 80px;
  1125. .link--list{
  1126. display: flex;
  1127. flex-wrap: wrap;
  1128. margin-top: 16px;
  1129. gap: 24px;
  1130. >li{
  1131. >a{
  1132. font-size: 14px;
  1133. display: inline-block;
  1134. color: rgb(252, 252, 253);
  1135. transition: all 0.3s;
  1136. &:hover{
  1137. opacity: 0.7;
  1138. }
  1139. }
  1140. }
  1141. }
  1142. >p{
  1143. margin-top: 24px;
  1144. }
  1145. }
  1146. }
  1147. @media (max-width: 768px) {
  1148. .footer--wrap{
  1149. .footer--site--map{
  1150. >ul{
  1151. >li{
  1152. >h2{
  1153. cursor: pointer;
  1154. user-select: none;
  1155. position: relative;
  1156. padding-right: 20px;
  1157. &::after{
  1158. content: '';
  1159. position: absolute;
  1160. right: 20px;
  1161. font-size: 12px;
  1162. background-image: url(/img/ico--arrow.svg);
  1163. width: 24px;
  1164. height: 24px;
  1165. transform: rotate(90deg);
  1166. transition: transform 0.3s ease;
  1167. }
  1168. }
  1169. >ul{
  1170. max-height: 0;
  1171. overflow: hidden;
  1172. transition: max-height 0.3s ease;
  1173. &.active{
  1174. max-height: 1000px;
  1175. }
  1176. }
  1177. }
  1178. }
  1179. }
  1180. }
  1181. }
  1182. }
  1183. .more--btn{
  1184. display: flex;
  1185. font-size: 16px;
  1186. text-underline-offset: 7px;
  1187. text-decoration: underline 1px rgb(252, 252, 253);
  1188. align-items: center;
  1189. .ico{
  1190. width: 24px;
  1191. height: 24px;
  1192. margin-left: 8px;
  1193. background-image: url(/img/ico--link.svg);
  1194. }
  1195. }
  1196. .btn--black{
  1197. transition: all 0.3s;
  1198. width: fit-content;
  1199. font-size: 14px;
  1200. display: inline-block;
  1201. font-weight: 400;
  1202. padding: 12px 24px;
  1203. border-radius: 100px;
  1204. background-color: rgb(24, 29, 37);
  1205. color: rgb(252, 252, 253);
  1206. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  1207. &:hover{
  1208. background-color: rgb(44, 52, 63);
  1209. color: rgb(252, 252, 253);
  1210. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  1211. }
  1212. }
  1213. .btn--gray{
  1214. transition: all 0.3s;
  1215. width: fit-content;
  1216. font-size: 14px;
  1217. display: inline-block;
  1218. font-weight: 400;
  1219. padding: 12px 24px;
  1220. color: rgb(252, 252, 253);
  1221. border-radius: 100px;
  1222. background-color: #657081;
  1223. &:hover{
  1224. background-color: rgb(44, 52, 63);
  1225. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  1226. }
  1227. &.big--btn{
  1228. font-size: 16px;
  1229. padding: 16px 32px;
  1230. width: 248px;
  1231. }
  1232. }
  1233. .btn--border--gray{
  1234. transition: all 0.3s;
  1235. width: fit-content;
  1236. font-size: 14px;
  1237. display: inline-block;
  1238. font-weight: 400;
  1239. padding: 12px 24px;
  1240. color: rgb(252, 252, 253);
  1241. border-radius: 100px;
  1242. background-color: #181d25;
  1243. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  1244. &:hover{
  1245. background-color: rgb(44, 52, 63);
  1246. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  1247. }
  1248. &.big--btn{
  1249. padding: 16px 32px;
  1250. font-size: 16px;
  1251. }
  1252. }
  1253. // 페이지네이션
  1254. .pagination--wrap{
  1255. display: flex;
  1256. justify-content: center;
  1257. align-items: center;
  1258. gap: 16px;
  1259. padding: 40px 0;
  1260. .pagination--btn{
  1261. width: 48px;
  1262. height: 48px;
  1263. border-radius: 50%;
  1264. background-color: transparent;
  1265. border: 1px solid rgba(252, 252, 253, 0.3);
  1266. display: flex;
  1267. align-items: center;
  1268. justify-content: center;
  1269. transition: all 0.3s;
  1270. svg{
  1271. fill: rgba(252, 252, 253, 0.7);
  1272. }
  1273. &:hover:not(:disabled){
  1274. background-color: rgba(252, 252, 253, 0.1);
  1275. border-color: rgba(252, 252, 253, 0.5);
  1276. }
  1277. &:disabled{
  1278. opacity: 0.3;
  1279. cursor: not-allowed;
  1280. }
  1281. }
  1282. .pagination--numbers{
  1283. display: flex;
  1284. gap: 8px;
  1285. .pagination--number{
  1286. min-width: 48px;
  1287. height: 48px;
  1288. border-radius: 50%;
  1289. background-color: transparent;
  1290. border: none;
  1291. color: rgba(252, 252, 253, 0.7);
  1292. font-size: 16px;
  1293. transition: all 0.3s;
  1294. &:hover{
  1295. background-color: rgba(252, 252, 253, 0.1);
  1296. color: rgba(252, 252, 253, 1);
  1297. }
  1298. &.active{
  1299. background-color: rgba(252, 252, 253, 1);
  1300. color: rgb(2, 2, 3);
  1301. }
  1302. }
  1303. }
  1304. }
  1305. .dealer--popup--overlay{
  1306. &.type2{
  1307. .dealer--popup--content{
  1308. padding: 0;
  1309. .dealer--thumb--wrap{
  1310. .swiper{
  1311. height: 100%;
  1312. }
  1313. img{
  1314. width: 100%;
  1315. max-width: 100%;
  1316. max-height: 100%;
  1317. height: 100%;
  1318. object-fit: cover;
  1319. }
  1320. .swiper-button-next{
  1321. width: 40px;
  1322. height: 40px;
  1323. background-image: url(/img/ico--arrow.svg);
  1324. background-size: 100%;
  1325. background-color: rgba(0, 0, 0, 0.6);
  1326. right: 0;
  1327. svg{
  1328. display: none;
  1329. }
  1330. }
  1331. .swiper-button-prev{
  1332. background-image: url(/img/ico--arrow.svg);
  1333. background-size: 100%;
  1334. background-color: rgba(0, 0, 0, 0.6);
  1335. left: 0;
  1336. width: 40px;
  1337. height: 40px;
  1338. transform: rotate(180deg);
  1339. svg{
  1340. display: none;
  1341. }
  1342. }
  1343. }
  1344. .dealer--infos--wrap{
  1345. padding-right: 0;
  1346. .info--label{
  1347. &.desc--type{
  1348. max-height: 200px;
  1349. overflow-y: auto;
  1350. }
  1351. }
  1352. }
  1353. }
  1354. }
  1355. }
  1356. // 퀵메뉴
  1357. .quick__menu__wrap{
  1358. position:fixed;
  1359. top:50%;
  1360. transform: translateY(-50%);
  1361. right:0px;
  1362. z-index: 998;
  1363. }
  1364. .quick__menu__wrap > a .thumb{
  1365. display: block;
  1366. width:50px;
  1367. height:50px;
  1368. }
  1369. .quick__menu__wrap > a{
  1370. position: relative;
  1371. }
  1372. .quick__menu__wrap.actv > a:hover > div{
  1373. background-color:#b2b2b2!important;
  1374. cursor: pointer;
  1375. }
  1376. .quick__menu__wrap.actv > a > div:nth-of-type(2){
  1377. left:-180px;
  1378. background-color: #000;
  1379. color:#fff;
  1380. }
  1381. .quick__menu__wrap > a > div:nth-of-type(1){
  1382. position: relative;
  1383. z-index: 2;
  1384. }
  1385. .quick__menu__wrap > a > div:nth-of-type(2){
  1386. position: absolute;
  1387. top:0;
  1388. white-space: nowrap;
  1389. left:10px;
  1390. font-size:14px;
  1391. transition: all .2s ease-in;
  1392. display: flex;
  1393. align-items: center;
  1394. justify-content: flex-start;
  1395. width:250px;
  1396. height:50px;
  1397. z-index: 1;
  1398. padding-left:15px;
  1399. cursor: pointer;
  1400. }
  1401. .quick__menu__wrap .th_01{
  1402. background:url(/img/quick_01.png) no-repeat center;
  1403. }
  1404. .quick__menu__wrap .th_02{
  1405. background:url(/img/quick_02.png) no-repeat center;
  1406. }
  1407. .quick__menu__wrap .th_03{
  1408. background:url(/img/quick_03.png) no-repeat center;
  1409. }
  1410. .quick__menu__wrap .th_04{
  1411. background:url(/img/quick_04.png) no-repeat center;
  1412. }
  1413. .quick__menu__wrap .th_05{
  1414. background:url(/img/quick_05.png) no-repeat center;
  1415. }
  1416. .quick__menu__wrap .th_06{
  1417. background:url(/img/quick_06.png) no-repeat center;
  1418. }
  1419. .quick__menu__wrap .th_07{
  1420. background:url(/img/quick_07.png) no-repeat center;
  1421. }
  1422. .quick__menu__wrap .th_08{
  1423. background:url(/img/quick_08.png) no-repeat center;
  1424. }
  1425. .quick__menu__wrap .th_09{
  1426. background:url(/img/quick_09.png) no-repeat center;
  1427. }
  1428. .quick__menu__wrap .th_10{
  1429. background:url(/img/quick_10.png) no-repeat center;
  1430. }
  1431. .quick__menu__wrap .th_11{
  1432. background:url(/img/quick_11.png) no-repeat center;
  1433. }
  1434. @media(max-width:768px){
  1435. .quick__menu__wrap{
  1436. left:0px;
  1437. top:auto;
  1438. transform: translateY(0);
  1439. bottom:0px;
  1440. width:100%;
  1441. max-width:100%;
  1442. display: flex;
  1443. justify-content: center;
  1444. align-items: center;
  1445. background: #000;
  1446. &.actv{
  1447. >a{
  1448. &:hover{
  1449. >div{
  1450. background-color: transparent!important;
  1451. }
  1452. }
  1453. }
  1454. }
  1455. >a{
  1456. width: calc(100% / 9);
  1457. align-items: center;
  1458. display: flex;
  1459. gap: 4px;
  1460. padding: 8px 0;
  1461. flex-direction: column;
  1462. text-decoration: underline;
  1463. .thumb{
  1464. width: 26px;
  1465. height: 26px;
  1466. }
  1467. >div{
  1468. &:nth-of-type(2){
  1469. position: static;
  1470. text-align: center;
  1471. height: auto;
  1472. padding: 0;
  1473. font-size: 11px;
  1474. width: 100%;
  1475. justify-content: center;
  1476. white-space: nowrap;
  1477. overflow: hidden;
  1478. display: inline-block;
  1479. text-overflow: ellipsis;
  1480. }
  1481. }
  1482. }
  1483. }
  1484. .quick__menu__wrap > div{
  1485. }
  1486. .quick__menu__wrap > div > div:nth-of-type(2){
  1487. display: none!important;
  1488. }
  1489. .company__wrap .contents--wrap{
  1490. padding-left:15px;
  1491. padding-right:15px;
  1492. box-sizing: border-box;
  1493. }
  1494. }
  1495. @media (max-width: 500px){
  1496. .quick__menu__wrap{
  1497. overflow-x: auto;
  1498. box-sizing: border-box;
  1499. padding:0 10px!important;
  1500. justify-content: flex-start!important;
  1501. >a{
  1502. min-width: 60px;
  1503. }
  1504. }
  1505. }