main.scss 91 KB

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