sub.scss 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354
  1. @charset "UTF-8";
  2. @import 'reset';
  3. @import 'mixin';
  4. @import 'media';
  5. main{
  6. .main--impt--search--section{
  7. background: #F9F9F9;
  8. .inner--contents{
  9. padding-top:100px;
  10. padding-bottom:100px;
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. flex-direction: column;
  15. > ul{
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. gap:40px;
  20. row-gap: 35px;
  21. padding-top:70px;
  22. width:100%;
  23. max-width:1200px;
  24. flex-wrap: wrap;
  25. li{
  26. display: flex;
  27. align-items: center;
  28. justify-content: flex-start;
  29. gap:25px;
  30. ;
  31. width:calc( (100% - 80px ) / 3);
  32. border-radius: 100px;
  33. padding:10px 30px;
  34. position: relative;
  35. &:nth-of-type(odd){
  36. background: linear-gradient(134deg, #52ABFF 6.76%, #5281FF 50.56%, #AE52FF 93.53%);
  37. }
  38. &:nth-of-type(even){
  39. background: linear-gradient(134deg, #6DF3C4 6.76%, #2ECC71 50.56%, #25AD92 93.53%);
  40. }
  41. &:after{
  42. content: '';
  43. display: block;
  44. width:18px;
  45. height:18px;
  46. background: url(../img/ic_arrow_02.svg) no-repeat center;
  47. position: absolute;
  48. top:50%;
  49. right:30px;
  50. transform: translateY(-50%);
  51. }
  52. .title{
  53. color: #FFF;
  54. font-size: 18px;
  55. font-style: normal;
  56. font-weight: 600;
  57. line-height: 100%; /* 18px */
  58. letter-spacing: -0.36px;
  59. }
  60. .thumbs{
  61. display: inline-flex;
  62. min-width:34px;
  63. width: 34px;
  64. height: 34px;
  65. background: url(../img/thumbs_ic.png) no-repeat center;
  66. }
  67. }
  68. }
  69. .section--title--center{
  70. color: #333;
  71. text-align: center;
  72. font-size: 35px;
  73. font-style: normal;
  74. font-weight: 300;
  75. line-height: 100%; /* 35px */
  76. letter-spacing: -0.7px;
  77. strong{
  78. color: #191919;
  79. font-size: 35px;
  80. font-style: normal;
  81. font-weight: 800;
  82. line-height: 100%;
  83. letter-spacing: -0.7px;
  84. }
  85. }
  86. }
  87. }
  88. .main--prof--sections{
  89. padding-top:110px;
  90. padding-bottom:120px;
  91. .inner--contents{
  92. display: flex;
  93. justify-content: center;
  94. align-items: center;
  95. flex-direction: column;
  96. .section--title--center{
  97. color: #333;
  98. text-align: center;
  99. font-size: 35px;
  100. font-style: normal;
  101. font-weight: 300;
  102. line-height: 100%; /* 35px */
  103. letter-spacing: -0.7px;
  104. strong{
  105. color: #191919;
  106. font-size: 35px;
  107. font-style: normal;
  108. font-weight: 800;
  109. line-height: 100%;
  110. letter-spacing: -0.7px;
  111. }
  112. }
  113. .nav--wrapper{
  114. display: flex;
  115. align-items: center;
  116. justify-content: center;
  117. gap:10px;
  118. padding-bottom:50px;
  119. padding-top:40px;
  120. button{
  121. display: flex;
  122. width: 50px;
  123. height: 50px;
  124. border-radius: 50px;
  125. border-radius: 100px;
  126. border: 1px solid #DADADA;
  127. background: #fff;
  128. justify-content: center;
  129. align-items: center;
  130. &.play--btn{
  131. display: none;
  132. }
  133. }
  134. }
  135. .prof--man--swiper{
  136. width:100%;
  137. .swiper-slide{
  138. max-width:494px;
  139. .prof--card{
  140. display: flex;
  141. width:100%;
  142. padding:30px 40px;
  143. border-radius: 30px;
  144. border: 1px solid #E2E2E2;
  145. background: #FFF;
  146. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  147. align-items: center;
  148. justify-content: flex-start;
  149. gap:30px;
  150. .thumb{
  151. overflow: hidden;
  152. width:150px;
  153. height:150px;
  154. border-radius: 150px;
  155. }
  156. .desc--wrap{
  157. >h2{
  158. color: #191919;
  159. font-size: 20px;
  160. font-style: normal;
  161. font-weight: 800;
  162. line-height: 100%; /* 20px */
  163. span{
  164. color: #1AAF59;
  165. font-size: 15px;
  166. font-style: normal;
  167. font-weight: 600;
  168. line-height: 100%; /* 15px */
  169. margin-left:12px;
  170. }
  171. }
  172. .key--word{
  173. display: flex;
  174. padding-top:30px;
  175. gap:5px;
  176. span{
  177. color: #1AAF59;
  178. text-align: center;
  179. font-size: 13px;
  180. font-style: normal;
  181. font-weight: 500;
  182. line-height: 100%; /* 13px */
  183. border-radius: 100px;
  184. border: 1px solid rgba(46, 204, 113, 0.50);
  185. padding:8px 10px;
  186. }
  187. }
  188. }
  189. }
  190. }
  191. }
  192. }
  193. }
  194. .main--impt--sections{
  195. background: url(../img/dear_bg.png) no-repeat center center / cover;
  196. .inner--contents{
  197. padding-top:120px;
  198. padding-bottom:120px; ;
  199. .section--title--center{
  200. color: #333;
  201. text-align: center;
  202. font-size: 35px;
  203. font-style: normal;
  204. font-weight: 300;
  205. line-height: 100%; /* 35px */
  206. letter-spacing: -0.7px;
  207. strong{
  208. color: #191919;
  209. font-size: 35px;
  210. font-style: normal;
  211. font-weight: 800;
  212. line-height: 100%;
  213. letter-spacing: -0.7px;
  214. }
  215. }
  216. .impt--list--wrap{
  217. width:100%;
  218. padding-top:50px;
  219. ul{
  220. display: flex;
  221. align-items: center;
  222. justify-content: center;
  223. gap:50px;
  224. li{
  225. border-radius: 30px;
  226. background: #FFF;
  227. padding:55px 50px;
  228. max-width:575px;
  229. h3{
  230. color: #000;
  231. font-size: 20px;
  232. font-style: normal;
  233. font-weight: 600;
  234. line-height: 100%;
  235. strong{
  236. color: #225DFF;
  237. }
  238. }
  239. .captions{
  240. padding-top:30px;
  241. color: #000;
  242. font-size: 16px;
  243. font-style: normal;
  244. font-weight: 300;
  245. line-height: 2.1; /* 16px */
  246. }
  247. .thumb{
  248. width:204px;
  249. height:130px;
  250. margin-top:60px;
  251. &.thumb--01{
  252. background: url(../img/dear_bg_ic01.png) no-repeat center center / contain;
  253. }
  254. &.thumb--02{
  255. background: url(../img/dear_bg_ic02.png) no-repeat center center / contain;
  256. }
  257. }
  258. }
  259. }
  260. }
  261. }
  262. }
  263. .compatibility--section{
  264. width: 100%;
  265. display: flex;
  266. justify-content: center;
  267. padding-top:120px;
  268. padding-bottom:120px;
  269. .inner--contents{
  270. width:100%;
  271. max-width:1200px;
  272. .section--title--left{
  273. color: #333;
  274. font-size: 50px;
  275. font-style: normal;
  276. font-weight: 300;
  277. line-height: 1.3; /* 50px */
  278. letter-spacing: -1px;
  279. strong{
  280. font-weight: 700;
  281. color: #1AAF59;
  282. font-size: 50px;
  283. font-style: normal;
  284. font-weight: 800;
  285. line-height: 100%;
  286. letter-spacing: -1px;
  287. }
  288. }
  289. .compatibility--inner--conls{
  290. width:100%;
  291. display: flex;
  292. align-items: flex-start;
  293. justify-content: flex-start;
  294. flex-direction: column;
  295. border-radius: 30px;
  296. background: #2ECC71 url(../img/line_more_bg.png) no-repeat 100% top;
  297. padding:50px;
  298. position: relative;
  299. max-height:280px;
  300. >h2{
  301. color: #FFF;
  302. font-size: 25px;
  303. font-style: normal;
  304. font-weight: 700;
  305. line-height: 100%; /* 25px */
  306. letter-spacing: -0.5px;
  307. margin-bottom:17px;
  308. position: relative;
  309. &:after{
  310. content:'';
  311. display: block;
  312. width:301px;
  313. height:64px;
  314. background: url(../img/dot_more_bg.png) no-repeat center;
  315. position: absolute;
  316. top:-23px;
  317. left:-50px;
  318. }
  319. }
  320. .captions{
  321. color: #FFF;
  322. font-size: 16px;
  323. font-style: normal;
  324. font-weight: 500;
  325. line-height: 1.9;
  326. letter-spacing: -0.32px;
  327. }
  328. .desc{
  329. color: #EF0;
  330. font-size: 16px;
  331. font-style: normal;
  332. font-weight: 600;
  333. line-height: 1.9;
  334. letter-spacing: -0.32px;
  335. margin-top:30px;
  336. }
  337. .btn--wrapper{
  338. position: absolute;
  339. top:50px;
  340. right:55px;
  341. display: flex;
  342. gap:15px;
  343. button{
  344. border-radius: 1000px;
  345. background: #FFF;
  346. color: #1AAF59;
  347. font-size: 15px;
  348. font-style: normal;
  349. font-weight: 600;
  350. display: flex;
  351. align-items: center;
  352. justify-content: center;
  353. letter-spacing: -0.3px;
  354. line-height: 100%;
  355. padding:20px;
  356. border:0px;
  357. }
  358. }
  359. }
  360. .step--section{
  361. padding-bottom:100px;
  362. &.sect--02{
  363. .inner--grid{
  364. max-width:970px;
  365. &:after{
  366. max-width:930px;
  367. }
  368. }
  369. }
  370. &:last-child{
  371. padding-bottom:0px;
  372. }
  373. .inner--s--title{
  374. span{
  375. &:nth-of-type(1){
  376. color:#1AAF59;
  377. font-size: 25px;
  378. font-style: normal;
  379. font-weight: 700;
  380. line-height: 100%; /* 25px */
  381. letter-spacing: -0.5px;
  382. margin-right:30px;
  383. em{
  384. font-style: normal;
  385. }
  386. }
  387. &:nth-of-type(2){
  388. color: #444;
  389. font-size: 17px;
  390. font-style: normal;
  391. font-weight: 300;
  392. line-height: 100%; /* 17px */
  393. letter-spacing: -0.34px;
  394. }
  395. }
  396. }
  397. .inner--grid{
  398. display: flex;
  399. align-items:flex-start;
  400. justify-content: space-between;
  401. margin-top:40px;
  402. position: relative;
  403. &:after{
  404. content:'';
  405. display: block;
  406. width:100%;
  407. height:1px;
  408. background: rgba(46, 204, 113, 0.50);
  409. position: absolute;
  410. top:55px;
  411. z-index: -1;
  412. }
  413. .grid{
  414. display: flex;
  415. justify-content: center;
  416. align-items: center;
  417. flex-direction: column;
  418. .thumb{
  419. width:110px;
  420. height:110px;
  421. border-radius: 110px;
  422. border: 2px solid rgba(46, 204, 113, 0.50);
  423. background: #FFF;
  424. display: flex;
  425. align-items: center;
  426. justify-content: center;
  427. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.20);
  428. }
  429. .desc{
  430. padding-top:20px;
  431. color: #000;
  432. text-align: center;
  433. font-size: 15px;
  434. font-style: normal;
  435. font-weight: 300;
  436. line-height: 1.5; /* 15px */
  437. letter-spacing: -0.3px;
  438. strong{
  439. font-weight: 700;
  440. letter-spacing: -0.3px;
  441. }
  442. }
  443. }
  444. }
  445. }
  446. .month--text--contents{
  447. >p{
  448. color: #191919;
  449. font-size: 17px;
  450. font-style: normal;
  451. font-weight: 300;
  452. line-height: 100%; /* 17px */
  453. letter-spacing: -0.34px;
  454. display: flex;
  455. }
  456. .month--gap{
  457. padding-top:49px;
  458. padding-bottom:30px;
  459. > span{
  460. &:nth-of-type(1){
  461. border-radius: 1000px;
  462. border: 1px dashed #2ECC71;
  463. color: #1AAF59;
  464. font-size: 16px;
  465. font-style: normal;
  466. font-weight: 600;
  467. line-height: 100%; /* 16px */
  468. letter-spacing: -0.32px;
  469. display: inline-flex;
  470. align-items: center;
  471. justify-content: center;
  472. padding:20px;
  473. margin-right:25px;
  474. }
  475. &:nth-of-type(2){
  476. color: #111;
  477. font-size: 20px;
  478. font-style: normal;
  479. font-weight: 500;
  480. line-height: 100%; /* 20px */
  481. letter-spacing: -0.4px;
  482. strong{
  483. font-weight: 800;
  484. }
  485. }
  486. }
  487. }
  488. }
  489. .progress--section{
  490. padding-top:120px;
  491. padding-bottom:100px;
  492. $color_1: #222222;
  493. $color_2: #191919;
  494. $font-family_1: Pretendard, var(--default-font-family);
  495. .progress--container {
  496. overflow: hidden;
  497. box-sizing: border-box;
  498. position: relative;
  499. width: 1200px;
  500. height: 401px;
  501. margin: 0 auto;
  502. * {
  503. box-sizing: border-box;
  504. }
  505. }
  506. // Step 01 - 사전 진행
  507. .progress--step.step--01 {
  508. position: absolute;
  509. width: 110px;
  510. height: 266px;
  511. top: 0;
  512. left: 0;
  513. font-size: 0px;
  514. z-index: 27;
  515. .step--label {
  516. display: block;
  517. position: relative;
  518. height: 25px;
  519. margin: 0 0 0 0;
  520. color: $color_1;
  521. font-family: $font-family_1;
  522. font-size: 25px;
  523. font-weight: 700;
  524. line-height: 25px;
  525. text-align: left;
  526. white-space: nowrap;
  527. letter-spacing: -0.5px;
  528. z-index: 27;
  529. }
  530. .step--circle {
  531. position: relative;
  532. width: 110px;
  533. height: 110px;
  534. margin: 71px 0 0 0;
  535. background: rgba(46, 204, 113, 0.1);
  536. z-index: 3;
  537. overflow: visible auto;
  538. border-radius: 1000px;
  539. .step--circle--inner {
  540. position: relative;
  541. width: 72px;
  542. height: 72px;
  543. margin: 19px 0 0 19px;
  544. background: rgba(46, 204, 113, 0.2);
  545. z-index: 4;
  546. overflow: visible auto;
  547. border-radius: 1000px;
  548. .step--circle--core {
  549. position: relative;
  550. width: 36px;
  551. height: 36px;
  552. margin: 18px 0 0 18px;
  553. background: #2ecc71;
  554. z-index: 5;
  555. border-radius: 1000px;
  556. }
  557. }
  558. }
  559. .step--desc {
  560. position: relative;
  561. width: 70px;
  562. height: 40px;
  563. margin: 20px 0 0 20px;
  564. font-family: $font-family_1;
  565. font-size: 15px;
  566. font-weight: 400;
  567. line-height: 15px;
  568. text-align: center;
  569. text-overflow: initial;
  570. white-space: nowrap;
  571. letter-spacing: -0.3px;
  572. z-index: 6;
  573. .desc--main {
  574. position: relative;
  575. color: $color_2;
  576. font-family: $font-family_1;
  577. font-size: 15px;
  578. font-weight: 400;
  579. line-height: 15px;
  580. text-align: center;
  581. letter-spacing: -0.3px;
  582. }
  583. .desc--sub {
  584. position: relative;
  585. color: $color_2;
  586. font-family: $font-family_1;
  587. font-size: 15px;
  588. font-weight: 700;
  589. line-height: 15px;
  590. text-align: center;
  591. letter-spacing: -0.3px;
  592. }
  593. }
  594. }
  595. // Step 06 - M&A진행결정시
  596. .progress--step.step--06 {
  597. position: absolute;
  598. width: 222px;
  599. height: 162px;
  600. top: 85px;
  601. left: 978px;
  602. z-index: 28;
  603. .step--arrow {
  604. position: relative;
  605. width: 160px;
  606. height: 82px;
  607. margin: 0 0 0 32px;
  608. background: url(../img/man_arrow_bg.png) no-repeat center;
  609. background-size: cover;
  610. z-index: 28;
  611. }
  612. .step--box {
  613. display: flex;
  614. align-items: center;
  615. flex-wrap: nowrap;
  616. gap: 20px;
  617. position: relative;
  618. width: 222px;
  619. margin: 0 0 0 0;
  620. padding: 15px 30px 15px 20px;
  621. background: #ffffff;
  622. border: 1px solid rgba(46, 204, 113, 0.5);
  623. z-index: 21;
  624. border-radius: 100px;
  625. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  626. .step--icon {
  627. flex-shrink: 0;
  628. position: relative;
  629. width: 50px;
  630. height: 50px;
  631. background: #2ecc71;
  632. z-index: 22;
  633. border-radius: 1000px;
  634. .icon--img {
  635. position: relative;
  636. width: 24px;
  637. height: 19px;
  638. margin: 16px 0 0 13px;
  639. background: url(../img/blk_01.svg) no-repeat center;
  640. background-size: cover;
  641. z-index: 23;
  642. overflow: hidden;
  643. }
  644. }
  645. .step--desc {
  646. flex-shrink: 0;
  647. position: relative;
  648. width: 102px;
  649. font-family: $font-family_1;
  650. font-size: 15px;
  651. font-weight: 400;
  652. line-height: 15px;
  653. text-align: left;
  654. text-overflow: initial;
  655. white-space: nowrap;
  656. letter-spacing: -0.3px;
  657. z-index: 24;
  658. .desc--main {
  659. position: relative;
  660. color: $color_2;
  661. font-family: $font-family_1;
  662. font-size: 15px;
  663. font-weight: 400;
  664. line-height: 15px;
  665. text-align: left;
  666. letter-spacing: -0.3px;
  667. }
  668. .desc--sub {
  669. position: relative;
  670. color: $color_2;
  671. font-family: $font-family_1;
  672. font-size: 15px;
  673. font-weight: 700;
  674. line-height: 15px;
  675. text-align: left;
  676. letter-spacing: -0.3px;
  677. }
  678. }
  679. }
  680. }
  681. // 나머지 Progress Steps와 Line 연결 요소들
  682. // Step 03 - M&A 상담
  683. .progress--step.step--03 {
  684. position: absolute;
  685. width: 313px;
  686. height: 308px;
  687. top: 93px;
  688. left: 365px;
  689. z-index: 29;
  690. .step--badge {
  691. &.badge--blue {
  692. position: relative;
  693. width: 79px;
  694. height: 79px;
  695. margin: 229px 0 0 0;
  696. background: url(../img/blue_ic01.svg) no-repeat center;
  697. background-size: cover;
  698. overflow: hidden;
  699. }
  700. &.badge--purple {
  701. position: absolute;
  702. width: 57px;
  703. height: 57px;
  704. top: 0;
  705. left: 41px;
  706. background: url(../img/purple_ic01.svg) no-repeat center;
  707. background-size: cover;
  708. z-index: 1;
  709. overflow: hidden;
  710. }
  711. }
  712. .step--box {
  713. display: flex;
  714. align-items: center;
  715. flex-wrap: nowrap;
  716. gap: 20px;
  717. position: absolute;
  718. width: 239px;
  719. height: 80px;
  720. top: 26px;
  721. left: 74px;
  722. padding: 15px 30px 15px 20px;
  723. background: #ffffff;
  724. border: 1px solid rgba(46, 204, 113, 0.5);
  725. z-index: 11;
  726. border-radius: 100px;
  727. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  728. .step--icon {
  729. flex-shrink: 0;
  730. position: relative;
  731. width: 50px;
  732. height: 50px;
  733. background: #2ecc71;
  734. z-index: 12;
  735. border-radius: 1000px;
  736. .icon--img {
  737. position: relative;
  738. width: 21px;
  739. height: 22px;
  740. margin: 14px 0 0 15px;
  741. background: url(../img/blk_02.svg) no-repeat center;
  742. background-size: cover;
  743. z-index: 13;
  744. overflow: hidden;
  745. }
  746. }
  747. .step--desc {
  748. flex-shrink: 0;
  749. position: relative;
  750. width: 119px;
  751. font-family: $font-family_1;
  752. font-size: 15px;
  753. font-weight: 400;
  754. line-height: 15px;
  755. text-align: left;
  756. text-overflow: initial;
  757. white-space: nowrap;
  758. letter-spacing: -0.3px;
  759. z-index: 14;
  760. .desc--sub {
  761. position: relative;
  762. color: $color_2;
  763. font-family: $font-family_1;
  764. font-size: 15px;
  765. font-weight: 700;
  766. line-height: 15px;
  767. text-align: left;
  768. letter-spacing: -0.3px;
  769. }
  770. .desc--main {
  771. position: relative;
  772. color: $color_2;
  773. font-family: $font-family_1;
  774. font-size: 15px;
  775. font-weight: 400;
  776. line-height: 15px;
  777. text-align: left;
  778. letter-spacing: -0.3px;
  779. }
  780. }
  781. }
  782. .step--dot.dot--purple {
  783. position: absolute;
  784. width: 10px;
  785. height: 10px;
  786. top: 153px;
  787. left: 19px;
  788. background: url(../img/purple_dot01.svg) no-repeat center;
  789. background-size: cover;
  790. z-index: 29;
  791. border-radius: 50%;
  792. }
  793. }
  794. // Step 02 - M&A궁합 담당자 전화
  795. .progress--step.step--02 {
  796. position: absolute;
  797. width: 228px;
  798. height: 218px;
  799. top: 136px;
  800. left: 180px;
  801. z-index: 30;
  802. .step--dot.dot--green {
  803. position: relative;
  804. width: 10px;
  805. height: 10px;
  806. margin: 0 0 0 164px;
  807. background: url(../img/green_dot01.svg) no-repeat center;
  808. background-size: cover;
  809. z-index: 30;
  810. border-radius: 50%;
  811. }
  812. .step--box {
  813. display: flex;
  814. align-items: center;
  815. flex-wrap: nowrap;
  816. gap: 20px;
  817. position: relative;
  818. width: 228px;
  819. margin: 128px 0 0 0;
  820. padding: 15px 30px 15px 20px;
  821. background: #ffffff;
  822. border: 1px solid rgba(46, 204, 113, 0.5);
  823. z-index: 7;
  824. border-radius: 100px;
  825. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  826. .step--icon {
  827. flex-shrink: 0;
  828. position: relative;
  829. width: 50px;
  830. height: 50px;
  831. background: #2ecc71;
  832. z-index: 8;
  833. border-radius: 1000px;
  834. .icon--img {
  835. position: relative;
  836. width: 18px;
  837. height: 18px;
  838. margin: 16px 0 0 16px;
  839. background: url(../img/blk_03.svg) no-repeat center;
  840. background-size: cover;
  841. z-index: 9;
  842. overflow: hidden;
  843. }
  844. }
  845. .step--desc {
  846. flex-shrink: 0;
  847. position: relative;
  848. width: 108px;
  849. font-family: $font-family_1;
  850. font-size: 15px;
  851. font-weight: 400;
  852. line-height: 15px;
  853. text-align: left;
  854. text-overflow: initial;
  855. white-space: nowrap;
  856. letter-spacing: -0.3px;
  857. z-index: 10;
  858. .desc--main {
  859. position: relative;
  860. color: $color_2;
  861. font-family: $font-family_1;
  862. font-size: 15px;
  863. font-weight: 400;
  864. line-height: 15px;
  865. text-align: left;
  866. letter-spacing: -0.3px;
  867. }
  868. .desc--sub {
  869. position: relative;
  870. color: $color_2;
  871. font-family: $font-family_1;
  872. font-size: 15px;
  873. font-weight: 700;
  874. line-height: 15px;
  875. text-align: left;
  876. letter-spacing: -0.3px;
  877. }
  878. }
  879. }
  880. }
  881. // Step 05 - 진행 여부 결정
  882. .progress--step.step--05 {
  883. position: absolute;
  884. width: 252.5px;
  885. height: 154px;
  886. top: 190px;
  887. left: 726px;
  888. z-index: 32;
  889. .step--dot.dot--pink {
  890. position: relative;
  891. width: 10px;
  892. height: 10px;
  893. margin: 0 0 0 173px;
  894. background: url(../img/pink_dot01.svg) no-repeat center;
  895. background-size: cover;
  896. z-index: 32;
  897. border-radius: 50%;
  898. }
  899. .step--line.line--04 {
  900. position: absolute;
  901. width: 49.5px;
  902. height: 61.5px;
  903. top: 16.5px;
  904. left: 203px;
  905. background: url(../img/line_05.svg) no-repeat center;
  906. background-size: cover;
  907. z-index: 16;
  908. }
  909. .step--box {
  910. display: flex;
  911. align-items: center;
  912. flex-wrap: nowrap;
  913. gap: 20px;
  914. position: absolute;
  915. width: 203px;
  916. height: 80px;
  917. top: 37px;
  918. left: 0;
  919. padding: 15px 30px 15px 20px;
  920. background: #ffffff;
  921. border: 1px solid rgba(46, 204, 113, 0.5);
  922. z-index: 17;
  923. border-radius: 100px;
  924. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  925. .step--icon {
  926. flex-shrink: 0;
  927. position: relative;
  928. width: 50px;
  929. height: 50px;
  930. background: #2ecc71;
  931. z-index: 18;
  932. border-radius: 1000px;
  933. .icon--img {
  934. position: relative;
  935. width: 20px;
  936. height: 22px;
  937. margin: 14px 0 0 15px;
  938. background: url(../img/blk_04.svg) no-repeat center;
  939. background-size: cover;
  940. z-index: 19;
  941. overflow: hidden;
  942. }
  943. }
  944. .step--desc {
  945. flex-shrink: 0;
  946. position: relative;
  947. width: 83px;
  948. font-family: $font-family_1;
  949. font-size: 15px;
  950. font-weight: 400;
  951. line-height: 15px;
  952. text-align: left;
  953. text-overflow: initial;
  954. white-space: nowrap;
  955. letter-spacing: -0.3px;
  956. z-index: 20;
  957. .desc--sub {
  958. position: relative;
  959. color: $color_2;
  960. font-family: $font-family_1;
  961. font-size: 15px;
  962. font-weight: 700;
  963. line-height: 15px;
  964. text-align: left;
  965. letter-spacing: -0.3px;
  966. }
  967. .desc--main {
  968. position: relative;
  969. color: $color_2;
  970. font-family: $font-family_1;
  971. font-size: 15px;
  972. font-weight: 400;
  973. line-height: 15px;
  974. text-align: left;
  975. letter-spacing: -0.3px;
  976. }
  977. }
  978. }
  979. .step--badge.badge--clover {
  980. position: absolute;
  981. width: 63px;
  982. height: 63px;
  983. top: 91px;
  984. left: 165px;
  985. background: url(../img/clovar_ic.svg) no-repeat center;
  986. background-size: cover;
  987. z-index: 2;
  988. overflow: hidden;
  989. }
  990. }
  991. // Step Line - 연결선
  992. .progress--step.step--line {
  993. position: absolute;
  994. width: 70px;
  995. height: 199px;
  996. top: 116px;
  997. left: 110px;
  998. z-index: 31;
  999. .step--dot.dot--yellow {
  1000. position: relative;
  1001. width: 10px;
  1002. height: 10px;
  1003. margin: 0 0 0 14px;
  1004. background: url(../img/yellow_dot01.svg) no-repeat center;
  1005. background-size: cover;
  1006. z-index: 31;
  1007. border-radius: 50%;
  1008. }
  1009. .step--line.line--02 {
  1010. position: relative;
  1011. width: 70px;
  1012. height: 164px;
  1013. margin: 25.5px 0 0 0;
  1014. background: url(../img/line_03.svg) no-repeat center;
  1015. background-size: cover;
  1016. z-index: 25;
  1017. }
  1018. }
  1019. // 전역 라인 요소들
  1020. .step--line.line--01 {
  1021. position: absolute;
  1022. width: 90.5px;
  1023. height: 155px;
  1024. top: 67.5px;
  1025. left: 44px;
  1026. background: url(../img/line_02.svg) no-repeat center;
  1027. background-size: cover;
  1028. z-index: 26;
  1029. }
  1030. .step--line.line--03 {
  1031. position: absolute;
  1032. width: 47px;
  1033. height: 108px;
  1034. top: 159.5px;
  1035. left: 679px;
  1036. background: url(../img/line_04.svg) no-repeat center;
  1037. background-size: cover;
  1038. z-index: 15;
  1039. }
  1040. }
  1041. }
  1042. }
  1043. .faq--wrapper{
  1044. width: 100%;
  1045. display: flex;
  1046. justify-content: center;
  1047. padding-top:120px;
  1048. padding-bottom:120px;
  1049. .inner--contents{
  1050. width:100%;
  1051. max-width:1200px;
  1052. .section--title{
  1053. color: #191919;
  1054. text-align: center;
  1055. font-size: 35px;
  1056. font-style: normal;
  1057. font-weight: 800;
  1058. line-height: 100%; /* 35px */
  1059. letter-spacing: -0.7px;
  1060. }
  1061. .faq--list--wrap{
  1062. width:100%;
  1063. max-width:1200px;
  1064. padding-top:70px;
  1065. ul{
  1066. width: 100%;
  1067. border-bottom:1px solid #E6E6E6;
  1068. li{
  1069. width: 100%;
  1070. text-align: left;
  1071. border-top:1px solid #E6E6E6;
  1072. position: relative;
  1073. @for $i from 1 through 9 {
  1074. &:nth-of-type(#{$i}) {
  1075. .faq--item--title {
  1076. &::before {
  1077. content: 'Q#{$i}';
  1078. }
  1079. }
  1080. }
  1081. }
  1082. .faq--item--title{
  1083. padding:30px 20px;
  1084. position: relative;
  1085. cursor: pointer;
  1086. transition: background-color 0.3s ease;
  1087. &:after{
  1088. content:'';
  1089. display: block;
  1090. width:100%;
  1091. height:1px;
  1092. width:18px;
  1093. height:18px;
  1094. background: url(../img/chv_down.svg) no-repeat center center / contain;
  1095. position: absolute;
  1096. top:50%;
  1097. right:20px;
  1098. transform: translateY(-50%);
  1099. }
  1100. &.active{
  1101. &:after{
  1102. background: url(../img/chv_up.svg) no-repeat center center / contain;
  1103. transform: translateY(-50%) rotate(0deg);
  1104. }
  1105. }
  1106. > p{
  1107. padding-left:60px;
  1108. color: #222;
  1109. font-size: 18px;
  1110. font-style: normal;
  1111. font-weight: 400;
  1112. line-height: 100%; /* 18px */
  1113. letter-spacing: -0.36px;
  1114. }
  1115. &::before{
  1116. content:'';
  1117. display:inline-flex;
  1118. align-items: center;
  1119. justify-content: center;
  1120. position: absolute;
  1121. top:50%;
  1122. left:20px;
  1123. transform: translateY(-50%);
  1124. width:40px;
  1125. min-width:40px;
  1126. height:40px;
  1127. border-radius: 40px;
  1128. border-radius: 100px;
  1129. border: 1px solid #E6E6E6;
  1130. background: #FFF;
  1131. color: #2ECC71;
  1132. text-align: center;
  1133. font-size: 15px;
  1134. font-style: normal;
  1135. font-weight: 700;
  1136. line-height: 100%; /* 15px */
  1137. letter-spacing: -0.3px;
  1138. }
  1139. }
  1140. .faq--item--content{
  1141. position: relative;
  1142. padding:30px 20px;
  1143. border-top: 1px solid #E6E6E6;
  1144. background: #F6F6F6;
  1145. display: none;
  1146. > p{
  1147. padding-left:60px;
  1148. color: #333;
  1149. font-size: 16px;
  1150. font-style: normal;
  1151. font-weight: 400;
  1152. line-height: 100%; /* 16px */
  1153. letter-spacing: -0.32px;
  1154. }
  1155. &::before{
  1156. content:'A';
  1157. position: absolute;
  1158. top:50%;
  1159. left:20px;
  1160. transform: translateY(-50%);
  1161. color: #FFF;
  1162. text-align: center;
  1163. font-size: 17px;
  1164. font-style: normal;
  1165. font-weight: 700;
  1166. line-height: 100%; /* 17px */
  1167. letter-spacing: -0.34px;
  1168. display: inline-flex;
  1169. align-items: center;
  1170. justify-content: center;
  1171. width:40px;
  1172. min-width:40px;
  1173. height:40px;
  1174. border-radius: 100px;
  1175. background: linear-gradient(180deg, #65CC2E 0%, #2ECC71 52.4%, #2597D0 100%);
  1176. }
  1177. }
  1178. }
  1179. }
  1180. }
  1181. }
  1182. }
  1183. }
  1184. footer{
  1185. display: flex;
  1186. align-items: center;
  1187. justify-content: center;
  1188. width:100%;
  1189. background: #191919;
  1190. section{
  1191. width:100%;
  1192. padding-top:40px;
  1193. padding-bottom:55px;
  1194. max-width:1200px;
  1195. display: flex;
  1196. align-items: flex-end;
  1197. justify-content: space-between;
  1198. .footer--left{
  1199. >a{
  1200. display: block;
  1201. width: 100%;
  1202. max-width: 163px;
  1203. img{
  1204. width: 100%;
  1205. }
  1206. }
  1207. .copy--text{
  1208. display: flex;
  1209. flex-direction: column;
  1210. gap:20px;
  1211. margin-top:30px;
  1212. p{
  1213. color: #FFF;
  1214. font-size: 16px;
  1215. font-style: normal;
  1216. font-weight: 500;
  1217. line-height: 100%;
  1218. letter-spacing: -0.32px;
  1219. span{
  1220. color: #FFF;
  1221. font-size: 16px;
  1222. font-style: normal;
  1223. font-weight: 500;
  1224. line-height: 100%;
  1225. letter-spacing: -0.32px;
  1226. margin-right:31px;
  1227. position: relative;
  1228. &::after{
  1229. content:'';
  1230. display: block;
  1231. width:1px;
  1232. height:100%;
  1233. background: #535353;
  1234. position: absolute;
  1235. top:50%;
  1236. width:1px;
  1237. height:15px;
  1238. right:-16px;
  1239. transform: translateY(-50%);
  1240. }
  1241. &:last-child{
  1242. margin-right:0px;
  1243. &::after{
  1244. display: none;
  1245. }
  1246. }
  1247. }
  1248. }
  1249. }
  1250. }
  1251. .footer--right{
  1252. display: flex;
  1253. gap:50px;
  1254. a{
  1255. color: #FFF;
  1256. font-size: 16px;
  1257. font-style: normal;
  1258. font-weight: 500;
  1259. line-height: 100%; /* 16px */
  1260. letter-spacing: -0.32px;
  1261. text-transform: uppercase;
  1262. }
  1263. }
  1264. }
  1265. }