main.scss 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066
  1. @charset "UTF-8";
  2. @import 'reset';
  3. @import 'mixin';
  4. section{
  5. overflow-x: hidden;
  6. }
  7. br{
  8. &.mo{
  9. display: none;
  10. }
  11. }
  12. header{
  13. position: fixed;
  14. width: 100%;
  15. top: 0;
  16. left: 0;
  17. z-index: 1000;
  18. background: #fff;
  19. .header--line--banner--wrap{
  20. background-image: url(../img/top_line_bg.svg);
  21. background-size: cover;
  22. background-repeat: no-repeat;
  23. background-position: center;
  24. background-color: #2ECC71;
  25. width:100%;
  26. padding:0px;
  27. @include flex-center;
  28. overflow: hidden;
  29. transition: all linear .2s;
  30. height:100px;
  31. &.actv{
  32. padding:0px 0px;
  33. height:0px;
  34. &+.header--contents--wrap{
  35. .header--dim{
  36. top: 170px;
  37. }
  38. }
  39. }
  40. .inner--contents{
  41. width:100%;
  42. max-width: 1200px;
  43. display: flex;
  44. padding: 0 20px;
  45. flex-direction: column;
  46. align-items: center;
  47. justify-content: center;
  48. text-align: center;
  49. position: relative;
  50. .close--btn{
  51. width: 44px;
  52. height: 44px;
  53. background-color: transparent;
  54. background-size: 20px 20px;
  55. background-repeat: no-repeat;
  56. background-position: center;
  57. background-image: url(../img/ico--close.svg);
  58. border: 1px solid #fff;
  59. border-radius: 50%;
  60. position: absolute;
  61. top: calc(50% - 22px);
  62. right:20px;
  63. }
  64. h3{
  65. color: #FFF;
  66. text-align: center;
  67. font-size: 20px;
  68. font-style: normal;
  69. font-weight: 700;
  70. margin-bottom: 10px;
  71. letter-spacing: -0.4px;
  72. }
  73. p{
  74. color: #FFF;
  75. font-size: 15px;
  76. letter-spacing: -0.3px;
  77. font-weight: 500;
  78. }
  79. }
  80. }
  81. .header--contents--wrap{
  82. width:100%;
  83. @include flex-center;
  84. min-height:80px;
  85. .hnb--wrap{
  86. @include flex-center;
  87. gap:10px;
  88. button{
  89. padding:0px;
  90. border:0px;
  91. background: none;
  92. width:30px;
  93. height:30px;
  94. @include flex-center;
  95. &.hmb--btn{
  96. display: none;
  97. }
  98. }
  99. }
  100. .header--contents{
  101. width:100%;
  102. display: flex;
  103. flex-direction: column;
  104. .header--logo--wrap{
  105. border-bottom: 1px solid #d9d9d9;
  106. .logo--wrap{
  107. height: 100px;
  108. align-items: center;
  109. margin: 0 auto;
  110. width: 100%;
  111. max-width:1200px;
  112. display: flex;
  113. justify-content: space-between;
  114. padding: 20px 0;
  115. .logo{
  116. max-width: 210px;
  117. display: flex;
  118. align-items: center;
  119. width: 30%;
  120. height: 58px;
  121. a{
  122. display: inline-block;
  123. img{
  124. width: 100%;
  125. }
  126. }
  127. }
  128. .txt{
  129. width: 70%;
  130. display: flex;
  131. flex-direction: column;
  132. gap: 15px;
  133. justify-content: center;
  134. p{
  135. color: #000;
  136. font-size: 15px;
  137. font-weight: 300;
  138. letter-spacing: -0.15px;
  139. line-height: 1;
  140. span{
  141. color: #1aaf59;
  142. font-weight: 600;
  143. }
  144. &:last-child{
  145. font-size: 18px;
  146. span{
  147. font-weight: 700;
  148. }
  149. }
  150. }
  151. }
  152. }
  153. }
  154. .header--gnb--wrap{
  155. .gnb--wrap{
  156. width: 100%;
  157. max-width: 1200px;
  158. margin: 0 auto;
  159. transition: left linear .2s;
  160. &.actv{
  161. >ul{
  162. li{
  163. >ul{
  164. display: none;
  165. top:52px;
  166. pointer-events: auto;
  167. transform: translateX(-50%) translateY(0px);
  168. opacity: 1;
  169. }
  170. }
  171. }
  172. }
  173. >ul{
  174. width: 100%;
  175. @include flex-center;
  176. li{
  177. width: 20%;
  178. position: relative;
  179. text-align: center;
  180. a{
  181. width: 100%;
  182. color: #000;
  183. font-size: 17px;
  184. height: 70px;
  185. display: inline-block;
  186. line-height: 70px;
  187. font-style: normal;
  188. font-weight: 600;
  189. letter-spacing: -0.34px;
  190. }
  191. ul{
  192. /*!2025-07-23 추가 */
  193. pointer-events: none;
  194. position: absolute;
  195. top:-500px;
  196. left:50%;
  197. opacity: 0;
  198. transform: translateX(-50%) translateY(-20px);
  199. transition: transform linear .2s, opacity linear .4s;
  200. background: transparent;
  201. padding:10px;
  202. z-index: 1000;
  203. li{
  204. padding:5px;
  205. a{
  206. color: #191919;
  207. font-size: 17px;
  208. font-style: normal;
  209. font-weight: 500;
  210. letter-spacing: -0.34px;
  211. white-space: nowrap;
  212. strong{
  213. color: #5D1BB8;
  214. font-size: 17px;
  215. font-style: normal;
  216. font-weight: 700;
  217. letter-spacing: -0.34px;
  218. }
  219. }
  220. }
  221. }
  222. }
  223. }
  224. }
  225. }
  226. }
  227. }
  228. .header--wrap{
  229. position: relative;
  230. display: flex;
  231. align-items: center;
  232. justify-content: center;
  233. flex-direction: column;
  234. &:after{
  235. transition: all ease-in-out .3s;
  236. content: "";
  237. display: block;
  238. height:0px;
  239. width:100%;
  240. background: #fff;
  241. position: absolute;
  242. top: 166px;
  243. left:0px;
  244. border-top:1px solid #ebebeb;
  245. z-index: -1;
  246. }
  247. }
  248. }
  249. .header--dim{
  250. &.actv{
  251. display: block;
  252. height:300px;
  253. }
  254. display: none;
  255. width:100%;
  256. height: 0px;
  257. position: fixed;
  258. top:270px;
  259. left:0px;
  260. background:#fff;
  261. border-top:1px solid #eee;
  262. z-index: 900;
  263. }
  264. main{
  265. padding-top: 270px!important;
  266. &.actv{
  267. padding-top: 170px!important;
  268. }
  269. .main--visual--section{
  270. overflow: hidden;
  271. position: relative;
  272. .main--visual--wrap{
  273. width:100%;
  274. .main--visual--img{
  275. width:100%;
  276. overflow: hidden;
  277. height:500px;
  278. position: relative;
  279. img{
  280. position: absolute;
  281. left:50%;
  282. transform: translateX(-50%);
  283. }
  284. .main--visual--txt{
  285. position: absolute;
  286. width: 100%;
  287. left: 50%;
  288. transform: translateX(-50%);
  289. height: 100%;
  290. padding: 0 20px;
  291. display: flex;
  292. align-items: center;
  293. justify-content: center;
  294. flex-direction: column;
  295. max-width: 1200px;
  296. gap: 40px;
  297. text-align: center;
  298. .sub--title{
  299. display: none;
  300. }
  301. h3{
  302. color: #191919;
  303. font-size: 50px;
  304. font-weight: 700;
  305. }
  306. p{
  307. font-size: 18px;
  308. color: #191919;
  309. font-weight: 400;
  310. margin-bottom: 30px;
  311. }
  312. }
  313. }
  314. }
  315. .main--visual--pager{
  316. position: absolute;
  317. left: 50%;
  318. transform: translateX(-50%);
  319. bottom:30px;
  320. z-index: 9;
  321. display: flex;
  322. justify-content: center;
  323. align-items: center;
  324. height: 90px;
  325. padding: 20px 35px;
  326. border-radius: 1000px;
  327. background: rgba(255, 255, 255, 0.60);
  328. backdrop-filter: blur(2px);
  329. .prev--next--wrap{
  330. padding-top: 20px;
  331. @include flex-center;
  332. display: flex;
  333. gap: 15px;
  334. align-items: center;
  335. justify-content: center;
  336. button{
  337. @include flex-center;
  338. width: 18px;
  339. height: 18px;
  340. border: none;
  341. background-color: transparent;
  342. background-image: url(../img/ico--swiper--left.svg);
  343. background-repeat: no-repeat;
  344. background-position: center;
  345. &.next--btn{
  346. background-image: url(../img/ico--swiper--right.svg);
  347. }
  348. }
  349. }
  350. .play--pause{
  351. @include flex-center;
  352. gap:11px;
  353. button{
  354. @include flex-center;
  355. width: 50px;
  356. height: 50px;
  357. border-radius: 50px;
  358. border:0px;
  359. background: rgba(255, 255, 255, 0.80);
  360. backdrop-filter: blur(2px);
  361. }
  362. }
  363. .main--visual--fraction{
  364. display: flex;
  365. align-items: center;
  366. justify-content: center;
  367. span{
  368. font-size: 13px;
  369. font-style: normal;
  370. line-height: 1;
  371. letter-spacing: -0.32px;
  372. font-weight: 500;
  373. color: rgba(0, 0, 0, 0.50);
  374. &.swiper-pagination-current{
  375. color:#000;
  376. font-weight: 800;
  377. }
  378. &.fraction-separator{
  379. background-color: #000;
  380. width: 1px;
  381. height: 12px;
  382. display: inline-block;
  383. margin: 0 10px;
  384. }
  385. }
  386. }
  387. .main--visual--pagination{
  388. display: flex;
  389. margin-right: 20px;
  390. gap: 5px;
  391. align-items: center;
  392. justify-content: center;
  393. padding-top: 20px;
  394. .swiper-pagination-bullet{
  395. width: 34px;
  396. height: 34px;
  397. border-radius: 50%;
  398. border: none;
  399. opacity: 1;
  400. background-color: transparent;
  401. cursor: pointer;
  402. position: relative;
  403. &::after{
  404. position: absolute;
  405. content: '';
  406. width: 4px;
  407. height: 4px;
  408. background-color: #000;
  409. border-radius: 50%;
  410. left: calc(50% - 2px);
  411. top: calc(50% - 2px);
  412. display: inline-block;
  413. }
  414. &.swiper-pagination-bullet-active{
  415. border: 1px solid rgba(0, 0, 0, 0.50);
  416. }
  417. }
  418. }
  419. .main--visual--progress{
  420. display: flex;
  421. justify-content: center;
  422. flex-direction: column;
  423. margin-right: 20px;
  424. .main--visual--progress--bar{
  425. display: flex;
  426. align-items: center;
  427. }
  428. .progress-title{
  429. padding-left: 30px;
  430. width: 230px;
  431. color: #000;
  432. white-space: nowrap;
  433. overflow: hidden;
  434. text-overflow: ellipsis;
  435. font-size: 16px;
  436. font-weight: 500;
  437. line-height: 1;
  438. margin-bottom: 4px;
  439. }
  440. .progress-bar{
  441. width: 200px;
  442. height: 2px;
  443. background-color: rgba(0, 0, 0, 0.2)!important;
  444. border-radius: 100px;
  445. position: relative;
  446. overflow: hidden;
  447. }
  448. .progress-text{
  449. color: #000;
  450. font-size: 15px;
  451. font-weight: 500;
  452. width: 30px;
  453. }
  454. }
  455. }
  456. }
  457. .mna--reason--wrap{
  458. overflow-x: hidden;
  459. .btn--wrap{
  460. display: flex;
  461. justify-content: center;
  462. padding: 40px 0;
  463. gap: 10px;
  464. button{
  465. border: 1px solid #dadada;
  466. background-color: #fff;
  467. width: 50px;
  468. height: 50px;
  469. border-radius: 50%;
  470. background-repeat: no-repeat;
  471. background-position: center;
  472. &.play--btn{
  473. background-image: url(../img/ico--swiper--pause.svg);
  474. &.pause{
  475. background-image: url(../img/ico--swiper--play.svg);
  476. }
  477. }
  478. &.prev--btn{
  479. background-image: url(../img/ico--swiper--left2.svg);
  480. }
  481. &.next--btn{
  482. background-image: url(../img/ico--swiper--right2.svg);
  483. }
  484. }
  485. }
  486. .swiper-slide{
  487. transform: translateX(50%);
  488. height: auto;
  489. .reason--box{
  490. border-radius: 30px;
  491. border: 1px solid #EEE;
  492. background: #FFF;
  493. box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  494. height: 100%;
  495. display: flex;
  496. padding: 40px 45px 70px;
  497. flex-direction: column;
  498. >span{
  499. color: #1aaf59;
  500. font-size: 18px;
  501. font-weight: 700;
  502. line-height: 1;
  503. text-decoration-line: underline;
  504. text-decoration-style: solid;
  505. text-decoration-skip-ink: auto;
  506. text-decoration-thickness: auto;
  507. text-underline-offset: auto;
  508. text-underline-position: from-font;
  509. margin-bottom: 45px;
  510. }
  511. dt{
  512. color: #000;
  513. font-size: 20px;
  514. font-weight: 700;
  515. letter-spacing: -0.2px;
  516. margin-bottom: 35px;
  517. }
  518. dd{
  519. color: #333;
  520. font-size: 15px;
  521. font-weight: 300;
  522. letter-spacing: -0.15px;
  523. }
  524. }
  525. }
  526. }
  527. .mna--prof--wrap{
  528. display: flex;
  529. justify-content: center;
  530. align-items: center;
  531. flex-direction: column;
  532. .nav--wrapper{
  533. display: flex;
  534. align-items: center;
  535. justify-content: center;
  536. gap:10px;
  537. padding-bottom:50px;
  538. padding-top:40px;
  539. button{
  540. display: flex;
  541. width: 50px;
  542. height: 50px;
  543. border-radius: 50px;
  544. border-radius: 100px;
  545. border: 1px solid #DADADA;
  546. background: #fff;
  547. justify-content: center;
  548. align-items: center;
  549. &.play--btn{
  550. display: none;
  551. }
  552. }
  553. }
  554. .prof--man--swiper{
  555. width:100%;
  556. .swiper-slide{
  557. max-width:494px;
  558. .prof--card{
  559. display: flex;
  560. width:100%;
  561. padding:30px 40px;
  562. border-radius: 30px;
  563. border: 1px solid #E2E2E2;
  564. background: #FFF;
  565. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  566. align-items: center;
  567. justify-content: flex-start;
  568. gap:30px;
  569. .thumb{
  570. min-width: 150px;
  571. overflow: hidden;
  572. width:150px;
  573. height:150px;
  574. border-radius: 150px;
  575. }
  576. .desc--wrap{
  577. >h2{
  578. color: #191919;
  579. font-size: 20px;
  580. font-style: normal;
  581. font-weight: 800;
  582. line-height: 100%; /* 20px */
  583. span{
  584. color: #1AAF59;
  585. font-size: 15px;
  586. font-style: normal;
  587. font-weight: 600;
  588. line-height: 100%; /* 15px */
  589. margin-left:12px;
  590. }
  591. }
  592. .key--word{
  593. display: flex;
  594. padding-top:30px;
  595. flex-wrap: wrap;
  596. gap:5px;
  597. span{
  598. color: #1AAF59;
  599. text-align: center;
  600. font-size: 13px;
  601. font-style: normal;
  602. font-weight: 500;
  603. line-height: 100%; /* 13px */
  604. border-radius: 100px;
  605. border: 1px solid rgba(46, 204, 113, 0.50);
  606. padding:8px 10px;
  607. }
  608. }
  609. }
  610. }
  611. }
  612. }
  613. }
  614. .faq--wrapper{
  615. width: 100%;
  616. display: flex;
  617. justify-content: center;
  618. .inner--contents{
  619. width:100%;
  620. max-width:1200px;
  621. .section--title{
  622. color: #191919;
  623. text-align: center;
  624. font-size: 35px;
  625. font-style: normal;
  626. font-weight: 800;
  627. line-height: 100%; /* 35px */
  628. letter-spacing: -0.7px;
  629. }
  630. .faq--list--wrap{
  631. width:100%;
  632. max-width:1200px;
  633. padding-top:70px;
  634. ul{
  635. width: 100%;
  636. border-bottom:1px solid #E6E6E6;
  637. li{
  638. width: 100%;
  639. text-align: left;
  640. border-top:1px solid #E6E6E6;
  641. position: relative;
  642. @for $i from 1 through 9 {
  643. &:nth-of-type(#{$i}) {
  644. .faq--item--title {
  645. &::before {
  646. content: 'Q#{$i}';
  647. }
  648. }
  649. }
  650. }
  651. .faq--item--title{
  652. padding:30px 20px;
  653. position: relative;
  654. cursor: pointer;
  655. transition: background-color 0.3s ease;
  656. &:after{
  657. content:'';
  658. display: block;
  659. width:100%;
  660. height:1px;
  661. width:18px;
  662. height:18px;
  663. background: url(../img/chv_down.svg) no-repeat center center / contain;
  664. position: absolute;
  665. top:50%;
  666. right:20px;
  667. transform: translateY(-50%);
  668. }
  669. &.active{
  670. &:after{
  671. background: url(../img/chv_up.svg) no-repeat center center / contain;
  672. transform: translateY(-50%) rotate(0deg);
  673. }
  674. }
  675. > p{
  676. padding-left:60px;
  677. color: #222;
  678. font-size: 18px;
  679. font-style: normal;
  680. font-weight: 400;
  681. line-height: 100%; /* 18px */
  682. letter-spacing: -0.36px;
  683. }
  684. &::before{
  685. content:'';
  686. display:inline-flex;
  687. align-items: center;
  688. justify-content: center;
  689. position: absolute;
  690. top:50%;
  691. left:20px;
  692. transform: translateY(-50%);
  693. width:40px;
  694. min-width:40px;
  695. height:40px;
  696. border-radius: 40px;
  697. border-radius: 100px;
  698. border: 1px solid #E6E6E6;
  699. background: #FFF;
  700. color: #2ECC71;
  701. text-align: center;
  702. font-size: 15px;
  703. font-style: normal;
  704. font-weight: 700;
  705. line-height: 100%; /* 15px */
  706. letter-spacing: -0.3px;
  707. }
  708. }
  709. .faq--item--content{
  710. position: relative;
  711. padding:30px 20px;
  712. border-top: 1px solid #E6E6E6;
  713. background: #F6F6F6;
  714. display: none;
  715. > p{
  716. padding-left:60px;
  717. color: #333;
  718. font-size: 16px;
  719. font-style: normal;
  720. font-weight: 400;
  721. letter-spacing: -0.32px;
  722. }
  723. &::before{
  724. content:'A';
  725. position: absolute;
  726. top: 30px;
  727. left:20px;
  728. color: #FFF;
  729. text-align: center;
  730. font-size: 17px;
  731. font-style: normal;
  732. font-weight: 700;
  733. line-height: 100%; /* 17px */
  734. letter-spacing: -0.34px;
  735. display: inline-flex;
  736. align-items: center;
  737. justify-content: center;
  738. width:40px;
  739. min-width:40px;
  740. height:40px;
  741. border-radius: 100px;
  742. background: linear-gradient(180deg, #65CC2E 0%, #2ECC71 52.4%, #2597D0 100%);
  743. }
  744. }
  745. }
  746. }
  747. }
  748. }
  749. }
  750. .gray--section{
  751. background-color: #f9f9f9;
  752. }
  753. .green--section{
  754. background-color: #2ECC71;
  755. }
  756. .light--green--section{
  757. background-color: #e9f7ef;
  758. }
  759. .impt--section{
  760. background: url(../img/dear_bg.png) no-repeat center center / cover;
  761. }
  762. .section--container{
  763. max-width: 1200px;
  764. width: 100%;
  765. margin: 0 auto;
  766. &.p--120{
  767. padding: 120px 0;
  768. }
  769. &.p--100{
  770. padding: 100px 0;
  771. }
  772. .title--wrap{
  773. >h2{
  774. text-align: center;
  775. color: #000;
  776. font-size: 35px;
  777. font-weight: 300;
  778. strong{
  779. font-weight: 700;
  780. }
  781. }
  782. >p{
  783. text-align: center;
  784. }
  785. &.big{
  786. >h2{
  787. color: #000;
  788. font-size: 50px;
  789. font-weight: 300;
  790. letter-spacing: -0.5px;
  791. margin-bottom: 60px;
  792. line-height: 1.4;
  793. strong{
  794. font-weight: 700;
  795. }
  796. }
  797. >p{
  798. color: #000;
  799. font-weight: 300;
  800. line-height: 1.7;
  801. font-size: 18px;
  802. }
  803. }
  804. &.le{
  805. >h2, >p{
  806. text-align: left;
  807. }
  808. }
  809. }
  810. .now--box--wrap{
  811. .box--top{
  812. display: flex;
  813. margin-bottom: 90px;
  814. justify-content: space-between;
  815. .box{
  816. gap: 40px;
  817. width: 33.333%;
  818. display: flex;
  819. flex-direction: column;
  820. align-items: center;
  821. text-align: center;
  822. >p{
  823. color: #000;
  824. font-size: 18px;
  825. font-weight: 300;
  826. strong{
  827. font-weight: 700;
  828. }
  829. }
  830. }
  831. }
  832. .box--bot{
  833. display: flex;
  834. gap: 40px;
  835. .box{
  836. width: 50%;
  837. border-radius: 20px;
  838. padding: 0 40px;
  839. display: flex;
  840. align-items: center;
  841. height: 120px;
  842. background-size: cover;
  843. background-repeat: no-repeat;
  844. background-position: right bottom;
  845. background-image: url(../img/bg--now1.svg);
  846. &:last-child{
  847. background-image: url(../img/bg--now2.svg);
  848. }
  849. }
  850. }
  851. }
  852. .growth--logic--wrap{
  853. display: flex;
  854. flex-wrap: wrap;
  855. gap: 40px;
  856. >div{
  857. width: calc((100% - 120px) / 3);
  858. }
  859. .title--box{
  860. width: calc((100% - 120px) / 3 + 40px);
  861. h2{
  862. color: #fff;
  863. font-size: 45px;
  864. font-weight: 300;
  865. letter-spacing: -0.45px;
  866. strong{
  867. font-weight: 800;
  868. color: #fff;
  869. }
  870. }
  871. .btn--wrap{
  872. display: flex;
  873. flex-wrap: wrap;
  874. gap: 15px;
  875. a{
  876. display: inline-block;
  877. padding: 20px 30px;
  878. color: #fff;
  879. border-radius: 1000px;
  880. border: 1px solid #fff;
  881. line-height: 1;
  882. }
  883. }
  884. }
  885. .logic--box{
  886. border-radius: 25px;
  887. background-color: #fff;
  888. min-height: 350px;
  889. padding: 50px 45px 70px;
  890. dt{
  891. color: #333;
  892. font-size: 22px;
  893. font-weight: 700;
  894. letter-spacing: -0.22px;
  895. margin-bottom: 30px;
  896. strong{
  897. color :#1aaf59;
  898. font-weight: 700;
  899. }
  900. }
  901. dd{
  902. color: #444;
  903. font-size: 15px;
  904. font-weight: 400;
  905. letter-spacing: -0.15px;
  906. line-height: 1.7;
  907. }
  908. &.special{
  909. width: calc((100% - 120px) / 3 + 40px);
  910. background-color: #139e4e;
  911. background-image: url(../img/ico--logic.svg);
  912. background-repeat: no-repeat;
  913. background-position: right bottom;
  914. dt{
  915. color :#fff;
  916. text-decoration-line: underline;
  917. text-decoration-style: solid;
  918. text-decoration-skip-ink: auto;
  919. text-decoration-thickness: auto;
  920. text-underline-offset: auto;
  921. text-underline-position: from-font;
  922. }
  923. dd{
  924. color: #fff;
  925. }
  926. }
  927. }
  928. }
  929. .best--service--wrap{
  930. display: flex;
  931. gap: 40px;
  932. .service--box{
  933. padding: 40px 45px 70px;
  934. border: 1px solid #e5e5e5;
  935. border-radius: 25px;
  936. position: relative;
  937. width: calc((100% - 80px) / 3);
  938. .service--img{
  939. img{
  940. width: 70%;
  941. max-width: 140px;
  942. }
  943. }
  944. &:nth-child(2){
  945. .service--numb{
  946. background-image: url(../img/numb--service2.svg);
  947. }
  948. }
  949. &:nth-child(3){
  950. .service--numb{
  951. background-image: url(../img/numb--service3.svg);
  952. }
  953. }
  954. .service--numb{
  955. position: absolute;
  956. right: 0;
  957. display: inline-block;
  958. width: 25%;
  959. max-width: 100px;
  960. background-size: 100%;
  961. height: 100px;
  962. background-repeat: no-repeat;
  963. background-position: top right;
  964. top: 10px;
  965. background-image: url(../img/numb--service1.svg);
  966. }
  967. h3{
  968. margin-top: 40px;
  969. margin-bottom: 30px;
  970. font-size: 22px;
  971. color: #191919;
  972. font-weight: 300;
  973. letter-spacing: -0.22px;
  974. line-height: 1.4;
  975. strong{
  976. font-weight: 700;
  977. }
  978. }
  979. p{
  980. color: #333;
  981. font-size: 16px;
  982. letter-spacing: -0.16px;
  983. line-height: 1.7;
  984. font-weight: 300;
  985. }
  986. }
  987. }
  988. .process--plan--wrap{
  989. .title--wrap{
  990. margin-bottom: 70px;
  991. span{
  992. color: #1aaf59;
  993. font-size: 15px;
  994. text-transform: uppercase;
  995. display: inline-block;
  996. margin-bottom: 25px;
  997. }
  998. h2{
  999. font-size: 30px;
  1000. font-weight: 400;
  1001. margin-bottom: 25px;
  1002. }
  1003. p{
  1004. font-size: 18px;
  1005. font-weight: 300;
  1006. }
  1007. }
  1008. .content--wrap{
  1009. h3{
  1010. .ico{
  1011. width: 20px;
  1012. height: 20px;
  1013. background-image: url(../img/ico--heart.svg);
  1014. display: inline-block;
  1015. background-repeat: no-repeat;
  1016. background-position: center;
  1017. margin-right: 15px;
  1018. }
  1019. color: #000;
  1020. font-size: 20px;
  1021. font-weight: 700;
  1022. letter-spacing: -0.2px;
  1023. display: flex;
  1024. align-items: center;
  1025. margin-bottom: 40px;
  1026. }
  1027. .direct--wrap{
  1028. display: flex;
  1029. justify-content: space-between;
  1030. align-items: center;
  1031. gap: 20px;
  1032. .circle{
  1033. display: flex;
  1034. min-width: 190px;
  1035. justify-content: center;
  1036. gap: 12px;
  1037. padding: 20px 40px;
  1038. background-color: #2ECC71;
  1039. align-items: center;
  1040. border-radius: 100px;
  1041. p{
  1042. color: #fff;
  1043. font-size: 16px;
  1044. font-weight: 600;
  1045. line-height: 1;
  1046. letter-spacing: -0.17px;
  1047. }
  1048. .ico{
  1049. width: 25px;
  1050. min-width: 25px;
  1051. height: 25px;
  1052. display: inline-block;
  1053. background-position: center;
  1054. background-repeat: no-repeat;
  1055. background-size: 100%;
  1056. background-image: url(../img/ico--direct1.svg);
  1057. }
  1058. &:nth-of-type(2){
  1059. background-color: #188345;
  1060. .ico{
  1061. background-image: url(../img/ico--direct2.svg);
  1062. }
  1063. }
  1064. &:nth-of-type(3){
  1065. .ico{
  1066. background-image: url(../img/ico--direct3.svg);
  1067. }
  1068. }
  1069. &:nth-of-type(4){
  1070. background-color: #188345;
  1071. .ico{
  1072. background-image: url(../img/ico--direct4.svg);
  1073. }
  1074. }
  1075. }
  1076. .bar{
  1077. width: 70px;
  1078. height: 1px;
  1079. border-bottom: 3px dashed #2ecc71;
  1080. }
  1081. }
  1082. .process--wrap{
  1083. .process--title{
  1084. position: relative;
  1085. padding: 25px 30px;
  1086. text-align: center;
  1087. width: fit-content;
  1088. background-image: url(../img/bg--process.svg);
  1089. background-repeat: no-repeat;
  1090. background-size: cover;
  1091. color: #222;
  1092. font-size: 16px;
  1093. margin: 12px auto;
  1094. border-radius: 1000px;
  1095. letter-spacing: -0.16px;
  1096. font-weight: 600;
  1097. &::after{
  1098. content: '';
  1099. width: calc(100% + 24px);
  1100. height: calc(100% + 24px);
  1101. border: 5px solid #DDEE81;
  1102. position: absolute;
  1103. display: inline-block;
  1104. border-radius: inherit;
  1105. top: -12px;
  1106. left: -12px;
  1107. }
  1108. }
  1109. .process--cont{
  1110. padding-top: 60px;
  1111. .process--top{
  1112. display: flex;
  1113. align-items: center;
  1114. justify-content: space-between;
  1115. .process--side{
  1116. width: 123px;
  1117. display: flex;
  1118. gap: 15px;
  1119. flex-direction: column;
  1120. justify-content: center;
  1121. position: relative;
  1122. &::after{
  1123. content: '';
  1124. display: inline-block;
  1125. width: 70px;
  1126. height: 100%;
  1127. z-index: 3;
  1128. background-repeat: no-repeat;
  1129. background-position: center;
  1130. background-image: url(../img/ico--rainbow--arrow1.svg);
  1131. position: absolute;
  1132. top: 0;
  1133. left: calc(100% + 20px);
  1134. }
  1135. &:last-child{
  1136. &::after{
  1137. left: auto;
  1138. right: calc(100% + 20px);
  1139. background-image: url(../img/ico--rainbow--arrow2.svg);
  1140. }
  1141. }
  1142. .circle{
  1143. color: #444;
  1144. font-size: 16px;
  1145. text-align: center;
  1146. padding: 19px 0;
  1147. border-radius: 100px;
  1148. border: 2px solid #ddee81;
  1149. font-weight: 600;
  1150. line-height: 1;
  1151. letter-spacing: -0.16px;
  1152. strong{
  1153. font-weight: 600;
  1154. color: #1aaf59;
  1155. }
  1156. }
  1157. .line{
  1158. height: 50px;
  1159. width: 50%;
  1160. border-right: 3px dashed #ddee81;
  1161. }
  1162. &.right{
  1163. }
  1164. }
  1165. .process--circle{
  1166. width: calc(100% - 300px);
  1167. height: 410px;
  1168. display: flex;
  1169. background-image: url(../img/bg--process--circle.svg);
  1170. background-repeat: no-repeat;
  1171. background-position: center;
  1172. align-items: center;
  1173. justify-content: center;
  1174. background-size: 100%;
  1175. position: relative;
  1176. &::after{
  1177. content: '';
  1178. background-repeat: no-repeat;
  1179. background-position: center;
  1180. display: inline-block;
  1181. width: 33px;
  1182. height: 71px;
  1183. background-image: url(../img/ico--rainbow--arrow3.svg);
  1184. position: absolute;
  1185. top: calc(100% - 40px);
  1186. }
  1187. .circle{
  1188. width: 28%;
  1189. display: flex;
  1190. flex-direction: column;
  1191. gap: 35px;
  1192. align-items: center;
  1193. position: relative;
  1194. &::after{
  1195. content: '';
  1196. position: absolute;
  1197. right: -7.5px;
  1198. display: inline-block;
  1199. top: calc(50% - 15px);
  1200. width: 30px;
  1201. height: 30px;
  1202. background-image: url(../img/ico--process--arrow.svg);
  1203. }
  1204. &:last-child{
  1205. &::after{
  1206. display: none;
  1207. }
  1208. }
  1209. .ico{
  1210. width: 80px;
  1211. height: 80px;
  1212. background-position: center;
  1213. background-size: 100%;
  1214. background-repeat: no-repeat;
  1215. display: inline-block;
  1216. }
  1217. p{
  1218. font-size: 18px;
  1219. font-weight: 400;
  1220. color: #000;
  1221. strong{
  1222. font-weight: 700;
  1223. }
  1224. }
  1225. &:nth-child(1){
  1226. .ico{
  1227. background-image: url(../img/ico--process--circle1.svg);
  1228. }
  1229. }
  1230. &:nth-child(2){
  1231. .ico{
  1232. background-image: url(../img/ico--process--circle2.svg);
  1233. }
  1234. }
  1235. &:nth-child(3){
  1236. .ico{
  1237. background-image: url(../img/ico--process--circle3.svg);
  1238. }
  1239. }
  1240. }
  1241. }
  1242. }
  1243. .process--bot{
  1244. padding-top: 50px;
  1245. padding-bottom: 120px;
  1246. display: flex;
  1247. flex-direction: column;
  1248. justify-content: center;
  1249. align-items: center;
  1250. gap: 20px;
  1251. .process--side{
  1252. width: 100%;
  1253. display: flex;
  1254. gap: 15px;
  1255. align-items: center;
  1256. justify-content: center;
  1257. .arrow{
  1258. flex: 1;
  1259. margin-left: 53px;
  1260. margin-right: 25px;
  1261. height: 20px;
  1262. position: relative;
  1263. background-color: #2ECC71;
  1264. &::after{
  1265. position: absolute;
  1266. bottom: -6.7px;
  1267. right: -13px;
  1268. background-size: 137px 33px;
  1269. background-position: right center;
  1270. background-repeat: no-repeat;
  1271. content: '';
  1272. width: 100%;
  1273. height: 33px;
  1274. background-image: url(../img/ico--rainbow--arrow5.svg);
  1275. }
  1276. &::before{
  1277. content: '';
  1278. display: inline-block;
  1279. position: absolute;
  1280. width: 20px;
  1281. height: 90px;
  1282. bottom: 0;
  1283. left: 0;
  1284. background-color: #2ECC71;
  1285. background-repeat: no-repeat;
  1286. background-image: url(../img/ico--rainbow--arrow--bar.svg);
  1287. }
  1288. &.right{
  1289. margin-right: 53px;
  1290. margin-left: 25px;
  1291. &::after{
  1292. right: auto;
  1293. left: -13px;
  1294. bottom: -6px;
  1295. background-position: left center;
  1296. background-image: url(../img/ico--rainbow--arrow6.svg);
  1297. }
  1298. &::before{
  1299. left: auto;
  1300. right: 0;
  1301. }
  1302. }
  1303. }
  1304. .circle{
  1305. width: 123px;
  1306. color: #444;
  1307. font-size: 16px;
  1308. text-align: center;
  1309. padding: 19px 0;
  1310. border-radius: 100px;
  1311. border: 2px solid #B0D48C;
  1312. font-weight: 600;
  1313. line-height: 1;
  1314. letter-spacing: -0.16px;
  1315. strong{
  1316. font-weight: 600;
  1317. color: #1aaf59;
  1318. }
  1319. }
  1320. .line{
  1321. width: 50px;
  1322. height: 1px;
  1323. border-bottom: 3px dashed #B0D48C;
  1324. }
  1325. }
  1326. .line{
  1327. display: inline-block;
  1328. width: 33px;
  1329. height: 71px;
  1330. background-image: url(../img/ico--rainbow--arrow4.svg);
  1331. }
  1332. .process--txt{
  1333. text-align: center;
  1334. font-weight: 700;
  1335. font-size: 25px;
  1336. line-height: 1;
  1337. color: #333;
  1338. strong{
  1339. color: #188345;
  1340. }
  1341. }
  1342. .process--blue--circle{
  1343. color: #fff;
  1344. letter-spacing: -0.18px;
  1345. font-size: 18px;
  1346. font-weight: 400;
  1347. position: relative;
  1348. padding: 36px 80px;
  1349. border-radius: 1000px;
  1350. background-color: #5281FF;
  1351. &::after{
  1352. content: '';
  1353. position: absolute;
  1354. width: 85px;
  1355. height: 104px;
  1356. top: 20px;
  1357. left: calc(100% - 50px);
  1358. background-image: url(../img/ico--process.svg);
  1359. }
  1360. strong{
  1361. color: #fff;
  1362. font-weight: 700;
  1363. }
  1364. }
  1365. }
  1366. .process--box{
  1367. display: flex;
  1368. flex-direction: column;
  1369. gap: 30px;
  1370. .box{
  1371. padding: 55px 200px 55px 70px;
  1372. background-color: #f0f3f5;
  1373. background-repeat: no-repeat;
  1374. background-position: right 40px bottom -20px;
  1375. &:nth-child(1){
  1376. background-image: url(../img/img--process1.svg);
  1377. background-position: right 40px center;
  1378. }
  1379. &:nth-child(2){
  1380. background-image: url(../img/img--process2.svg);
  1381. }
  1382. &:nth-child(3){
  1383. background-image: url(../img/img--process3.svg);
  1384. }
  1385. h4{
  1386. color: #000;
  1387. margin-bottom: 30px;
  1388. font-size: 20px;
  1389. font-weight: 700;
  1390. letter-spacing: -0.2px;
  1391. strong{
  1392. color: #009840;
  1393. }
  1394. }
  1395. li{
  1396. position: relative;
  1397. padding-left: 15px;
  1398. &::before{
  1399. position: absolute;
  1400. left: 0px;
  1401. top: 12px;
  1402. content: '';
  1403. width: 2px;
  1404. height: 2px;
  1405. background-color: #000;
  1406. border-radius: 50%;
  1407. }
  1408. }
  1409. p, li{
  1410. font-size: 15px;
  1411. color: #000;
  1412. font-weight: 300;
  1413. line-height: 1.7;
  1414. letter-spacing: -0.15px;
  1415. strong{
  1416. color: #009840;
  1417. font-weight: 600;
  1418. }
  1419. }
  1420. }
  1421. }
  1422. }
  1423. }
  1424. }
  1425. }
  1426. .four--strategy--wrap{
  1427. .strategy--cont1{
  1428. display: flex;
  1429. gap: 120px;
  1430. margin-bottom: 140px;
  1431. .cont--left{
  1432. width: 50%;
  1433. position: relative;
  1434. &::before{
  1435. content: '';
  1436. position: absolute;
  1437. height: 400px;
  1438. width: 1000%;
  1439. border-radius: 0 1000px 1000px 0;
  1440. background-color: rgba(53, 201, 149, 0.10);
  1441. right: 0;
  1442. top: 50%;
  1443. transform: translateY(-50%);
  1444. z-index: -1;
  1445. }
  1446. .box--wrap{
  1447. width: 440px;
  1448. display: flex;
  1449. flex-wrap: wrap;
  1450. gap: 40px;
  1451. position: relative;
  1452. &::before{
  1453. content: '';
  1454. position: absolute;
  1455. width: 346px;
  1456. height: 346px;
  1457. border-radius: 30px;
  1458. border: 1px solid rgba(53, 201, 149, 0.50);
  1459. transform: rotate(-45deg);
  1460. top: 0;
  1461. left: 45px;
  1462. z-index: -1;
  1463. }
  1464. li{
  1465. display: flex;
  1466. justify-content: center;
  1467. text-align: center;
  1468. flex-direction: column;
  1469. padding: 25px;
  1470. align-items: center;
  1471. width: 200px;
  1472. max-width: 200px;
  1473. height: 150px;
  1474. border-radius: 30px;
  1475. border: 1px solid #1BB57F;
  1476. gap: 10px;
  1477. background-color: #35C995;
  1478. span{
  1479. color: #fff;
  1480. font-size: 15px;
  1481. letter-spacing: -0.3px;
  1482. font-weight: 600;
  1483. }
  1484. div{
  1485. color: #fff;
  1486. font-size: 15px;
  1487. font-weight: 500;
  1488. letter-spacing: -0.3px;
  1489. }
  1490. strong{
  1491. color: #fff;
  1492. font-size: 50px;
  1493. font-weight: 800;
  1494. line-height: 1;
  1495. }
  1496. &:nth-child(3){
  1497. height: 170px;
  1498. }
  1499. &:last-child{
  1500. height: 170px;
  1501. border: 1px solid #079C68;
  1502. background-color: #1AAC78;
  1503. strong{
  1504. font-weight: 800;
  1505. font-size: 20px;
  1506. }
  1507. div{
  1508. font-size: 15px;
  1509. font-weight: 600;
  1510. span{
  1511. font-size: 14px;
  1512. display: block;
  1513. }
  1514. &.percent--wrap{
  1515. display: flex;
  1516. width: 100%;
  1517. flex-direction: column;
  1518. }
  1519. &.percent{
  1520. display: flex;
  1521. align-items: center;
  1522. width: 100%;
  1523. gap: 5px;
  1524. .line{
  1525. flex: 1;
  1526. border-bottom: 1px dashed #fff;
  1527. }
  1528. strong{
  1529. color: #ff0;
  1530. font-size: 14px;
  1531. font-weight: 800;
  1532. letter-spacing: -0.28px;
  1533. }
  1534. }
  1535. }
  1536. }
  1537. }
  1538. }
  1539. }
  1540. .cont--right{
  1541. width: 40%;
  1542. display: flex;
  1543. align-items: center;
  1544. dl{
  1545. dt{
  1546. color: #222;
  1547. font-size: 35px;
  1548. font-weight: 700;
  1549. margin-bottom: 15px;
  1550. }
  1551. dd{
  1552. div{
  1553. margin-bottom: 40px;
  1554. font-weight: 300;
  1555. font-size: 20px;
  1556. color: #333;
  1557. strong{
  1558. color: #1aaf59;
  1559. font-weight: 800;
  1560. }
  1561. }
  1562. span{
  1563. color: #222;
  1564. font-size: 18px;
  1565. font-weight: 300;
  1566. }
  1567. }
  1568. }
  1569. }
  1570. }
  1571. .strategy--cont2{
  1572. margin-bottom: 60px;
  1573. display: flex;
  1574. align-items: center;
  1575. flex-direction: column;
  1576. .question, .question2{
  1577. color: #333;
  1578. font-size: 25px;
  1579. font-weight: 300;
  1580. letter-spacing: -0.5px;
  1581. margin-bottom: 20px;
  1582. strong{
  1583. color: #191919;
  1584. font-weight: 800;
  1585. }
  1586. }
  1587. .question2{
  1588. margin-bottom: 40px;
  1589. strong{
  1590. color: #1AAF59;
  1591. }
  1592. }
  1593. .answer, .answer2{
  1594. letter-spacing: -0.36px;
  1595. text-align: center;
  1596. color: #555;
  1597. font-size: 18px;
  1598. margin-bottom: 40px;
  1599. font-weight: 300;
  1600. }
  1601. .answer2{
  1602. color: #222;
  1603. margin-bottom: 50px;
  1604. }
  1605. .result{
  1606. padding: 20px 30px;
  1607. border-radius: 100px;
  1608. background-color: rgba(26, 175, 89, 0.1);
  1609. font-weight: 300;
  1610. font-size: 19px;
  1611. strong{
  1612. font-weight: 600;
  1613. }
  1614. }
  1615. }
  1616. .strategy--cont3{
  1617. display: flex;
  1618. flex-direction: column;
  1619. gap: 35px;
  1620. .box{
  1621. padding: 30px 50px;
  1622. border-radius: 40px;
  1623. border: 1px solid #EEE;
  1624. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
  1625. background-repeat: no-repeat;
  1626. background-position: right 40px bottom;
  1627. dt{
  1628. margin-bottom: 20px;
  1629. color: #1aaf59;
  1630. font-size: 30px;
  1631. font-weight: 700;
  1632. }
  1633. dd{
  1634. ul{
  1635. display: flex;
  1636. flex-direction: column;
  1637. gap: 18px;
  1638. }
  1639. li{
  1640. color: #333;
  1641. font-size: 15px;
  1642. font-weight: 300;
  1643. padding-left: 15px;
  1644. position: relative;
  1645. &::before{
  1646. background-color: #8b8b8b;
  1647. width: 5px;
  1648. height: 5px;
  1649. display: inline-block;
  1650. border-radius: 50%;
  1651. content: '';
  1652. position: absolute;
  1653. top: 8px;
  1654. left: 3px;
  1655. }
  1656. }
  1657. }
  1658. &:nth-child(1){
  1659. background-image: url(../img/img--strategy1.svg);
  1660. }
  1661. &:nth-child(2){
  1662. background-position: right 100px bottom;
  1663. background-image: url(../img/img--strategy2.svg);
  1664. }
  1665. &:nth-child(3){
  1666. background-image: url(../img/img--strategy3.svg);
  1667. }
  1668. }
  1669. }
  1670. }
  1671. .mna--dream--wrap{
  1672. display: flex;
  1673. gap: 40px;
  1674. justify-content: center;
  1675. .dream--cont{
  1676. width: 50%;
  1677. background-color: #d1eede;
  1678. padding: 60px 50px 80px;
  1679. border-radius: 30px;
  1680. h4{
  1681. letter-spacing: -0.6px;
  1682. font-size: 30px;
  1683. color: #191919;
  1684. font-weight: 300;
  1685. line-height: 1.4;
  1686. margin-bottom: 35px;
  1687. strong{
  1688. font-weight: 700;
  1689. }
  1690. }
  1691. .sub--txt{
  1692. margin-bottom: 40px;
  1693. font-size: 18px;
  1694. font-weight: 300;
  1695. color: #333;
  1696. }
  1697. .box{
  1698. padding: 30px;
  1699. background-color: #B4DAC4;
  1700. margin-bottom: 50px;
  1701. border-radius: 20px;
  1702. .box--title{
  1703. color: #397251;
  1704. font-size: 18px;
  1705. font-weight: 700;
  1706. letter-spacing: -0.36px;
  1707. margin-bottom: 15px;
  1708. }
  1709. .box--desc{
  1710. font-weight: 400;
  1711. font-size: 15px;
  1712. color: #333;
  1713. li{
  1714. position: relative;
  1715. padding-left: 12px;
  1716. font-size: 15px;
  1717. color: #333;
  1718. &::before{
  1719. position: absolute;
  1720. left: 0;
  1721. top: 0;
  1722. content: '-';
  1723. }
  1724. }
  1725. }
  1726. }
  1727. .chat{
  1728. display: flex;
  1729. gap: 30px;
  1730. .chat--img{
  1731. min-width: 90px;
  1732. width: 90px;
  1733. height: 90px;
  1734. border-radius: 50%;
  1735. background-image: url(../img/img--dream.svg);
  1736. background-repeat: no-repeat;
  1737. background-position: bottom center;
  1738. background-color: #bde8cf;
  1739. }
  1740. .chat--bubble{
  1741. border-radius: 20px;
  1742. padding: 25px;
  1743. border: 1px solid #EEE;
  1744. width: 100%;
  1745. background: #FFF;
  1746. margin-bottom: 40px;
  1747. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  1748. span{
  1749. color: #1aaf59;
  1750. font-size: 15px;
  1751. font-weight: 500;
  1752. }
  1753. }
  1754. }
  1755. .chat--answer{
  1756. margin-bottom: 50px;
  1757. line-height: 1.7;
  1758. color: #111;
  1759. font-size: 16px;
  1760. font-weight: 400;
  1761. letter-spacing: -0.32px;
  1762. ul{
  1763. margin-top: 10px;
  1764. display: flex;
  1765. flex-direction: column;
  1766. gap: 10px;
  1767. li{
  1768. position: relative;
  1769. padding-left: 10px;
  1770. line-height: 1.4;
  1771. color: #111;
  1772. font-size: 15px;
  1773. font-weight: 400;
  1774. letter-spacing: -0.3px;
  1775. &::before{
  1776. content: '';
  1777. width: 3px;
  1778. height: 3px;
  1779. border-radius: 50%;
  1780. display: inline-block;
  1781. background-color: #111;
  1782. position: absolute;
  1783. left: 0;
  1784. top: 7px;
  1785. }
  1786. }
  1787. }
  1788. &:last-child{
  1789. margin-bottom: 0;
  1790. }
  1791. }
  1792. &.purple{
  1793. background-color: #e4e9ff;
  1794. .box{
  1795. background-color: #D0D9FF;
  1796. .box--title{
  1797. color: #3A54C5;
  1798. }
  1799. }
  1800. .chat{
  1801. .chat--img{
  1802. background-color: #cfd8ff;
  1803. }
  1804. }
  1805. }
  1806. }
  1807. }
  1808. .family--business--wrap{
  1809. .family--cont--wrap{
  1810. margin-bottom: 80px;
  1811. display: flex;
  1812. gap: 20px;
  1813. justify-content: space-between;
  1814. .cont--left{
  1815. display: flex;
  1816. flex-direction: column;
  1817. position: relative;
  1818. h2{
  1819. color: #333;
  1820. font-size: 40px;
  1821. font-weight: 300;
  1822. letter-spacing: -0.45px;
  1823. margin-bottom: 50px;
  1824. strong{
  1825. font-weight: 700;
  1826. color: #191919;
  1827. }
  1828. }
  1829. span{
  1830. color: #333;
  1831. font-size: 20px;
  1832. font-weight: 300;
  1833. letter-spacing: -0.4px;
  1834. margin-bottom: 80px;
  1835. }
  1836. .btn--wrap{
  1837. display: flex;
  1838. gap: 15px;
  1839. a{
  1840. display: inline-block;
  1841. padding: 20px 30px;
  1842. background-color: #fff;
  1843. color: #1aaf59;
  1844. font-weight: 500;
  1845. border-radius: 1000px;
  1846. border: 1px solid rgba(46, 204, 113, 0.50);
  1847. line-height: 1;
  1848. }
  1849. }
  1850. .family--img{
  1851. position: absolute;
  1852. bottom: 80px;
  1853. right: 0;
  1854. }
  1855. }
  1856. .cont--right{
  1857. width: 700px;
  1858. gap: 60px;
  1859. display: flex;
  1860. .family--box--wrap{
  1861. width: 50%;
  1862. display: flex;
  1863. flex-direction: column;
  1864. gap: 50px;
  1865. }
  1866. .family--box{
  1867. display: flex;
  1868. border-radius: 30px;
  1869. background-color: #f6f6f6;
  1870. padding: 35px 35px 60px 35px;
  1871. flex-direction: column;
  1872. .ico{
  1873. width: 70px;
  1874. height: 70px;
  1875. background-size: 35px 35px;
  1876. background-color: #2ecc71;
  1877. border-radius: 15px;
  1878. background-position: center;
  1879. background-repeat: no-repeat;
  1880. margin-bottom: 50px;
  1881. }
  1882. p{
  1883. font-size: 23px;
  1884. color: #000;
  1885. letter-spacing: -0.46px;
  1886. font-weight: 500;
  1887. margin-bottom: 25px;
  1888. }
  1889. span{
  1890. color: #000;
  1891. font-size: 16px;
  1892. font-weight: 300;
  1893. letter-spacing: -0.32px;
  1894. }
  1895. .ico{
  1896. &.ico1{
  1897. background-image: url(../img/ico--family1.svg);
  1898. }
  1899. &.ico2{
  1900. background-image: url(../img/ico--family2.svg);
  1901. }
  1902. &.ico3{
  1903. background-image: url(../img/ico--family3.svg);
  1904. }
  1905. &.ico4{
  1906. background-image: url(../img/ico--family4.svg);
  1907. }
  1908. &.ico5{
  1909. background-image: url(../img/ico--family5.svg);
  1910. }
  1911. }
  1912. }
  1913. }
  1914. }
  1915. .family--table--wrap{
  1916. .table--title{
  1917. margin-bottom: 30px;
  1918. width: fit-content;
  1919. border-radius: 1000px;
  1920. padding: 15px 30px;
  1921. color: #1aaf59;
  1922. letter-spacing: -0.32px;
  1923. font-size: 16px;
  1924. font-weight: 600;
  1925. border: 1px solid rgba(46, 204, 113, 0.50);
  1926. }
  1927. .table--wrap{
  1928. margin-bottom: 50px;
  1929. &:last-child{
  1930. margin-bottom: 0;
  1931. }
  1932. }
  1933. table{
  1934. width: 100%;
  1935. text-align: center;
  1936. tr{
  1937. &:first-child{
  1938. th{
  1939. border-bottom: none;
  1940. .ico{
  1941. background-image: url(../img/ico--strategy1.svg);
  1942. }
  1943. }
  1944. }
  1945. th{
  1946. border: 1px solid #d7d7d7;
  1947. background-color: #f3f3f3;
  1948. color: #222;
  1949. font-size: 16px;
  1950. font-weight: 600;
  1951. padding: 25px 20px;
  1952. &:nth-of-type(2){
  1953. background-color: #2ecc71;
  1954. border-color: #17b55a;
  1955. color: #fff;
  1956. }
  1957. }
  1958. td{
  1959. color: #111;
  1960. padding: 25px 20px;
  1961. background-color: #fff;
  1962. font-size: 16px;
  1963. font-weight: 400;
  1964. letter-spacing: -0.32px;
  1965. border: 1px solid #e0e0e0;
  1966. &.color--green{
  1967. color: #0f9247;
  1968. strong{
  1969. color: #0f9247;
  1970. font-weight: 700;
  1971. }
  1972. }
  1973. ul{
  1974. li{
  1975. text-align: left;
  1976. color: #111;
  1977. font-size: 16px;
  1978. font-weight: 400;
  1979. position: relative;
  1980. padding-left: 10px;
  1981. &::before{
  1982. content: '';
  1983. width: 3px;
  1984. height: 3px;
  1985. border-radius: 50%;
  1986. background-color: #111;
  1987. display: inline-block;
  1988. top: 10px;
  1989. left: 0;
  1990. position: absolute;
  1991. }
  1992. }
  1993. }
  1994. }
  1995. }
  1996. }
  1997. }
  1998. }
  1999. .impt--search--wrap{
  2000. display: flex;
  2001. align-items: center;
  2002. justify-content: center;
  2003. flex-direction: column;
  2004. > ul{
  2005. display: flex;
  2006. align-items: center;
  2007. justify-content: center;
  2008. gap:40px;
  2009. row-gap: 35px;
  2010. padding-top:70px;
  2011. width:100%;
  2012. max-width:1200px;
  2013. flex-wrap: wrap;
  2014. li{
  2015. display: flex;
  2016. align-items: center;
  2017. justify-content: space-between;
  2018. gap:25px;
  2019. width:calc( (100% - 80px ) / 3);
  2020. border-radius: 100px;
  2021. padding:20px 30px;
  2022. position: relative;
  2023. &:nth-of-type(odd){
  2024. background: linear-gradient(134deg, #52ABFF 6.76%, #5281FF 50.56%, #AE52FF 93.53%);
  2025. }
  2026. &:nth-of-type(even){
  2027. background: linear-gradient(134deg, #6DF3C4 6.76%, #2ECC71 50.56%, #25AD92 93.53%);
  2028. }
  2029. &:after{
  2030. content: '';
  2031. display: block;
  2032. width:18px;
  2033. height:18px;
  2034. background: url(../img/ic_arrow_02.svg) no-repeat center;
  2035. }
  2036. .title{
  2037. color: #FFF;
  2038. font-size: 18px;
  2039. width: calc(100% - 110px);
  2040. font-style: normal;
  2041. font-weight: 600;
  2042. line-height: 100%; /* 18px */
  2043. letter-spacing: -0.36px;
  2044. }
  2045. .thumbs{
  2046. display: inline-flex;
  2047. min-width:34px;
  2048. width: 34px;
  2049. height: 34px;
  2050. background: url(../img/thumbs_ic.png) no-repeat center;
  2051. }
  2052. }
  2053. }
  2054. .section--title--center{
  2055. color: #333;
  2056. text-align: center;
  2057. font-size: 35px;
  2058. font-style: normal;
  2059. font-weight: 300;
  2060. line-height: 100%; /* 35px */
  2061. letter-spacing: -0.7px;
  2062. strong{
  2063. color: #191919;
  2064. font-size: 35px;
  2065. font-style: normal;
  2066. font-weight: 800;
  2067. line-height: 100%;
  2068. letter-spacing: -0.7px;
  2069. }
  2070. }
  2071. }
  2072. .impt--list--wrap{
  2073. width:100%;
  2074. padding-top:50px;
  2075. ul{
  2076. display: flex;
  2077. align-items: stretch;
  2078. justify-content: center;
  2079. gap:50px;
  2080. li{
  2081. display: flex;
  2082. flex-direction: column;
  2083. border-radius: 30px;
  2084. background: #FFF;
  2085. padding:55px 50px;
  2086. width: 50%;
  2087. h3{
  2088. color: #000;
  2089. font-size: 20px;
  2090. font-style: normal;
  2091. font-weight: 600;
  2092. line-height: 100%;
  2093. strong{
  2094. color: #225DFF;
  2095. }
  2096. }
  2097. .captions{
  2098. padding-top:30px;
  2099. color: #000;
  2100. font-size: 16px;
  2101. font-style: normal;
  2102. margin-bottom: 60px;
  2103. font-weight: 300;
  2104. line-height: 2.1; /* 16px */
  2105. }
  2106. .thumb{
  2107. width: 100%;
  2108. max-width: 204px;
  2109. height:130px;
  2110. margin-top: auto;
  2111. &.thumb--01{
  2112. background: url(../img/dear_bg_ic01.png) no-repeat center center / contain;
  2113. }
  2114. &.thumb--02{
  2115. background: url(../img/dear_bg_ic02.png) no-repeat center center / contain;
  2116. }
  2117. }
  2118. }
  2119. }
  2120. }
  2121. .all--progress--wrap{
  2122. .title--wrap{
  2123. h2{
  2124. color: #333;
  2125. letter-spacing: -1px;
  2126. strong{
  2127. font-weight: 800;
  2128. color: #1AAF59;
  2129. }
  2130. }
  2131. }
  2132. .month--text--contents{
  2133. >p{
  2134. color: #191919;
  2135. font-size: 17px;
  2136. font-style: normal;
  2137. font-weight: 300;
  2138. letter-spacing: -0.34px;
  2139. display: flex;
  2140. }
  2141. .month--gap{
  2142. margin-bottom: 30px;
  2143. > span{
  2144. &:nth-of-type(1){
  2145. border-radius: 1000px;
  2146. border: 1px dashed #2ECC71;
  2147. color: #1AAF59;
  2148. font-size: 16px;
  2149. font-style: normal;
  2150. font-weight: 600;
  2151. line-height: 100%; /* 16px */
  2152. letter-spacing: -0.32px;
  2153. display: inline-flex;
  2154. align-items: center;
  2155. justify-content: center;
  2156. padding:20px;
  2157. margin-right:25px;
  2158. }
  2159. &:nth-of-type(2){
  2160. color: #111;
  2161. font-size: 20px;
  2162. font-style: normal;
  2163. font-weight: 500;
  2164. line-height: 100%; /* 20px */
  2165. letter-spacing: -0.4px;
  2166. strong{
  2167. font-weight: 800;
  2168. }
  2169. }
  2170. }
  2171. }
  2172. }
  2173. .compatibility--inner--conls{
  2174. width:100%;
  2175. display: flex;
  2176. align-items: flex-start;
  2177. justify-content: flex-start;
  2178. height: 280px;
  2179. flex-direction: column;
  2180. border-radius: 30px;
  2181. background: #2ECC71 url(../img/line_more_bg.png) no-repeat 100% bottom;
  2182. padding: 30px 50px 30px 50px;
  2183. position: relative;
  2184. >h2{
  2185. color: #FFF;
  2186. font-size: 25px;
  2187. font-style: normal;
  2188. font-weight: 700;
  2189. line-height: 100%; /* 25px */
  2190. letter-spacing: -0.5px;
  2191. margin-bottom:17px;
  2192. margin-left: -50px;
  2193. display: flex;
  2194. align-items: center;
  2195. padding-left: 50px;
  2196. position: relative;
  2197. background: url(../img/dot_more_bg.png) no-repeat center;
  2198. width:301px;
  2199. height:64px;
  2200. }
  2201. .captions{
  2202. color: #FFF;
  2203. font-size: 16px;
  2204. font-style: normal;
  2205. font-weight: 500;
  2206. line-height: 1.9;
  2207. letter-spacing: -0.32px;
  2208. }
  2209. .desc{
  2210. color: #EF0;
  2211. font-size: 16px;
  2212. font-style: normal;
  2213. font-weight: 600;
  2214. line-height: 1.9;
  2215. letter-spacing: -0.32px;
  2216. margin-top: 25px;
  2217. }
  2218. .btn--wrapper{
  2219. position: absolute;
  2220. top: 50px;
  2221. right:55px;
  2222. display: flex;
  2223. gap:15px;
  2224. button{
  2225. border-radius: 1000px;
  2226. background: #FFF;
  2227. color: #1AAF59;
  2228. font-size: 15px;
  2229. font-style: normal;
  2230. font-weight: 600;
  2231. display: flex;
  2232. align-items: center;
  2233. justify-content: center;
  2234. letter-spacing: -0.3px;
  2235. line-height: 100%;
  2236. padding:20px;
  2237. border:0px;
  2238. }
  2239. }
  2240. }
  2241. .step--section{
  2242. &:last-child{
  2243. padding-bottom:0px;
  2244. }
  2245. .inner--s--title{
  2246. span{
  2247. &:nth-of-type(1){
  2248. color:#1AAF59;
  2249. font-size: 25px;
  2250. font-style: normal;
  2251. font-weight: 700;
  2252. letter-spacing: -0.5px;
  2253. margin-right:30px;
  2254. em{
  2255. font-style: normal;
  2256. }
  2257. }
  2258. &:nth-of-type(2){
  2259. color: #444;
  2260. font-size: 17px;
  2261. font-style: normal;
  2262. font-weight: 300;
  2263. letter-spacing: -0.34px;
  2264. }
  2265. }
  2266. }
  2267. .inner--grid{
  2268. display: flex;
  2269. align-items:flex-start;
  2270. justify-content: space-between;
  2271. margin-top:40px;
  2272. position: relative;
  2273. &:after{
  2274. content:'';
  2275. display: block;
  2276. width:calc(100% - 180px);
  2277. left: 90px;
  2278. height:1px;
  2279. background: rgba(46, 204, 113, 0.50);
  2280. position: absolute;
  2281. top:55px;
  2282. z-index: -1;
  2283. }
  2284. .grid{
  2285. display: flex;
  2286. justify-content: center;
  2287. align-items: center;
  2288. flex-direction: column;
  2289. &.mo{
  2290. display: none;
  2291. }
  2292. .thumb{
  2293. width:110px;
  2294. height:110px;
  2295. border-radius: 110px;
  2296. border: 2px solid rgba(46, 204, 113, 0.50);
  2297. background: #FFF;
  2298. display: flex;
  2299. align-items: center;
  2300. justify-content: center;
  2301. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.20);
  2302. }
  2303. .desc{
  2304. padding-top:20px;
  2305. color: #000;
  2306. text-align: center;
  2307. font-size: 15px;
  2308. font-style: normal;
  2309. font-weight: 300;
  2310. line-height: 1.5; /* 15px */
  2311. letter-spacing: -0.6px;
  2312. strong{
  2313. font-weight: 700;
  2314. letter-spacing: -0.3px;
  2315. }
  2316. }
  2317. }
  2318. }
  2319. }
  2320. .progress--section{
  2321. $color_1: #222222;
  2322. $color_2: #191919;
  2323. $font-family_1: Pretendard, var(--default-font-family);
  2324. .progress--container {
  2325. overflow: hidden;
  2326. box-sizing: border-box;
  2327. position: relative;
  2328. width: 1200px;
  2329. height: 401px;
  2330. margin: 0 auto;
  2331. * {
  2332. box-sizing: border-box;
  2333. }
  2334. }
  2335. // Step 01 - 사전 진행
  2336. .progress--step.step--01 {
  2337. position: absolute;
  2338. width: 110px;
  2339. height: 266px;
  2340. top: 0;
  2341. left: 0;
  2342. font-size: 0px;
  2343. z-index: 27;
  2344. .step--label {
  2345. display: block;
  2346. position: relative;
  2347. height: 25px;
  2348. margin: 0 0 0 0;
  2349. color: $color_1;
  2350. font-family: $font-family_1;
  2351. font-size: 25px;
  2352. font-weight: 700;
  2353. line-height: 25px;
  2354. text-align: left;
  2355. white-space: nowrap;
  2356. letter-spacing: -0.5px;
  2357. z-index: 27;
  2358. }
  2359. .step--circle {
  2360. position: relative;
  2361. width: 110px;
  2362. height: 110px;
  2363. margin: 71px 0 0 0;
  2364. background: rgba(46, 204, 113, 0.1);
  2365. z-index: 3;
  2366. overflow: visible auto;
  2367. border-radius: 1000px;
  2368. .step--circle--inner {
  2369. position: relative;
  2370. width: 72px;
  2371. height: 72px;
  2372. margin: 19px 0 0 19px;
  2373. background: rgba(46, 204, 113, 0.2);
  2374. z-index: 4;
  2375. overflow: visible auto;
  2376. border-radius: 1000px;
  2377. .step--circle--core {
  2378. position: relative;
  2379. width: 36px;
  2380. height: 36px;
  2381. margin: 18px 0 0 18px;
  2382. background: #2ecc71;
  2383. z-index: 5;
  2384. border-radius: 1000px;
  2385. }
  2386. }
  2387. }
  2388. .step--desc {
  2389. position: relative;
  2390. width: 70px;
  2391. height: 40px;
  2392. margin: 20px 0 0 20px;
  2393. font-family: $font-family_1;
  2394. font-size: 15px;
  2395. font-weight: 400;
  2396. text-align: center;
  2397. text-overflow: initial;
  2398. white-space: nowrap;
  2399. letter-spacing: -0.3px;
  2400. z-index: 6;
  2401. .desc--main {
  2402. position: relative;
  2403. color: $color_2;
  2404. font-family: $font-family_1;
  2405. font-size: 15px;
  2406. font-weight: 400;
  2407. text-align: center;
  2408. letter-spacing: -0.3px;
  2409. }
  2410. .desc--sub {
  2411. position: relative;
  2412. color: $color_2;
  2413. font-family: $font-family_1;
  2414. font-size: 15px;
  2415. font-weight: 700;
  2416. text-align: center;
  2417. letter-spacing: -0.3px;
  2418. }
  2419. }
  2420. }
  2421. // Step 06 - M&A진행결정시
  2422. .progress--step.step--06 {
  2423. position: absolute;
  2424. width: 222px;
  2425. height: 162px;
  2426. top: 85px;
  2427. left: 978px;
  2428. z-index: 28;
  2429. .step--arrow {
  2430. position: relative;
  2431. width: 160px;
  2432. height: 82px;
  2433. margin: 0 0 0 32px;
  2434. background: url(../img/man_arrow_bg.png) no-repeat center;
  2435. background-size: cover;
  2436. z-index: 28;
  2437. }
  2438. .step--box {
  2439. display: flex;
  2440. align-items: center;
  2441. flex-wrap: nowrap;
  2442. gap: 20px;
  2443. position: relative;
  2444. width: 222px;
  2445. margin: 0 0 0 0;
  2446. padding: 15px 30px 15px 20px;
  2447. background: #ffffff;
  2448. border: 1px solid rgba(46, 204, 113, 0.5);
  2449. z-index: 21;
  2450. border-radius: 100px;
  2451. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  2452. .step--icon {
  2453. flex-shrink: 0;
  2454. position: relative;
  2455. width: 50px;
  2456. height: 50px;
  2457. background: #2ecc71;
  2458. z-index: 22;
  2459. border-radius: 1000px;
  2460. .icon--img {
  2461. position: relative;
  2462. width: 24px;
  2463. height: 19px;
  2464. margin: 16px 0 0 13px;
  2465. background: url(../img/blk_01.svg) no-repeat center;
  2466. background-size: cover;
  2467. z-index: 23;
  2468. overflow: hidden;
  2469. }
  2470. }
  2471. .step--desc {
  2472. flex-shrink: 0;
  2473. position: relative;
  2474. width: 102px;
  2475. font-family: $font-family_1;
  2476. font-size: 15px;
  2477. font-weight: 400;
  2478. text-align: left;
  2479. text-overflow: initial;
  2480. white-space: nowrap;
  2481. letter-spacing: -0.3px;
  2482. z-index: 24;
  2483. .desc--main {
  2484. position: relative;
  2485. color: $color_2;
  2486. font-family: $font-family_1;
  2487. font-size: 15px;
  2488. font-weight: 400;
  2489. text-align: left;
  2490. letter-spacing: -0.3px;
  2491. }
  2492. .desc--sub {
  2493. position: relative;
  2494. color: $color_2;
  2495. font-family: $font-family_1;
  2496. font-size: 15px;
  2497. font-weight: 700;
  2498. text-align: left;
  2499. letter-spacing: -0.3px;
  2500. }
  2501. }
  2502. }
  2503. }
  2504. // 나머지 Progress Steps와 Line 연결 요소들
  2505. // Step 03 - M&A 상담
  2506. .progress--step.step--03 {
  2507. position: absolute;
  2508. width: 313px;
  2509. height: 308px;
  2510. top: 93px;
  2511. left: 365px;
  2512. z-index: 29;
  2513. .step--badge {
  2514. &.badge--blue {
  2515. position: relative;
  2516. width: 79px;
  2517. height: 79px;
  2518. margin: 229px 0 0 0;
  2519. background: url(../img/blue_ic01.svg) no-repeat center;
  2520. background-size: cover;
  2521. overflow: hidden;
  2522. }
  2523. &.badge--purple {
  2524. position: absolute;
  2525. width: 57px;
  2526. height: 57px;
  2527. top: 0;
  2528. left: 41px;
  2529. background: url(../img/purple_ic01.svg) no-repeat center;
  2530. background-size: cover;
  2531. z-index: 1;
  2532. overflow: hidden;
  2533. }
  2534. }
  2535. .step--box {
  2536. display: flex;
  2537. align-items: center;
  2538. flex-wrap: nowrap;
  2539. gap: 20px;
  2540. position: absolute;
  2541. width: 239px;
  2542. height: 80px;
  2543. top: 26px;
  2544. left: 74px;
  2545. padding: 15px 30px 15px 20px;
  2546. background: #ffffff;
  2547. border: 1px solid rgba(46, 204, 113, 0.5);
  2548. z-index: 11;
  2549. border-radius: 100px;
  2550. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  2551. .step--icon {
  2552. flex-shrink: 0;
  2553. position: relative;
  2554. width: 50px;
  2555. height: 50px;
  2556. background: #2ecc71;
  2557. z-index: 12;
  2558. border-radius: 1000px;
  2559. .icon--img {
  2560. position: relative;
  2561. width: 21px;
  2562. height: 22px;
  2563. margin: 14px 0 0 15px;
  2564. background: url(../img/blk_02.svg) no-repeat center;
  2565. background-size: cover;
  2566. z-index: 13;
  2567. overflow: hidden;
  2568. }
  2569. }
  2570. .step--desc {
  2571. flex-shrink: 0;
  2572. position: relative;
  2573. width: 119px;
  2574. font-family: $font-family_1;
  2575. font-size: 15px;
  2576. font-weight: 400;
  2577. text-align: left;
  2578. text-overflow: initial;
  2579. white-space: nowrap;
  2580. letter-spacing: -0.3px;
  2581. z-index: 14;
  2582. .desc--sub {
  2583. position: relative;
  2584. color: $color_2;
  2585. font-family: $font-family_1;
  2586. font-size: 15px;
  2587. font-weight: 700;
  2588. text-align: left;
  2589. letter-spacing: -0.3px;
  2590. }
  2591. .desc--main {
  2592. position: relative;
  2593. color: $color_2;
  2594. font-family: $font-family_1;
  2595. font-size: 15px;
  2596. font-weight: 400;
  2597. text-align: left;
  2598. letter-spacing: -0.3px;
  2599. }
  2600. }
  2601. }
  2602. .step--dot.dot--purple {
  2603. position: absolute;
  2604. width: 10px;
  2605. height: 10px;
  2606. top: 153px;
  2607. left: 19px;
  2608. background: url(../img/purple_dot01.svg) no-repeat center;
  2609. background-size: cover;
  2610. z-index: 29;
  2611. border-radius: 50%;
  2612. }
  2613. }
  2614. // Step 02 - M&A궁합 담당자 전화
  2615. .progress--step.step--02 {
  2616. position: absolute;
  2617. width: 228px;
  2618. height: 218px;
  2619. top: 136px;
  2620. left: 180px;
  2621. z-index: 30;
  2622. .step--dot.dot--green {
  2623. position: relative;
  2624. width: 10px;
  2625. height: 10px;
  2626. margin: 0 0 0 164px;
  2627. background: url(../img/green_dot01.svg) no-repeat center;
  2628. background-size: cover;
  2629. z-index: 30;
  2630. border-radius: 50%;
  2631. }
  2632. .step--box {
  2633. display: flex;
  2634. align-items: center;
  2635. flex-wrap: nowrap;
  2636. gap: 20px;
  2637. position: relative;
  2638. width: 228px;
  2639. margin: 128px 0 0 0;
  2640. padding: 15px 30px 15px 20px;
  2641. background: #ffffff;
  2642. border: 1px solid rgba(46, 204, 113, 0.5);
  2643. z-index: 7;
  2644. border-radius: 100px;
  2645. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  2646. .step--icon {
  2647. flex-shrink: 0;
  2648. position: relative;
  2649. width: 50px;
  2650. height: 50px;
  2651. background: #2ecc71;
  2652. z-index: 8;
  2653. border-radius: 1000px;
  2654. .icon--img {
  2655. position: relative;
  2656. width: 18px;
  2657. height: 18px;
  2658. margin: 16px 0 0 16px;
  2659. background: url(../img/blk_03.svg) no-repeat center;
  2660. background-size: cover;
  2661. z-index: 9;
  2662. overflow: hidden;
  2663. }
  2664. }
  2665. .step--desc {
  2666. flex-shrink: 0;
  2667. position: relative;
  2668. width: 108px;
  2669. font-family: $font-family_1;
  2670. font-size: 15px;
  2671. font-weight: 400;
  2672. text-align: left;
  2673. text-overflow: initial;
  2674. white-space: nowrap;
  2675. letter-spacing: -0.3px;
  2676. z-index: 10;
  2677. .desc--main {
  2678. position: relative;
  2679. color: $color_2;
  2680. font-family: $font-family_1;
  2681. font-size: 15px;
  2682. font-weight: 400;
  2683. text-align: left;
  2684. letter-spacing: -0.3px;
  2685. }
  2686. .desc--sub {
  2687. position: relative;
  2688. color: $color_2;
  2689. font-family: $font-family_1;
  2690. font-size: 15px;
  2691. font-weight: 700;
  2692. text-align: left;
  2693. letter-spacing: -0.3px;
  2694. }
  2695. }
  2696. }
  2697. }
  2698. // Step 05 - 진행 여부 결정
  2699. .progress--step.step--05 {
  2700. position: absolute;
  2701. width: 252.5px;
  2702. height: 154px;
  2703. top: 190px;
  2704. left: 726px;
  2705. z-index: 32;
  2706. .step--dot.dot--pink {
  2707. position: relative;
  2708. width: 10px;
  2709. height: 10px;
  2710. margin: 0 0 0 173px;
  2711. background: url(../img/pink_dot01.svg) no-repeat center;
  2712. background-size: cover;
  2713. z-index: 32;
  2714. border-radius: 50%;
  2715. }
  2716. .step--line.line--04 {
  2717. position: absolute;
  2718. width: 49.5px;
  2719. height: 61.5px;
  2720. top: 16.5px;
  2721. left: 203px;
  2722. background: url(../img/line_05.svg) no-repeat center;
  2723. background-size: cover;
  2724. z-index: 16;
  2725. }
  2726. .step--box {
  2727. display: flex;
  2728. align-items: center;
  2729. flex-wrap: nowrap;
  2730. gap: 20px;
  2731. position: absolute;
  2732. width: 203px;
  2733. height: 80px;
  2734. top: 37px;
  2735. left: 0;
  2736. padding: 15px 30px 15px 20px;
  2737. background: #ffffff;
  2738. border: 1px solid rgba(46, 204, 113, 0.5);
  2739. z-index: 17;
  2740. border-radius: 100px;
  2741. box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
  2742. .step--icon {
  2743. flex-shrink: 0;
  2744. position: relative;
  2745. width: 50px;
  2746. height: 50px;
  2747. background: #2ecc71;
  2748. z-index: 18;
  2749. border-radius: 1000px;
  2750. .icon--img {
  2751. position: relative;
  2752. width: 20px;
  2753. height: 22px;
  2754. margin: 14px 0 0 15px;
  2755. background: url(../img/blk_04.svg) no-repeat center;
  2756. background-size: cover;
  2757. z-index: 19;
  2758. overflow: hidden;
  2759. }
  2760. }
  2761. .step--desc {
  2762. flex-shrink: 0;
  2763. position: relative;
  2764. width: 83px;
  2765. font-family: $font-family_1;
  2766. font-size: 15px;
  2767. font-weight: 400;
  2768. text-align: left;
  2769. text-overflow: initial;
  2770. white-space: nowrap;
  2771. letter-spacing: -0.3px;
  2772. z-index: 20;
  2773. .desc--sub {
  2774. position: relative;
  2775. color: $color_2;
  2776. font-family: $font-family_1;
  2777. font-size: 15px;
  2778. font-weight: 700;
  2779. text-align: left;
  2780. letter-spacing: -0.3px;
  2781. }
  2782. .desc--main {
  2783. position: relative;
  2784. color: $color_2;
  2785. font-family: $font-family_1;
  2786. font-size: 15px;
  2787. font-weight: 400;
  2788. text-align: left;
  2789. letter-spacing: -0.3px;
  2790. }
  2791. }
  2792. }
  2793. .step--badge.badge--clover {
  2794. position: absolute;
  2795. width: 63px;
  2796. height: 63px;
  2797. top: 91px;
  2798. left: 165px;
  2799. background: url(../img/clovar_ic.svg) no-repeat center;
  2800. background-size: cover;
  2801. z-index: 2;
  2802. overflow: hidden;
  2803. }
  2804. }
  2805. // Step Line - 연결선
  2806. .progress--step.step--line {
  2807. position: absolute;
  2808. width: 70px;
  2809. height: 199px;
  2810. top: 116px;
  2811. left: 110px;
  2812. z-index: 31;
  2813. .step--dot.dot--yellow {
  2814. position: relative;
  2815. width: 10px;
  2816. height: 10px;
  2817. margin: 0 0 0 14px;
  2818. background: url(../img/yellow_dot01.svg) no-repeat center;
  2819. background-size: cover;
  2820. z-index: 31;
  2821. border-radius: 50%;
  2822. }
  2823. .step--line.line--02 {
  2824. position: relative;
  2825. width: 70px;
  2826. height: 164px;
  2827. margin: 25.5px 0 0 0;
  2828. background: url(../img/line_03.svg) no-repeat center;
  2829. background-size: cover;
  2830. z-index: 25;
  2831. }
  2832. }
  2833. // 전역 라인 요소들
  2834. .step--line.line--01 {
  2835. position: absolute;
  2836. width: 90.5px;
  2837. height: 155px;
  2838. top: 67.5px;
  2839. left: 44px;
  2840. background: url(../img/line_02.svg) no-repeat center;
  2841. background-size: cover;
  2842. z-index: 26;
  2843. }
  2844. .step--line.line--03 {
  2845. position: absolute;
  2846. width: 47px;
  2847. height: 108px;
  2848. top: 159.5px;
  2849. left: 679px;
  2850. background: url(../img/line_04.svg) no-repeat center;
  2851. background-size: cover;
  2852. z-index: 15;
  2853. }
  2854. }
  2855. }
  2856. }
  2857. }
  2858. footer{
  2859. display: flex;
  2860. align-items: center;
  2861. justify-content: center;
  2862. width:100%;
  2863. background: #191919;
  2864. section{
  2865. width:100%;
  2866. padding-top:40px;
  2867. padding-bottom:55px;
  2868. max-width:1200px;
  2869. display: flex;
  2870. gap: 20px;
  2871. align-items: flex-end;
  2872. justify-content: space-between;
  2873. .footer--left{
  2874. >a{
  2875. display: block;
  2876. width: 35%;
  2877. min-width: 100px;
  2878. max-width: 163px;
  2879. img{
  2880. width: 100%;
  2881. }
  2882. }
  2883. .copy--text{
  2884. display: flex;
  2885. flex-direction: column;
  2886. gap:20px;
  2887. margin-top:30px;
  2888. p{
  2889. color: #FFF;
  2890. font-size: 16px;
  2891. font-style: normal;
  2892. font-weight: 500;
  2893. line-height: 1.4;
  2894. letter-spacing: -0.32px;
  2895. display: flex;
  2896. flex-wrap: wrap;
  2897. span{
  2898. color: #FFF;
  2899. font-size: 16px;
  2900. font-style: normal;
  2901. font-weight: 500;
  2902. line-height: 1.4;
  2903. letter-spacing: -0.32px;
  2904. margin-right:31px;
  2905. position: relative;
  2906. &::after{
  2907. content:'';
  2908. display: block;
  2909. width:1px;
  2910. height:100%;
  2911. background: #535353;
  2912. position: absolute;
  2913. top:50%;
  2914. width:1px;
  2915. height:15px;
  2916. right:-16px;
  2917. transform: translateY(-50%);
  2918. }
  2919. &:last-child{
  2920. margin-right:0px;
  2921. &::after{
  2922. display: none;
  2923. }
  2924. }
  2925. }
  2926. }
  2927. }
  2928. }
  2929. .footer--right{
  2930. min-width: 320px;
  2931. display: flex;
  2932. gap:50px;
  2933. a{
  2934. color: #FFF;
  2935. font-size: 16px;
  2936. font-style: normal;
  2937. font-weight: 500;
  2938. line-height: 1.4;
  2939. letter-spacing: -0.32px;
  2940. text-transform: uppercase;
  2941. }
  2942. }
  2943. }
  2944. }
  2945. .top--btn{
  2946. background-color: #2ECC71;
  2947. border-radius: 50%;
  2948. position: fixed;
  2949. right: 30px;
  2950. width: 70px;
  2951. cursor: pointer;
  2952. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  2953. height: 70px;
  2954. bottom: 30px;
  2955. z-index: 100;
  2956. background-repeat: no-repeat;
  2957. background-position: center;
  2958. background-image: url(../img/ico--top.svg);
  2959. opacity: 0;
  2960. transition: opacity 0.3s ease;
  2961. &.actv{
  2962. opacity: 1;
  2963. }
  2964. }