style.scss 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551
  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. text-align: center;
  589. }
  590. }
  591. }
  592. tbody{
  593. tr{
  594. td{
  595. text-align: center;
  596. padding: 20px 0;
  597. font-size: 16px;
  598. white-space: nowrap;
  599. }
  600. cursor: pointer;
  601. transition: all 0.3s;
  602. &:hover{
  603. background-color: rgba(252, 252, 253, 0.3);
  604. }
  605. &:last-child{
  606. border-bottom: 1px solid rgba(252, 252, 253, 0.7);
  607. }
  608. }
  609. }
  610. }
  611. }
  612. .view--wrap{
  613. .title--wrap{
  614. >h2{
  615. font-size: 48px;
  616. }
  617. border-top: 1px solid rgba(252,252,253,0.7);
  618. border-bottom: 1px solid rgba(252,252,253,0.7);
  619. }
  620. .cont--wrap{
  621. padding: 70px 0;
  622. margin-bottom: 200px;
  623. border-bottom: 1px solid rgba(252,252,253,0.7);
  624. }
  625. }
  626. .ls--card--wrap{
  627. .ls--card{
  628. display: flex;
  629. gap: 72px;
  630. align-items: center;
  631. .ls--img--wrap{
  632. width: 50%;
  633. overflow: hidden;
  634. border-radius: 20px;
  635. }
  636. .ls--txt--wrap{
  637. width: 50%;
  638. >h2{
  639. font-size: 36px;
  640. margin-bottom: 8px;
  641. }
  642. >h3{
  643. font-size: 24px;
  644. margin-bottom: 8px;
  645. }
  646. >p{
  647. font-size: 16px;
  648. color: rgba(252, 252, 253, 0.7);
  649. margin-bottom: 24px;
  650. &.desc{
  651. margin-top: 40px;
  652. font-size: 14px;
  653. margin-bottom: 0;
  654. }
  655. }
  656. }
  657. }
  658. }
  659. .sales--advisor--wrap{
  660. padding: 60px 0;
  661. .sales--team--wrap{
  662. h3{
  663. font-size: 20px;
  664. font-weight: 600;
  665. margin-bottom: 30px;
  666. margin-top: 60px;
  667. }
  668. &:first-child{
  669. h3{
  670. margin-top: 0;
  671. }
  672. }
  673. .advisor--list{
  674. >ul{
  675. display: flex;
  676. flex-wrap: wrap;
  677. >li{
  678. width: 25%;
  679. display: flex;
  680. flex-direction: column;
  681. align-items: center;
  682. position: relative;
  683. padding: 25px;
  684. border: 1px solid #555;
  685. background-color: rgba(219, 223, 230, 0.05);
  686. margin-left: -1px;
  687. margin-top: -1px;
  688. &.flag{
  689. &::after{
  690. content: '';
  691. top: -10px;
  692. left: 0;
  693. display: inline-block;
  694. position: absolute;
  695. width: 53px;
  696. background-image: url(/img/company/img--flag.jpg);
  697. height: 54px;
  698. }
  699. }
  700. .advisor--img{
  701. width: 172px;
  702. height: 210px;
  703. img{
  704. width: 100%;
  705. height: 100%;
  706. object-fit: cover;
  707. }
  708. }
  709. .advisor--info{
  710. text-align: center;
  711. margin-top: 30px;
  712. font-size: 16px;
  713. font-weight: 400;
  714. margin-bottom: 10px;
  715. }
  716. .btn--wrap{
  717. display: flex;
  718. gap: 6px;
  719. >a{
  720. --gradient-start: hsla(216, 20%, 17%, 1);
  721. --gradient-end: hsla(216, 21%, 12%, 1);
  722. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  723. transition-duration: 250ms;
  724. transition-property: --gradient-start, --gradient-end, box-shadow;
  725. padding: 12px 16px;
  726. font-size: 15px;
  727. overflow: hidden;
  728. border-radius: 20px;
  729. border: none;
  730. cursor: pointer;
  731. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  732. backdrop-filter: blur(40px);
  733. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  734. display: flex;
  735. text-decoration: none;
  736. &:hover{
  737. --gradient-start: hsla(216, 18%, 21%, 1);
  738. --gradient-end: hsla(216, 18%, 21%, 1);
  739. box-shadow: rgb(42,57,64) 0px 0px 0px 1px inset;
  740. }
  741. }
  742. }
  743. }
  744. }
  745. }
  746. }
  747. }
  748. }
  749. .img--section{
  750. .img--wrap{
  751. overflow: hidden;
  752. border-radius: 20px;
  753. img{
  754. width: 100%;
  755. display: block;
  756. }
  757. video{
  758. width: 100%;
  759. height: 100%;
  760. display: block;
  761. object-fit: cover;
  762. }
  763. }
  764. &.none--bdrs{
  765. .img--wrap{
  766. border-radius: 0;
  767. }
  768. }
  769. &.type2{
  770. display: flex;
  771. gap: 16px;
  772. .img--box{
  773. width: 50%;
  774. }
  775. }
  776. &.type3{
  777. display: flex;
  778. gap: 16px;
  779. .img--box{
  780. &:first-child{
  781. width: 35%;
  782. }
  783. &:last-child{
  784. width: 70%;
  785. }
  786. }
  787. }
  788. .desc--wrap{
  789. margin-top: 24px;
  790. font-size: 16px;
  791. color: #fcfcfdb2;
  792. .desc{
  793. font-size: 12px;
  794. }
  795. }
  796. }
  797. .title--section{
  798. text-align: center;
  799. padding: 64px 96px;
  800. &.mid--type{
  801. max-width: 1440px;
  802. margin: 0 auto;
  803. }
  804. >h2{
  805. margin-bottom: 24px;
  806. font-size: 44px;
  807. &.big--title{
  808. font-size: 72px;
  809. }
  810. }
  811. >h3{
  812. font-size: 24px;
  813. margin-bottom: 24px;
  814. &.big--title{
  815. font-size: 36px;
  816. }
  817. }
  818. >p{
  819. color: rgba(252, 252, 253, 0.7);
  820. font-size: 16px;
  821. &.desc{
  822. color: rgba(252, 252, 253, 0.7);
  823. font-size: 14px;
  824. }
  825. }
  826. }
  827. .desc--section{
  828. padding: 64px 96px;
  829. margin: 0 auto;
  830. max-width: 950px;
  831. >h2{
  832. font-size: 72px;
  833. }
  834. >h3{
  835. &.big--title{
  836. font-size: 44px;
  837. }
  838. font-size: 36px;
  839. margin-bottom: 40px;
  840. }
  841. >h4{
  842. font-size: 24px;
  843. }
  844. >p{
  845. margin: 0 auto;
  846. color: rgba(252, 252, 253, 0.7);
  847. font-size: 16px;
  848. }
  849. &.mid--type{
  850. max-width: 1440px;
  851. }
  852. &.full--type{
  853. width: 100%;
  854. max-width: 100%;
  855. >h3{
  856. margin-bottom: 16px;
  857. }
  858. >ul{
  859. display: flex;
  860. flex-direction: column;
  861. gap: 24px;
  862. >li{
  863. font-size: 24px;
  864. }
  865. }
  866. }
  867. .ceo--box{
  868. display: flex;
  869. margin-top: 24px;
  870. gap: 40px;
  871. p{
  872. color: rgba(252, 252, 253, 0.7);
  873. font-size: 16px;
  874. width: 60%;
  875. }
  876. .ceo--img--wrap{
  877. width: 40%;
  878. display: flex;
  879. justify-content: flex-end;
  880. align-items: flex-end;
  881. .ceo--name{
  882. text-align: right;
  883. margin-right: 20px;
  884. padding-bottom: 55px;
  885. strong{
  886. font-size: 30px;
  887. }
  888. }
  889. .img--wrap{
  890. min-width: 243px;
  891. }
  892. }
  893. }
  894. }
  895. .img--desc--section{
  896. display: flex;
  897. padding: 64px 0;
  898. &.mid--type{
  899. margin: 0 auto;
  900. max-width: 1248px;
  901. .desc--wrap{
  902. padding-right: 0;
  903. }
  904. }
  905. &.reverse{
  906. flex-direction: row-reverse;
  907. .desc--wrap{
  908. padding-right: 72px;
  909. }
  910. }
  911. .img--wrap{
  912. width: 50%;
  913. border-radius: 20px;
  914. overflow: hidden;
  915. img{
  916. width: 100%;
  917. height: 100%;
  918. object-fit: cover;
  919. }
  920. &.type2{
  921. }
  922. }
  923. .desc--wrap{
  924. width: 50%;
  925. display: flex;
  926. flex-direction: column;
  927. justify-content: center;
  928. padding: 0 72px;
  929. h3{
  930. font-size: 36px;
  931. margin-bottom: 8px;
  932. }
  933. h4{
  934. font-size: 24px;
  935. }
  936. p{
  937. font-size: 16px;
  938. color: rgba(252, 252, 253, 0.7);
  939. &.desc{
  940. font-size: 12px;
  941. }
  942. }
  943. }
  944. &.type2{
  945. .inner--box{
  946. width: 50%;
  947. .img--wrap{
  948. width: 100%;
  949. }
  950. .desc{
  951. margin-top: 12px;
  952. color: rgba(252, 252, 253, 0.7);
  953. font-size: 14px;
  954. }
  955. }
  956. }
  957. }
  958. .more--section{
  959. margin-top: 100px;
  960. >h2{
  961. font-size: 44px;
  962. margin-bottom: 40px;
  963. }
  964. .tech--card--wrap{
  965. display: flex;
  966. column-gap: 16px;
  967. .tech--card{
  968. width: calc((100% - 48px) / 4);
  969. display: flex;
  970. flex-direction: column;
  971. .img--wrap{
  972. margin-bottom: 24px;
  973. border-radius: 20px;
  974. overflow: hidden;
  975. >img{
  976. width: 100%;
  977. aspect-ratio: 16 / 9;
  978. object-fit: cover;
  979. }
  980. }
  981. >h3{
  982. font-size: 24px;
  983. margin-bottom: 8px;
  984. }
  985. >p{
  986. margin-bottom: 24px;
  987. color: rgba(252, 252, 253, 0.7);
  988. font-size: 16px;
  989. font-stretch: 105%;
  990. &.type2{
  991. margin-top: 40px;
  992. color: rgba(252, 252, 253, 0.7);
  993. font-size: 14px;
  994. }
  995. }
  996. >a{
  997. display: flex;
  998. font-size: 16px;
  999. text-underline-offset: 7px;
  1000. text-decoration: underline 1px rgb(252, 252, 253);
  1001. align-items: center;
  1002. .ico{
  1003. width: 24px;
  1004. height: 24px;
  1005. background-image: url(/img/ico--arrow.svg);
  1006. }
  1007. }
  1008. }
  1009. }
  1010. &.type2{
  1011. .tech--card--wrap{
  1012. flex-wrap: wrap;
  1013. row-gap: 40px;
  1014. .tech--card{
  1015. width: calc(50% - 8px);
  1016. }
  1017. }
  1018. }
  1019. &.type3{
  1020. .tech--card--wrap{
  1021. flex-wrap: wrap;
  1022. row-gap: 40px;
  1023. .tech--card{
  1024. width: calc((100% - 32px) / 3);
  1025. }
  1026. }
  1027. }
  1028. }
  1029. .caution--section{
  1030. padding: 40px 0;
  1031. ul{
  1032. display: flex;
  1033. flex-direction: column;
  1034. gap: 12px;
  1035. counter-reset: item;
  1036. li{
  1037. padding-left: 34px;
  1038. color: rgba(252, 252, 253, 0.7);
  1039. font-size: 16px;
  1040. position: relative;
  1041. &::before{
  1042. content: counter(item) ". ";
  1043. counter-increment: item;
  1044. position: absolute;
  1045. left: 16px;
  1046. }
  1047. }
  1048. }
  1049. }
  1050. }
  1051. }
  1052. footer{
  1053. position: relative;
  1054. .footer--wrap{
  1055. position: relative;
  1056. .scroll--to--top{
  1057. position: absolute;
  1058. top: 24px;
  1059. right: 96px;
  1060. display: flex;
  1061. font-size: 14px;
  1062. color: #fcfcfd;
  1063. gap: 12px;
  1064. .ico{
  1065. width: 24px;
  1066. height: 24px;
  1067. transform: rotate(270deg);
  1068. background-image: url(/img/ico--arrow.svg);
  1069. }
  1070. }
  1071. .footer--site--map{
  1072. >ul{
  1073. >li{
  1074. >ul{
  1075. >li{
  1076. >a{
  1077. font-size: 14px;
  1078. }
  1079. }
  1080. }
  1081. }
  1082. }
  1083. }
  1084. }
  1085. .footer--info--wrap{
  1086. .sns--wrap{
  1087. display: flex;
  1088. justify-content: flex-end;
  1089. margin-bottom: 12px;
  1090. gap: 8px;
  1091. >a{
  1092. width: 48px;
  1093. height: 48px;
  1094. display: inline-block;
  1095. border-radius: 50%;
  1096. display: flex;
  1097. align-items: center;
  1098. justify-content: center;
  1099. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  1100. transition-duration: 250ms;
  1101. transition-property: color, box-shadow, border-color, background;
  1102. cursor: pointer;
  1103. box-sizing: border-box;
  1104. width: 48px;
  1105. height: 48px;
  1106. background: rgb(24, 29, 37);
  1107. color: rgb(252, 252, 253);
  1108. border: 1px solid rgb(44, 52, 63);
  1109. background-repeat: no-repeat;
  1110. background-position: center;
  1111. &.fb{
  1112. background-image: url(/img/ico--fb.svg);
  1113. }
  1114. &.ins{
  1115. background-image: url(/img/ico--ins.svg);
  1116. }
  1117. }
  1118. }
  1119. .copy--wrap{
  1120. border-top: 2px solid rgba(252,252,253,0.2);
  1121. font-size: 14px;
  1122. color: #fcfcfdb2;
  1123. padding-bottom: 80px;
  1124. .link--list{
  1125. display: flex;
  1126. flex-wrap: wrap;
  1127. margin-top: 16px;
  1128. gap: 24px;
  1129. >li{
  1130. >a{
  1131. font-size: 14px;
  1132. display: inline-block;
  1133. color: rgb(252, 252, 253);
  1134. transition: all 0.3s;
  1135. &:hover{
  1136. opacity: 0.7;
  1137. }
  1138. }
  1139. }
  1140. }
  1141. >p{
  1142. margin-top: 24px;
  1143. }
  1144. }
  1145. }
  1146. @media (max-width: 768px) {
  1147. .footer--wrap{
  1148. .footer--site--map{
  1149. >ul{
  1150. >li{
  1151. >h2{
  1152. cursor: pointer;
  1153. user-select: none;
  1154. position: relative;
  1155. padding-right: 20px;
  1156. &::after{
  1157. content: '';
  1158. position: absolute;
  1159. right: 20px;
  1160. font-size: 12px;
  1161. background-image: url(/img/ico--arrow.svg);
  1162. width: 24px;
  1163. height: 24px;
  1164. transform: rotate(90deg);
  1165. transition: transform 0.3s ease;
  1166. }
  1167. }
  1168. >ul{
  1169. max-height: 0;
  1170. overflow: hidden;
  1171. transition: max-height 0.3s ease;
  1172. &.active{
  1173. max-height: 1000px;
  1174. }
  1175. }
  1176. }
  1177. }
  1178. }
  1179. }
  1180. }
  1181. }
  1182. .more--btn{
  1183. display: flex;
  1184. font-size: 16px;
  1185. text-underline-offset: 7px;
  1186. text-decoration: underline 1px rgb(252, 252, 253);
  1187. align-items: center;
  1188. .ico{
  1189. width: 24px;
  1190. height: 24px;
  1191. margin-left: 8px;
  1192. background-image: url(/img/ico--link.svg);
  1193. }
  1194. }
  1195. .btn--black{
  1196. transition: all 0.3s;
  1197. width: fit-content;
  1198. font-size: 14px;
  1199. display: inline-block;
  1200. font-weight: 400;
  1201. padding: 12px 24px;
  1202. border-radius: 100px;
  1203. background-color: rgb(24, 29, 37);
  1204. color: rgb(252, 252, 253);
  1205. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  1206. &:hover{
  1207. background-color: rgb(44, 52, 63);
  1208. color: rgb(252, 252, 253);
  1209. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  1210. }
  1211. }
  1212. .btn--gray{
  1213. transition: all 0.3s;
  1214. width: fit-content;
  1215. font-size: 14px;
  1216. display: inline-block;
  1217. font-weight: 400;
  1218. padding: 12px 24px;
  1219. color: rgb(252, 252, 253);
  1220. border-radius: 100px;
  1221. background-color: #657081;
  1222. &:hover{
  1223. background-color: rgb(44, 52, 63);
  1224. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  1225. }
  1226. &.big--btn{
  1227. font-size: 16px;
  1228. padding: 16px 32px;
  1229. width: 248px;
  1230. }
  1231. }
  1232. .btn--border--gray{
  1233. transition: all 0.3s;
  1234. width: fit-content;
  1235. font-size: 14px;
  1236. display: inline-block;
  1237. font-weight: 400;
  1238. padding: 12px 24px;
  1239. color: rgb(252, 252, 253);
  1240. border-radius: 100px;
  1241. background-color: #181d25;
  1242. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  1243. &:hover{
  1244. background-color: rgb(44, 52, 63);
  1245. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  1246. }
  1247. &.big--btn{
  1248. padding: 16px 32px;
  1249. font-size: 16px;
  1250. }
  1251. }
  1252. // 페이지네이션
  1253. .pagination--wrap{
  1254. display: flex;
  1255. justify-content: center;
  1256. align-items: center;
  1257. gap: 16px;
  1258. padding: 40px 0;
  1259. .pagination--btn{
  1260. width: 48px;
  1261. height: 48px;
  1262. border-radius: 50%;
  1263. background-color: transparent;
  1264. border: 1px solid rgba(252, 252, 253, 0.3);
  1265. display: flex;
  1266. align-items: center;
  1267. justify-content: center;
  1268. transition: all 0.3s;
  1269. svg{
  1270. fill: rgba(252, 252, 253, 0.7);
  1271. }
  1272. &:hover:not(:disabled){
  1273. background-color: rgba(252, 252, 253, 0.1);
  1274. border-color: rgba(252, 252, 253, 0.5);
  1275. }
  1276. &:disabled{
  1277. opacity: 0.3;
  1278. cursor: not-allowed;
  1279. }
  1280. }
  1281. .pagination--numbers{
  1282. display: flex;
  1283. gap: 8px;
  1284. .pagination--number{
  1285. min-width: 48px;
  1286. height: 48px;
  1287. border-radius: 50%;
  1288. background-color: transparent;
  1289. border: none;
  1290. color: rgba(252, 252, 253, 0.7);
  1291. font-size: 16px;
  1292. transition: all 0.3s;
  1293. &:hover{
  1294. background-color: rgba(252, 252, 253, 0.1);
  1295. color: rgba(252, 252, 253, 1);
  1296. }
  1297. &.active{
  1298. background-color: rgba(252, 252, 253, 1);
  1299. color: rgb(2, 2, 3);
  1300. }
  1301. }
  1302. }
  1303. }
  1304. .dealer--popup--overlay{
  1305. &.type2{
  1306. .dealer--popup--content{
  1307. padding: 0;
  1308. .dealer--thumb--wrap{
  1309. .swiper{
  1310. height: 100%;
  1311. }
  1312. img{
  1313. width: 100%;
  1314. max-width: 100%;
  1315. max-height: 100%;
  1316. height: 100%;
  1317. object-fit: cover;
  1318. }
  1319. .swiper-button-next{
  1320. width: 40px;
  1321. height: 40px;
  1322. background-image: url(/img/ico--arrow.svg);
  1323. background-size: 100%;
  1324. background-color: rgba(0, 0, 0, 0.6);
  1325. right: 0;
  1326. svg{
  1327. display: none;
  1328. }
  1329. }
  1330. .swiper-button-prev{
  1331. background-image: url(/img/ico--arrow.svg);
  1332. background-size: 100%;
  1333. background-color: rgba(0, 0, 0, 0.6);
  1334. left: 0;
  1335. width: 40px;
  1336. height: 40px;
  1337. transform: rotate(180deg);
  1338. svg{
  1339. display: none;
  1340. }
  1341. }
  1342. }
  1343. .dealer--infos--wrap{
  1344. padding-right: 0;
  1345. .info--label{
  1346. &.desc--type{
  1347. max-height: 200px;
  1348. overflow-y: auto;
  1349. }
  1350. }
  1351. }
  1352. }
  1353. }
  1354. }
  1355. // 퀵메뉴
  1356. .quick__menu__wrap{
  1357. position:fixed;
  1358. top:50%;
  1359. transform: translateY(-50%);
  1360. right:0px;
  1361. z-index: 998;
  1362. }
  1363. .quick__menu__wrap > a .thumb{
  1364. display: block;
  1365. width:50px;
  1366. height:50px;
  1367. }
  1368. .quick__menu__wrap > a{
  1369. position: relative;
  1370. }
  1371. .quick__menu__wrap.actv > a:hover > div{
  1372. background-color:#b2b2b2!important;
  1373. cursor: pointer;
  1374. }
  1375. .quick__menu__wrap.actv > a > div:nth-of-type(2){
  1376. left:-180px;
  1377. background-color: #000;
  1378. color:#fff;
  1379. }
  1380. .quick__menu__wrap > a > div:nth-of-type(1){
  1381. position: relative;
  1382. z-index: 2;
  1383. }
  1384. .quick__menu__wrap > a > div:nth-of-type(2){
  1385. position: absolute;
  1386. top:0;
  1387. white-space: nowrap;
  1388. left:10px;
  1389. font-size:14px;
  1390. transition: all .2s ease-in;
  1391. display: flex;
  1392. align-items: center;
  1393. justify-content: flex-start;
  1394. width:250px;
  1395. height:50px;
  1396. z-index: 1;
  1397. padding-left:15px;
  1398. cursor: pointer;
  1399. }
  1400. .quick__menu__wrap .th_01{
  1401. background:url(/img/quick_01.png) no-repeat center;
  1402. }
  1403. .quick__menu__wrap .th_02{
  1404. background:url(/img/quick_02.png) no-repeat center;
  1405. }
  1406. .quick__menu__wrap .th_03{
  1407. background:url(/img/quick_03.png) no-repeat center;
  1408. }
  1409. .quick__menu__wrap .th_04{
  1410. background:url(/img/quick_04.png) no-repeat center;
  1411. }
  1412. .quick__menu__wrap .th_05{
  1413. background:url(/img/quick_05.png) no-repeat center;
  1414. }
  1415. .quick__menu__wrap .th_06{
  1416. background:url(/img/quick_06.png) no-repeat center;
  1417. }
  1418. .quick__menu__wrap .th_07{
  1419. background:url(/img/quick_07.png) no-repeat center;
  1420. }
  1421. .quick__menu__wrap .th_08{
  1422. background:url(/img/quick_08.png) no-repeat center;
  1423. }
  1424. .quick__menu__wrap .th_09{
  1425. background:url(/img/quick_09.png) no-repeat center;
  1426. }
  1427. .quick__menu__wrap .th_10{
  1428. background:url(/img/quick_10.png) no-repeat center;
  1429. }
  1430. .quick__menu__wrap .th_11{
  1431. background:url(/img/quick_11.png) no-repeat center;
  1432. }
  1433. @media(max-width:768px){
  1434. .quick__menu__wrap{
  1435. left:0px;
  1436. top:auto;
  1437. transform: translateY(0);
  1438. bottom:0px;
  1439. width:100%;
  1440. max-width:100%;
  1441. display: flex;
  1442. justify-content: center;
  1443. align-items: center;
  1444. background: #000;
  1445. &.actv{
  1446. >a{
  1447. &:hover{
  1448. >div{
  1449. background-color: transparent!important;
  1450. }
  1451. }
  1452. }
  1453. }
  1454. >a{
  1455. width: calc(100% / 9);
  1456. align-items: center;
  1457. display: flex;
  1458. gap: 4px;
  1459. padding: 8px 0;
  1460. flex-direction: column;
  1461. text-decoration: underline;
  1462. .thumb{
  1463. width: 26px;
  1464. height: 26px;
  1465. }
  1466. >div{
  1467. &:nth-of-type(2){
  1468. position: static;
  1469. text-align: center;
  1470. height: auto;
  1471. padding: 0;
  1472. font-size: 11px;
  1473. width: 100%;
  1474. justify-content: center;
  1475. white-space: nowrap;
  1476. overflow: hidden;
  1477. display: inline-block;
  1478. text-overflow: ellipsis;
  1479. }
  1480. }
  1481. }
  1482. }
  1483. .quick__menu__wrap > div{
  1484. }
  1485. .quick__menu__wrap > div > div:nth-of-type(2){
  1486. display: none!important;
  1487. }
  1488. .company__wrap .contents--wrap{
  1489. padding-left:15px;
  1490. padding-right:15px;
  1491. box-sizing: border-box;
  1492. }
  1493. }
  1494. @media (max-width: 500px){
  1495. .quick__menu__wrap{
  1496. overflow-x: auto;
  1497. box-sizing: border-box;
  1498. padding:0 10px!important;
  1499. justify-content: flex-start!important;
  1500. >a{
  1501. min-width: 60px;
  1502. }
  1503. }
  1504. }