sub.scss 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338
  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. letter-spacing: -0.32px;
  1138. }
  1139. &::before{
  1140. content:'A';
  1141. position: absolute;
  1142. top:50%;
  1143. left:20px;
  1144. transform: translateY(-50%);
  1145. color: #FFF;
  1146. text-align: center;
  1147. font-size: 17px;
  1148. font-style: normal;
  1149. font-weight: 700;
  1150. line-height: 100%; /* 17px */
  1151. letter-spacing: -0.34px;
  1152. display: inline-flex;
  1153. align-items: center;
  1154. justify-content: center;
  1155. width:40px;
  1156. min-width:40px;
  1157. height:40px;
  1158. border-radius: 100px;
  1159. background: linear-gradient(180deg, #65CC2E 0%, #2ECC71 52.4%, #2597D0 100%);
  1160. }
  1161. }
  1162. }
  1163. }
  1164. }
  1165. }
  1166. }
  1167. }
  1168. footer{
  1169. display: flex;
  1170. align-items: center;
  1171. justify-content: center;
  1172. width:100%;
  1173. background: #191919;
  1174. section{
  1175. width:100%;
  1176. padding-top:40px;
  1177. padding-bottom:55px;
  1178. max-width:1200px;
  1179. display: flex;
  1180. align-items: flex-end;
  1181. justify-content: space-between;
  1182. .footer--left{
  1183. >a{
  1184. display: block;
  1185. width: 100%;
  1186. max-width: 163px;
  1187. img{
  1188. width: 100%;
  1189. }
  1190. }
  1191. .copy--text{
  1192. display: flex;
  1193. flex-direction: column;
  1194. gap:20px;
  1195. margin-top:30px;
  1196. p{
  1197. color: #FFF;
  1198. font-size: 16px;
  1199. font-style: normal;
  1200. font-weight: 500;
  1201. line-height: 100%;
  1202. letter-spacing: -0.32px;
  1203. span{
  1204. color: #FFF;
  1205. font-size: 16px;
  1206. font-style: normal;
  1207. font-weight: 500;
  1208. line-height: 100%;
  1209. letter-spacing: -0.32px;
  1210. margin-right:31px;
  1211. position: relative;
  1212. &::after{
  1213. content:'';
  1214. display: block;
  1215. width:1px;
  1216. height:100%;
  1217. background: #535353;
  1218. position: absolute;
  1219. top:50%;
  1220. width:1px;
  1221. height:15px;
  1222. right:-16px;
  1223. transform: translateY(-50%);
  1224. }
  1225. &:last-child{
  1226. margin-right:0px;
  1227. &::after{
  1228. display: none;
  1229. }
  1230. }
  1231. }
  1232. }
  1233. }
  1234. }
  1235. .footer--right{
  1236. display: flex;
  1237. gap:50px;
  1238. a{
  1239. color: #FFF;
  1240. font-size: 16px;
  1241. font-style: normal;
  1242. font-weight: 500;
  1243. line-height: 100%; /* 16px */
  1244. letter-spacing: -0.32px;
  1245. text-transform: uppercase;
  1246. }
  1247. }
  1248. }
  1249. }