sub.scss 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339
  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:20px 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. text-align: center;
  568. text-overflow: initial;
  569. white-space: nowrap;
  570. letter-spacing: -0.3px;
  571. z-index: 6;
  572. .desc--main {
  573. position: relative;
  574. color: $color_2;
  575. font-family: $font-family_1;
  576. font-size: 15px;
  577. font-weight: 400;
  578. text-align: center;
  579. letter-spacing: -0.3px;
  580. }
  581. .desc--sub {
  582. position: relative;
  583. color: $color_2;
  584. font-family: $font-family_1;
  585. font-size: 15px;
  586. font-weight: 700;
  587. text-align: center;
  588. letter-spacing: -0.3px;
  589. }
  590. }
  591. }
  592. // Step 06 - M&A진행결정시
  593. .progress--step.step--06 {
  594. position: absolute;
  595. width: 222px;
  596. height: 162px;
  597. top: 85px;
  598. left: 978px;
  599. z-index: 28;
  600. .step--arrow {
  601. position: relative;
  602. width: 160px;
  603. height: 82px;
  604. margin: 0 0 0 32px;
  605. background: url(../img/man_arrow_bg.png) no-repeat center;
  606. background-size: cover;
  607. z-index: 28;
  608. }
  609. .step--box {
  610. display: flex;
  611. align-items: center;
  612. flex-wrap: nowrap;
  613. gap: 20px;
  614. position: relative;
  615. width: 222px;
  616. margin: 0 0 0 0;
  617. padding: 15px 30px 15px 20px;
  618. background: #ffffff;
  619. border: 1px solid rgba(46, 204, 113, 0.5);
  620. z-index: 21;
  621. border-radius: 100px;
  622. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  623. .step--icon {
  624. flex-shrink: 0;
  625. position: relative;
  626. width: 50px;
  627. height: 50px;
  628. background: #2ecc71;
  629. z-index: 22;
  630. border-radius: 1000px;
  631. .icon--img {
  632. position: relative;
  633. width: 24px;
  634. height: 19px;
  635. margin: 16px 0 0 13px;
  636. background: url(../img/blk_01.svg) no-repeat center;
  637. background-size: cover;
  638. z-index: 23;
  639. overflow: hidden;
  640. }
  641. }
  642. .step--desc {
  643. flex-shrink: 0;
  644. position: relative;
  645. width: 102px;
  646. font-family: $font-family_1;
  647. font-size: 15px;
  648. font-weight: 400;
  649. text-align: left;
  650. text-overflow: initial;
  651. white-space: nowrap;
  652. letter-spacing: -0.3px;
  653. z-index: 24;
  654. .desc--main {
  655. position: relative;
  656. color: $color_2;
  657. font-family: $font-family_1;
  658. font-size: 15px;
  659. font-weight: 400;
  660. text-align: left;
  661. letter-spacing: -0.3px;
  662. }
  663. .desc--sub {
  664. position: relative;
  665. color: $color_2;
  666. font-family: $font-family_1;
  667. font-size: 15px;
  668. font-weight: 700;
  669. text-align: left;
  670. letter-spacing: -0.3px;
  671. }
  672. }
  673. }
  674. }
  675. // 나머지 Progress Steps와 Line 연결 요소들
  676. // Step 03 - M&A 상담
  677. .progress--step.step--03 {
  678. position: absolute;
  679. width: 313px;
  680. height: 308px;
  681. top: 93px;
  682. left: 365px;
  683. z-index: 29;
  684. .step--badge {
  685. &.badge--blue {
  686. position: relative;
  687. width: 79px;
  688. height: 79px;
  689. margin: 229px 0 0 0;
  690. background: url(../img/blue_ic01.svg) no-repeat center;
  691. background-size: cover;
  692. overflow: hidden;
  693. }
  694. &.badge--purple {
  695. position: absolute;
  696. width: 57px;
  697. height: 57px;
  698. top: 0;
  699. left: 41px;
  700. background: url(../img/purple_ic01.svg) no-repeat center;
  701. background-size: cover;
  702. z-index: 1;
  703. overflow: hidden;
  704. }
  705. }
  706. .step--box {
  707. display: flex;
  708. align-items: center;
  709. flex-wrap: nowrap;
  710. gap: 20px;
  711. position: absolute;
  712. width: 239px;
  713. height: 80px;
  714. top: 26px;
  715. left: 74px;
  716. padding: 15px 30px 15px 20px;
  717. background: #ffffff;
  718. border: 1px solid rgba(46, 204, 113, 0.5);
  719. z-index: 11;
  720. border-radius: 100px;
  721. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  722. .step--icon {
  723. flex-shrink: 0;
  724. position: relative;
  725. width: 50px;
  726. height: 50px;
  727. background: #2ecc71;
  728. z-index: 12;
  729. border-radius: 1000px;
  730. .icon--img {
  731. position: relative;
  732. width: 21px;
  733. height: 22px;
  734. margin: 14px 0 0 15px;
  735. background: url(../img/blk_02.svg) no-repeat center;
  736. background-size: cover;
  737. z-index: 13;
  738. overflow: hidden;
  739. }
  740. }
  741. .step--desc {
  742. flex-shrink: 0;
  743. position: relative;
  744. width: 119px;
  745. font-family: $font-family_1;
  746. font-size: 15px;
  747. font-weight: 400;
  748. text-align: left;
  749. text-overflow: initial;
  750. white-space: nowrap;
  751. letter-spacing: -0.3px;
  752. z-index: 14;
  753. .desc--sub {
  754. position: relative;
  755. color: $color_2;
  756. font-family: $font-family_1;
  757. font-size: 15px;
  758. font-weight: 700;
  759. text-align: left;
  760. letter-spacing: -0.3px;
  761. }
  762. .desc--main {
  763. position: relative;
  764. color: $color_2;
  765. font-family: $font-family_1;
  766. font-size: 15px;
  767. font-weight: 400;
  768. text-align: left;
  769. letter-spacing: -0.3px;
  770. }
  771. }
  772. }
  773. .step--dot.dot--purple {
  774. position: absolute;
  775. width: 10px;
  776. height: 10px;
  777. top: 153px;
  778. left: 19px;
  779. background: url(../img/purple_dot01.svg) no-repeat center;
  780. background-size: cover;
  781. z-index: 29;
  782. border-radius: 50%;
  783. }
  784. }
  785. // Step 02 - M&A궁합 담당자 전화
  786. .progress--step.step--02 {
  787. position: absolute;
  788. width: 228px;
  789. height: 218px;
  790. top: 136px;
  791. left: 180px;
  792. z-index: 30;
  793. .step--dot.dot--green {
  794. position: relative;
  795. width: 10px;
  796. height: 10px;
  797. margin: 0 0 0 164px;
  798. background: url(../img/green_dot01.svg) no-repeat center;
  799. background-size: cover;
  800. z-index: 30;
  801. border-radius: 50%;
  802. }
  803. .step--box {
  804. display: flex;
  805. align-items: center;
  806. flex-wrap: nowrap;
  807. gap: 20px;
  808. position: relative;
  809. width: 228px;
  810. margin: 128px 0 0 0;
  811. padding: 15px 30px 15px 20px;
  812. background: #ffffff;
  813. border: 1px solid rgba(46, 204, 113, 0.5);
  814. z-index: 7;
  815. border-radius: 100px;
  816. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  817. .step--icon {
  818. flex-shrink: 0;
  819. position: relative;
  820. width: 50px;
  821. height: 50px;
  822. background: #2ecc71;
  823. z-index: 8;
  824. border-radius: 1000px;
  825. .icon--img {
  826. position: relative;
  827. width: 18px;
  828. height: 18px;
  829. margin: 16px 0 0 16px;
  830. background: url(../img/blk_03.svg) no-repeat center;
  831. background-size: cover;
  832. z-index: 9;
  833. overflow: hidden;
  834. }
  835. }
  836. .step--desc {
  837. flex-shrink: 0;
  838. position: relative;
  839. width: 108px;
  840. font-family: $font-family_1;
  841. font-size: 15px;
  842. font-weight: 400;
  843. text-align: left;
  844. text-overflow: initial;
  845. white-space: nowrap;
  846. letter-spacing: -0.3px;
  847. z-index: 10;
  848. .desc--main {
  849. position: relative;
  850. color: $color_2;
  851. font-family: $font-family_1;
  852. font-size: 15px;
  853. font-weight: 400;
  854. text-align: left;
  855. letter-spacing: -0.3px;
  856. }
  857. .desc--sub {
  858. position: relative;
  859. color: $color_2;
  860. font-family: $font-family_1;
  861. font-size: 15px;
  862. font-weight: 700;
  863. text-align: left;
  864. letter-spacing: -0.3px;
  865. }
  866. }
  867. }
  868. }
  869. // Step 05 - 진행 여부 결정
  870. .progress--step.step--05 {
  871. position: absolute;
  872. width: 252.5px;
  873. height: 154px;
  874. top: 190px;
  875. left: 726px;
  876. z-index: 32;
  877. .step--dot.dot--pink {
  878. position: relative;
  879. width: 10px;
  880. height: 10px;
  881. margin: 0 0 0 173px;
  882. background: url(../img/pink_dot01.svg) no-repeat center;
  883. background-size: cover;
  884. z-index: 32;
  885. border-radius: 50%;
  886. }
  887. .step--line.line--04 {
  888. position: absolute;
  889. width: 49.5px;
  890. height: 61.5px;
  891. top: 16.5px;
  892. left: 203px;
  893. background: url(../img/line_05.svg) no-repeat center;
  894. background-size: cover;
  895. z-index: 16;
  896. }
  897. .step--box {
  898. display: flex;
  899. align-items: center;
  900. flex-wrap: nowrap;
  901. gap: 20px;
  902. position: absolute;
  903. width: 203px;
  904. height: 80px;
  905. top: 37px;
  906. left: 0;
  907. padding: 15px 30px 15px 20px;
  908. background: #ffffff;
  909. border: 1px solid rgba(46, 204, 113, 0.5);
  910. z-index: 17;
  911. border-radius: 100px;
  912. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  913. .step--icon {
  914. flex-shrink: 0;
  915. position: relative;
  916. width: 50px;
  917. height: 50px;
  918. background: #2ecc71;
  919. z-index: 18;
  920. border-radius: 1000px;
  921. .icon--img {
  922. position: relative;
  923. width: 20px;
  924. height: 22px;
  925. margin: 14px 0 0 15px;
  926. background: url(../img/blk_04.svg) no-repeat center;
  927. background-size: cover;
  928. z-index: 19;
  929. overflow: hidden;
  930. }
  931. }
  932. .step--desc {
  933. flex-shrink: 0;
  934. position: relative;
  935. width: 83px;
  936. font-family: $font-family_1;
  937. font-size: 15px;
  938. font-weight: 400;
  939. text-align: left;
  940. text-overflow: initial;
  941. white-space: nowrap;
  942. letter-spacing: -0.3px;
  943. z-index: 20;
  944. .desc--sub {
  945. position: relative;
  946. color: $color_2;
  947. font-family: $font-family_1;
  948. font-size: 15px;
  949. font-weight: 700;
  950. text-align: left;
  951. letter-spacing: -0.3px;
  952. }
  953. .desc--main {
  954. position: relative;
  955. color: $color_2;
  956. font-family: $font-family_1;
  957. font-size: 15px;
  958. font-weight: 400;
  959. text-align: left;
  960. letter-spacing: -0.3px;
  961. }
  962. }
  963. }
  964. .step--badge.badge--clover {
  965. position: absolute;
  966. width: 63px;
  967. height: 63px;
  968. top: 91px;
  969. left: 165px;
  970. background: url(../img/clovar_ic.svg) no-repeat center;
  971. background-size: cover;
  972. z-index: 2;
  973. overflow: hidden;
  974. }
  975. }
  976. // Step Line - 연결선
  977. .progress--step.step--line {
  978. position: absolute;
  979. width: 70px;
  980. height: 199px;
  981. top: 116px;
  982. left: 110px;
  983. z-index: 31;
  984. .step--dot.dot--yellow {
  985. position: relative;
  986. width: 10px;
  987. height: 10px;
  988. margin: 0 0 0 14px;
  989. background: url(../img/yellow_dot01.svg) no-repeat center;
  990. background-size: cover;
  991. z-index: 31;
  992. border-radius: 50%;
  993. }
  994. .step--line.line--02 {
  995. position: relative;
  996. width: 70px;
  997. height: 164px;
  998. margin: 25.5px 0 0 0;
  999. background: url(../img/line_03.svg) no-repeat center;
  1000. background-size: cover;
  1001. z-index: 25;
  1002. }
  1003. }
  1004. // 전역 라인 요소들
  1005. .step--line.line--01 {
  1006. position: absolute;
  1007. width: 90.5px;
  1008. height: 155px;
  1009. top: 67.5px;
  1010. left: 44px;
  1011. background: url(../img/line_02.svg) no-repeat center;
  1012. background-size: cover;
  1013. z-index: 26;
  1014. }
  1015. .step--line.line--03 {
  1016. position: absolute;
  1017. width: 47px;
  1018. height: 108px;
  1019. top: 159.5px;
  1020. left: 679px;
  1021. background: url(../img/line_04.svg) no-repeat center;
  1022. background-size: cover;
  1023. z-index: 15;
  1024. }
  1025. }
  1026. }
  1027. }
  1028. .faq--wrapper{
  1029. width: 100%;
  1030. display: flex;
  1031. justify-content: center;
  1032. padding-top:120px;
  1033. padding-bottom:120px;
  1034. .inner--contents{
  1035. width:100%;
  1036. max-width:1200px;
  1037. .section--title{
  1038. color: #191919;
  1039. text-align: center;
  1040. font-size: 35px;
  1041. font-style: normal;
  1042. font-weight: 800;
  1043. line-height: 100%; /* 35px */
  1044. letter-spacing: -0.7px;
  1045. }
  1046. .faq--list--wrap{
  1047. width:100%;
  1048. max-width:1200px;
  1049. padding-top:70px;
  1050. ul{
  1051. width: 100%;
  1052. border-bottom:1px solid #E6E6E6;
  1053. li{
  1054. width: 100%;
  1055. text-align: left;
  1056. border-top:1px solid #E6E6E6;
  1057. position: relative;
  1058. @for $i from 1 through 9 {
  1059. &:nth-of-type(#{$i}) {
  1060. .faq--item--title {
  1061. &::before {
  1062. content: 'Q#{$i}';
  1063. }
  1064. }
  1065. }
  1066. }
  1067. .faq--item--title{
  1068. padding:30px 20px;
  1069. position: relative;
  1070. cursor: pointer;
  1071. transition: background-color 0.3s ease;
  1072. &:after{
  1073. content:'';
  1074. display: block;
  1075. width:100%;
  1076. height:1px;
  1077. width:18px;
  1078. height:18px;
  1079. background: url(../img/chv_down.svg) no-repeat center center / contain;
  1080. position: absolute;
  1081. top:50%;
  1082. right:20px;
  1083. transform: translateY(-50%);
  1084. }
  1085. &.active{
  1086. &:after{
  1087. background: url(../img/chv_up.svg) no-repeat center center / contain;
  1088. transform: translateY(-50%) rotate(0deg);
  1089. }
  1090. }
  1091. > p{
  1092. padding-left:60px;
  1093. color: #222;
  1094. font-size: 18px;
  1095. font-style: normal;
  1096. font-weight: 400;
  1097. line-height: 100%; /* 18px */
  1098. letter-spacing: -0.36px;
  1099. }
  1100. &::before{
  1101. content:'';
  1102. display:inline-flex;
  1103. align-items: center;
  1104. justify-content: center;
  1105. position: absolute;
  1106. top:50%;
  1107. left:20px;
  1108. transform: translateY(-50%);
  1109. width:40px;
  1110. min-width:40px;
  1111. height:40px;
  1112. border-radius: 40px;
  1113. border-radius: 100px;
  1114. border: 1px solid #E6E6E6;
  1115. background: #FFF;
  1116. color: #2ECC71;
  1117. text-align: center;
  1118. font-size: 15px;
  1119. font-style: normal;
  1120. font-weight: 700;
  1121. line-height: 100%; /* 15px */
  1122. letter-spacing: -0.3px;
  1123. }
  1124. }
  1125. .faq--item--content{
  1126. position: relative;
  1127. padding:30px 20px;
  1128. border-top: 1px solid #E6E6E6;
  1129. background: #F6F6F6;
  1130. display: none;
  1131. > p{
  1132. padding-left:60px;
  1133. color: #333;
  1134. font-size: 16px;
  1135. font-style: normal;
  1136. font-weight: 400;
  1137. line-height: 100%; /* 16px */
  1138. letter-spacing: -0.32px;
  1139. }
  1140. &::before{
  1141. content:'A';
  1142. position: absolute;
  1143. top:50%;
  1144. left:20px;
  1145. transform: translateY(-50%);
  1146. color: #FFF;
  1147. text-align: center;
  1148. font-size: 17px;
  1149. font-style: normal;
  1150. font-weight: 700;
  1151. line-height: 100%; /* 17px */
  1152. letter-spacing: -0.34px;
  1153. display: inline-flex;
  1154. align-items: center;
  1155. justify-content: center;
  1156. width:40px;
  1157. min-width:40px;
  1158. height:40px;
  1159. border-radius: 100px;
  1160. background: linear-gradient(180deg, #65CC2E 0%, #2ECC71 52.4%, #2597D0 100%);
  1161. }
  1162. }
  1163. }
  1164. }
  1165. }
  1166. }
  1167. }
  1168. }
  1169. footer{
  1170. display: flex;
  1171. align-items: center;
  1172. justify-content: center;
  1173. width:100%;
  1174. background: #191919;
  1175. section{
  1176. width:100%;
  1177. padding-top:40px;
  1178. padding-bottom:55px;
  1179. max-width:1200px;
  1180. display: flex;
  1181. align-items: flex-end;
  1182. justify-content: space-between;
  1183. .footer--left{
  1184. >a{
  1185. display: block;
  1186. width: 100%;
  1187. max-width: 163px;
  1188. img{
  1189. width: 100%;
  1190. }
  1191. }
  1192. .copy--text{
  1193. display: flex;
  1194. flex-direction: column;
  1195. gap:20px;
  1196. margin-top:30px;
  1197. p{
  1198. color: #FFF;
  1199. font-size: 16px;
  1200. font-style: normal;
  1201. font-weight: 500;
  1202. line-height: 100%;
  1203. letter-spacing: -0.32px;
  1204. span{
  1205. color: #FFF;
  1206. font-size: 16px;
  1207. font-style: normal;
  1208. font-weight: 500;
  1209. line-height: 100%;
  1210. letter-spacing: -0.32px;
  1211. margin-right:31px;
  1212. position: relative;
  1213. &::after{
  1214. content:'';
  1215. display: block;
  1216. width:1px;
  1217. height:100%;
  1218. background: #535353;
  1219. position: absolute;
  1220. top:50%;
  1221. width:1px;
  1222. height:15px;
  1223. right:-16px;
  1224. transform: translateY(-50%);
  1225. }
  1226. &:last-child{
  1227. margin-right:0px;
  1228. &::after{
  1229. display: none;
  1230. }
  1231. }
  1232. }
  1233. }
  1234. }
  1235. }
  1236. .footer--right{
  1237. display: flex;
  1238. gap:50px;
  1239. a{
  1240. color: #FFF;
  1241. font-size: 16px;
  1242. font-style: normal;
  1243. font-weight: 500;
  1244. line-height: 100%; /* 16px */
  1245. letter-spacing: -0.32px;
  1246. text-transform: uppercase;
  1247. }
  1248. }
  1249. }
  1250. }