style.scss 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. @import "pretendard/dist/web/static/pretendard.css";
  2. body{
  3. &:has(.mobile--header--wrap.active){
  4. overflow: hidden;
  5. }
  6. }
  7. // SCSS watching test
  8. * {
  9. font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  10. word-break: keep-all;
  11. &::after, &::before{
  12. display: inline-block;
  13. }
  14. }
  15. .ico{
  16. display: inline-block;
  17. background-repeat: no-repeat;
  18. background-position: center;
  19. }
  20. #top--visual {
  21. &.company {
  22. background: url(/img/top_ban_company.jpg) no-repeat center;
  23. background-size: cover;
  24. }
  25. &.products{
  26. background: url(/img/top_ban_products.jpg) no-repeat center;
  27. background-size: cover;
  28. }
  29. &.technology{
  30. background: url(/img/top_ban_technology.jpg) no-repeat center;
  31. background-size: cover;
  32. }
  33. &.media{
  34. background: url(/img/top_ban_media.jpg) no-repeat bottom;
  35. background-size: cover;
  36. }
  37. }
  38. .header--wrap{
  39. position: fixed;
  40. top: 0;
  41. left: 0;
  42. width: 100%;
  43. z-index: 1000;
  44. transition: all 0.3s;
  45. &:hover, &.white{
  46. background-color: #fff;
  47. .header--container{
  48. .logo--wrap{
  49. background-image: url(/img/header--logo--green.svg);
  50. }
  51. .menu--wrap{
  52. .menu--item{
  53. >a{
  54. color: #515973;
  55. }
  56. }
  57. }
  58. .lang--wrap{
  59. .ico{
  60. background-image: url(/img/ico--lang--black.svg);
  61. }
  62. p{
  63. color: #1f2128;
  64. }
  65. }
  66. .ham--wrap{
  67. >button{
  68. background-image: url(/img/ico--ham--black.svg);
  69. }
  70. }
  71. }
  72. }
  73. .header--container{
  74. width: 100%;
  75. max-width: 1280px;
  76. margin: 0 auto;
  77. background-color: transparent;
  78. justify-content: space-between;
  79. display: flex;
  80. align-items: center;
  81. height: 80px;
  82. .logo--wrap{
  83. width: 138px;
  84. background-image: url(/img/header--logo.svg);
  85. font-size: 0;
  86. background-repeat: no-repeat;
  87. background-size: 100%;
  88. background-position: center;
  89. height: 36px;
  90. }
  91. .menu--wrap{
  92. display: flex;
  93. .menu--item{
  94. position: relative;
  95. &:hover {
  96. >a{
  97. color: #00A654;
  98. &::before {
  99. width: calc(100% - 50px);
  100. }
  101. }
  102. }
  103. > a{
  104. color: #fff;
  105. font-weight: normal;
  106. padding: 0 30px;
  107. display: inline-block;
  108. height: 80px;
  109. font-weight: 700;
  110. transition: color 0.3s;
  111. font-size: 16px;
  112. line-height: 80px;
  113. position: relative;
  114. &::before{
  115. position: absolute;
  116. content: '';
  117. bottom: 20px;
  118. left: 50%;
  119. transition: width 0.3s;
  120. transform: translateX(-50%);
  121. height: 2px;
  122. width: 0;
  123. background-color: #00A654;
  124. }
  125. }
  126. .gnb--wrap{
  127. position: fixed;
  128. top: 80px;
  129. left: 0;
  130. background-color: #fff;
  131. width: 100%;
  132. opacity: 0;
  133. height: 60px;
  134. visibility: hidden;
  135. display: flex;
  136. justify-content: center;
  137. align-items: center;
  138. transition: all 0.3s ease;
  139. z-index: 101;
  140. border-top: 1px solid var(--05, #E0E4F2);
  141. gap: 60px;
  142. li{
  143. a{
  144. color: #1f2128;
  145. font-size: 16px;
  146. height: 60px;
  147. line-height: 60px;
  148. display: inline-block;
  149. font-weight: 500;
  150. transition: all 0.3s ease;
  151. &:hover{
  152. color: #00A654;
  153. }
  154. }
  155. }
  156. }
  157. &:hover .gnb--wrap{
  158. opacity: 1;
  159. visibility: visible;
  160. }
  161. }
  162. }
  163. .lang--wrap{
  164. display: flex;
  165. align-items: center;
  166. gap: 4px;
  167. position: relative;
  168. cursor: pointer;
  169. .ico{
  170. transition: all 0.3s;
  171. width: 24px;
  172. height: 24px;
  173. background-image: url(/img/ico--lang.svg);
  174. }
  175. >p{
  176. transition: all 0.3s;
  177. color: #fff;
  178. line-height: 1;
  179. font-size: 16px;
  180. font-weight: 700;
  181. }
  182. .select--wrap{
  183. opacity: 0;
  184. pointer-events: none;
  185. position: absolute;
  186. top: calc(100% + 13px);
  187. right: -12px;
  188. width: 180px;
  189. height: 180px;
  190. padding: 16px;
  191. overflow-y: scroll;
  192. background-color: #fff;
  193. box-shadow: 0 8px 16px 0 rgba(31, 33, 40, 0.12);
  194. display: flex;
  195. flex-direction: column;
  196. gap: 12px;
  197. li{
  198. color: #515973;
  199. font-size: 14px;
  200. font-weight: 700;
  201. &:hover{
  202. color: #00a654;
  203. }
  204. &.active{
  205. color: #00a654;
  206. }
  207. }
  208. // 스크롤바 커스터마이징
  209. &::-webkit-scrollbar {
  210. width: 4px;
  211. }
  212. &::-webkit-scrollbar-track {
  213. background: transparent;
  214. }
  215. &::-webkit-scrollbar-thumb {
  216. background-color: #b6bbcc;
  217. border-radius: 4px;
  218. }
  219. &::-webkit-scrollbar-thumb:hover {
  220. background-color: #a0a4b8;
  221. }
  222. }
  223. &.active{
  224. >p{
  225. color: #00A654;
  226. }
  227. .ico{
  228. background-image: url(/img/ico--lang--green.svg);
  229. }
  230. .select--wrap{
  231. opacity: 1;
  232. pointer-events: all;
  233. }
  234. }
  235. }
  236. .ham--wrap{
  237. display: none;
  238. >button{
  239. transition: all 0.3s;
  240. background-color: transparent;
  241. background-image: url(/img/ico--ham.svg);
  242. width: 28px;
  243. height: 28px;
  244. cursor: pointer;
  245. }
  246. }
  247. }
  248. }
  249. .mobile--header--wrap{
  250. position: fixed;
  251. left: 100%;
  252. transition: all 0.3s;
  253. top: 60px;
  254. width: 100%;
  255. height: calc(100vh - 60px);
  256. background-color: #fff;
  257. z-index: 1000;
  258. display: flex;
  259. flex-direction: column;
  260. &.active{
  261. left: 0;
  262. }
  263. .mobile--menu--wrap{
  264. width: 100%;
  265. height: calc(100% - 72px);
  266. padding-top: 14px;
  267. overflow-y: auto;
  268. >ul{
  269. >li{
  270. >div{
  271. color: #1f2128;
  272. font-size: 18px;
  273. cursor: pointer;
  274. font-weight: 700;
  275. display: flex;
  276. justify-content: space-between;
  277. padding: 14px 20px;
  278. .ico{
  279. width: 24px;
  280. height: 24px;
  281. transition: all 0.3s;
  282. background-image: url(/img/ico--ham--arrow.svg);
  283. }
  284. &.active{
  285. .ico{
  286. transform: rotate(180deg);
  287. }
  288. }
  289. }
  290. >ul{
  291. background-color: #f6f8ff;
  292. display: flex;
  293. flex-direction: column;
  294. max-height: 0;
  295. overflow: hidden;
  296. transition: max-height 0.3s ease;
  297. &.active{
  298. max-height: 400px;
  299. }
  300. >li{
  301. >a{
  302. width: 100%;
  303. padding: 10px 28px;
  304. display: inline-block;
  305. color: #1f2128;
  306. font-size: 16px;
  307. font-weight: 500;
  308. }
  309. &:first-child{
  310. >a{
  311. padding-top: 20px;
  312. }
  313. }
  314. &:last-child{
  315. >a{
  316. padding-bottom: 20px;
  317. }
  318. }
  319. }
  320. }
  321. }
  322. }
  323. }
  324. .mobile--lang--wrap{
  325. height: 72px;
  326. border-top: 1px solid #e0e4f2;
  327. padding: 16px 20px;
  328. .lang--wrap {
  329. display: flex;
  330. align-items: center;
  331. gap: 4px;
  332. position: relative;
  333. cursor: pointer;
  334. .ico {
  335. transition: all 0.3s;
  336. width: 24px;
  337. height: 24px;
  338. background-image: url(/img/ico--lang--black.svg);
  339. }
  340. >p {
  341. transition: all 0.3s;
  342. color: #1f2128;
  343. line-height: 1;
  344. font-size: 16px;
  345. font-weight: 700;
  346. }
  347. .select--wrap {
  348. opacity: 0;
  349. pointer-events: none;
  350. position: absolute;
  351. bottom: 36px;
  352. left: 0;
  353. width: 180px;
  354. height: 240px;
  355. padding: 16px;
  356. overflow-y: scroll;
  357. background-color: #fff;
  358. box-shadow: 0 8px 16px 0 rgba(31, 33, 40, 0.12);
  359. display: flex;
  360. flex-direction: column;
  361. gap: 12px;
  362. li {
  363. color: #515973;
  364. font-size: 14px;
  365. font-weight: 700;
  366. &:hover {
  367. color: #00a654;
  368. }
  369. &.active {
  370. color: #00a654;
  371. }
  372. }
  373. // 스크롤바 커스터마이징
  374. &::-webkit-scrollbar {
  375. width: 4px;
  376. }
  377. &::-webkit-scrollbar-track {
  378. background: transparent;
  379. }
  380. &::-webkit-scrollbar-thumb {
  381. background-color: #b6bbcc;
  382. border-radius: 4px;
  383. }
  384. &::-webkit-scrollbar-thumb:hover {
  385. background-color: #a0a4b8;
  386. }
  387. }
  388. &.active {
  389. >p {
  390. color: #00A654;
  391. }
  392. .ico {
  393. background-image: url(/img/ico--lang--green.svg);
  394. }
  395. .select--wrap {
  396. opacity: 1;
  397. pointer-events: all;
  398. }
  399. }
  400. }
  401. }
  402. }
  403. main{
  404. .main--visual--wrap{
  405. .main--swiper--wrap{
  406. width: 100%;
  407. position: relative;
  408. .main--swiper{
  409. .visual--img{
  410. position: relative;
  411. .txt--wrap{
  412. width: 100%;
  413. text-align: center;
  414. height: 100%;
  415. display: flex;
  416. align-items: center;
  417. justify-content: center;
  418. position: absolute;
  419. h2{
  420. color: #fff;
  421. font-size: 48px;
  422. font-weight: 800;
  423. line-height: 1.4;
  424. }
  425. }
  426. .img--wrap{
  427. img{
  428. width: 100%;
  429. height: 100vh;
  430. object-fit: cover;
  431. }
  432. }
  433. }
  434. }
  435. .swiper--control--wrap{
  436. position: absolute;
  437. bottom: 0;
  438. left: 0;
  439. height: 84px;
  440. display: flex;
  441. justify-content: center;
  442. gap: 16px;
  443. align-items: center;
  444. z-index: 10;
  445. width: 100%;
  446. .pagination--wrap{
  447. display: flex;
  448. gap: 12px;
  449. align-items: center;
  450. .current{
  451. color: #fff;
  452. font-size: 14px;
  453. font-weight: 700;
  454. }
  455. .bar{
  456. opacity: 0.5;
  457. background-color: #fff;
  458. width: 1px;
  459. height: 12px;
  460. }
  461. .total{
  462. font-size: 14px;
  463. font-weight: 700;
  464. color: #fff;
  465. opacity: 0.5;
  466. }
  467. }
  468. .swiper--pagination{
  469. width: 150px;
  470. position: relative;
  471. height: 2px;
  472. background-color: rgba(255,255,255,0.5);
  473. .swiper-pagination-progressbar-fill{
  474. background-color: #fff;
  475. }
  476. }
  477. .swiper--btn--wrap{
  478. display: flex;
  479. gap:4px;
  480. align-items: center;
  481. justify-content: center;
  482. .swiper--btn--prev{
  483. width: 20px;
  484. height: 20px;
  485. background-image: url(/img/ico--swiper--prev.svg);
  486. }
  487. .swiper--btn--next{
  488. width: 20px;
  489. height: 20px;
  490. background-image: url(/img/ico--swiper--next.svg);
  491. }
  492. .play--btn{
  493. width: 20px;
  494. height: 20px;
  495. background-image: url(/img/ico--pause.svg);
  496. &.pause{
  497. background-image: url(/img/ico--play.svg);
  498. }
  499. }
  500. }
  501. }
  502. }
  503. }
  504. .main--content--wrap{
  505. &.bg--type{
  506. background-image: url(/img/main--bg.png);
  507. background-position: center;
  508. background-size: cover;
  509. background-repeat: no-repeat;
  510. background-attachment: fixed;
  511. }
  512. &.black--type{
  513. background-color: #1F2128;
  514. }
  515. &.gray--type{
  516. background-color: #F6F8FF;
  517. }
  518. &.white--txt{
  519. color: #fff !important;
  520. *{
  521. color: #fff!important;
  522. }
  523. }
  524. .main--container{
  525. margin: 0 auto;
  526. width: 100%;
  527. max-width: 1280px;
  528. padding: 100px 0;
  529. .title--wrap{
  530. text-align: center;
  531. .green--title{
  532. margin-bottom: 16px;
  533. color: #00a654!important;
  534. font-size: 18px;
  535. font-weight: 700;
  536. }
  537. .sub--title{
  538. color: #1f2128;
  539. font-size: 20px;
  540. font-weight: 400;
  541. margin-bottom: 12px;
  542. }
  543. >h2{
  544. color: #1f2128;
  545. font-size: 40px;
  546. font-weight: 700;
  547. }
  548. }
  549. .content--wrap{
  550. .img--card--wrap{
  551. display: flex;
  552. margin-bottom: 40px;
  553. justify-content: space-between;
  554. .card{
  555. img{
  556. width: 100%;
  557. }
  558. }
  559. }
  560. .square--card--wrap{
  561. width: 100%;
  562. margin-bottom: 40px;
  563. display: flex;
  564. flex-wrap: wrap;
  565. justify-content: center;
  566. gap: 20px;
  567. align-items: center;
  568. .card{
  569. width: calc((100% - 40px) / 3);
  570. padding: 20px 24px 60px 24px;
  571. display: flex;
  572. flex-direction: column;
  573. gap: 8px;
  574. border: 1px solid rgba(255, 255, 255, 0.30);
  575. background-color: rgba(0, 0, 0, 0.30);
  576. backdrop-filter: blur(6px);
  577. dt{
  578. font-size: 24px;
  579. font-weight: 700;
  580. }
  581. dd{
  582. font-size: 16px;
  583. font-weight: 400;
  584. }
  585. }
  586. }
  587. .number--card--wrap{
  588. display: flex;
  589. gap: 20px;
  590. width: 100%;
  591. .card{
  592. width: calc((100% - 40px) / 3);
  593. padding: 0 40px;
  594. display: flex;
  595. flex-direction: column;
  596. gap: 24px;
  597. align-items: center;
  598. text-align: center;
  599. .ico{
  600. width: 48px;
  601. height: 48px;
  602. background-image: url(/img/ico--main1.svg);
  603. }
  604. .card--title{
  605. display: flex;
  606. flex-direction: column;
  607. gap: 8px;
  608. align-items: center;
  609. .circle{
  610. border-radius: 24px;
  611. background-color: #2f3342;
  612. width: fit-content;
  613. font-size: 16px;
  614. padding: 3px 12px;
  615. font-weight: 700;
  616. }
  617. .number--wrap{
  618. .number{
  619. font-size: 60px;
  620. font-weight: 900;
  621. }
  622. .percent{
  623. font-size: 48px;
  624. font-weight: 900;
  625. }
  626. }
  627. .sub--txt{
  628. font-size: 18px;
  629. font-weight: 700;
  630. }
  631. }
  632. .card--desc{
  633. display: flex;
  634. flex-direction: column;
  635. gap: 4px;
  636. li{
  637. display: flex;
  638. gap: 12px;
  639. text-align: left;
  640. .nation{
  641. color: #00a654!important;
  642. font-size: 14px;
  643. font-weight: 400;
  644. line-height: 1.8;
  645. width: 18px;
  646. }
  647. .txt{
  648. width: calc(100% - 30px);
  649. strong{
  650. font-size: 14px;
  651. font-weight: 700;
  652. }
  653. span{
  654. color: #78809b!important;
  655. font-size: 14px;
  656. font-weight: 400;
  657. }
  658. }
  659. }
  660. }
  661. &:nth-of-type(2){
  662. .ico{
  663. background-image: url(/img/ico--main2.svg);
  664. }
  665. }
  666. &:nth-of-type(3) {
  667. .ico {
  668. background-image: url(/img/ico--main3.svg);
  669. }
  670. }
  671. }
  672. }
  673. .news--card--wrap{
  674. margin-bottom: 40px;
  675. display: flex;
  676. gap: 30px;
  677. .news{
  678. width: calc((100% - 60px) / 3);
  679. display: flex;
  680. flex-direction: column;
  681. gap: 24px;
  682. border-top: 1px solid #1f2128;
  683. padding-top: 24px;
  684. .news--title{
  685. overflow: hidden;
  686. text-overflow: ellipsis;
  687. display: -webkit-box;
  688. -webkit-line-clamp: 2;
  689. -webkit-box-orient: vertical;
  690. color: #1f2128;
  691. font-size: 20px;
  692. font-weight: 700;
  693. }
  694. .news--cont{
  695. overflow: hidden;
  696. text-overflow: ellipsis;
  697. display: -webkit-box;
  698. -webkit-line-clamp: 3;
  699. -webkit-box-orient: vertical;
  700. color: #515973;
  701. font-size: 16px;
  702. font-weight: 400;
  703. }
  704. .news--date{
  705. color: #515973;
  706. font-size: 16px;
  707. font-weight: 400;
  708. }
  709. }
  710. }
  711. }
  712. }
  713. .black--btn--wrap{
  714. display: flex;
  715. justify-content: center;
  716. align-items: center;
  717. .black--btn{
  718. border-radius: 24px;
  719. background-color: #1f2128;
  720. width: 128px;
  721. height: 44px;
  722. line-height: 44px;
  723. display: flex;
  724. align-items: center;
  725. justify-content: center;
  726. color: #fff;
  727. gap: 8px;
  728. font-size: 16px;
  729. font-weight: 700;
  730. .ico{
  731. background-image: url(/img/ico--more--arrow.svg);
  732. width: 24px;
  733. height: 24px;
  734. }
  735. &.blur--type{
  736. backdrop-filter: blur(6px);
  737. }
  738. }
  739. }
  740. .swiper--container{
  741. padding: 100px 0;
  742. .title--wrap {
  743. text-align: center;
  744. .green--title {
  745. margin-bottom: 16px;
  746. color: #00a654 !important;
  747. font-size: 18px;
  748. font-weight: 700;
  749. }
  750. .sub--title {
  751. color: #1f2128;
  752. font-size: 20px;
  753. font-weight: 400;
  754. margin-bottom: 12px;
  755. }
  756. >h2 {
  757. color: #1f2128;
  758. font-size: 40px;
  759. font-weight: 700;
  760. }
  761. }
  762. .item--swiper--wrap{
  763. .item--swiper{
  764. .item--img{
  765. display: flex;
  766. flex-direction: column;
  767. gap: 16px;
  768. .img--wrap{
  769. img{
  770. width: 100%;
  771. }
  772. }
  773. .txt--wrap{
  774. color: #1f2128;
  775. font-size: 14px;
  776. font-weight: 500;
  777. }
  778. }
  779. }
  780. }
  781. .marquee--wrap{
  782. overflow: hidden;
  783. .vue3-marquee{
  784. overflow: hidden;
  785. }
  786. .marquee{
  787. display: flex;
  788. gap: 40px;
  789. width: fit-content;
  790. .logo--wrap{
  791. display: flex;
  792. align-items: center;
  793. justify-content: center;
  794. width: 180px;
  795. height: 108px;
  796. }
  797. }
  798. }
  799. }
  800. }
  801. section{
  802. &.vision--section {
  803. background-image: url(/img/bg--vision.png);
  804. background-repeat: no-repeat;
  805. background-size: cover;
  806. background-position: center;
  807. background-attachment: fixed;
  808. .sub--container{
  809. padding: 145px 0;
  810. }
  811. }
  812. &.mission--section{
  813. padding-top: 100px;
  814. display: flex;
  815. flex-direction: column;
  816. gap: 60px;
  817. overflow: hidden;
  818. .title--wrap{
  819. display: flex;
  820. gap: 48px;
  821. justify-content: center;
  822. .mission--title{
  823. color: #1f2128;
  824. font-size: 40px;
  825. font-weight: 800;
  826. }
  827. .mission--desc{
  828. color: #1f2128;
  829. font-size: 24px;
  830. font-weight: 700;
  831. strong{
  832. color: #00a654;
  833. font-weight: 700;
  834. }
  835. }
  836. }
  837. .mission--img--wrap{
  838. display: flex;
  839. gap: 20px;
  840. width: 107%;
  841. margin-left: -3.5%;
  842. .img--wrap{
  843. width: calc((100% - 60px) / 4);
  844. img{
  845. width: 100%;
  846. }
  847. }
  848. }
  849. }
  850. &.values--section{
  851. background-image: url(/img/bg--values.png);
  852. background-repeat: no-repeat;
  853. background-size: cover;
  854. background-attachment: fixed;
  855. background-position: bottom center;
  856. .sub--container {
  857. padding: 100px 0 120px;
  858. }
  859. }
  860. &.notice--section{
  861. .sub--container{
  862. .title--wrap{
  863. .title{
  864. font-size: 48px;
  865. }
  866. }
  867. }
  868. }
  869. &.map--section{
  870. background: linear-gradient(102deg, #000 0%, #0C2984 100%);
  871. padding: 30px 20px;
  872. .map--wrap{
  873. margin: 0 auto;
  874. max-width: 775px;
  875. width: 100%;
  876. img{
  877. width: 100%;
  878. }
  879. }
  880. }
  881. .sub--container{
  882. margin: 0 auto;
  883. max-width: 1060px;
  884. width: 100%;
  885. padding: 100px 0;
  886. &.type2{
  887. padding: 100px 0 120px;
  888. }
  889. &.type3{
  890. max-width: 1280px;
  891. padding: 100px 0 120px;
  892. }
  893. &.type4{
  894. padding: 160px 0 120px;
  895. }
  896. .title--wrap{
  897. text-align: center;
  898. &.color--white{
  899. *{
  900. color: white!important;
  901. }
  902. }
  903. .logo--wrap{
  904. display: flex;
  905. justify-content: center;
  906. align-items: center;
  907. margin-bottom: 60px;
  908. }
  909. .title{
  910. color: #1f2128;
  911. font-size: 40px;
  912. font-weight: 700;
  913. strong{
  914. color: #00a654;
  915. font-weight: 700;
  916. }
  917. }
  918. .sub--title{
  919. margin-top: 24px;
  920. color: #1f2128;
  921. font-size: 24px;
  922. font-weight: 700;
  923. }
  924. .sub--title2{
  925. margin-top: 12px;
  926. font-size: 18px;
  927. font-weight: 400;
  928. color: #1f2128;
  929. }
  930. }
  931. .product--img--wrap{
  932. display: flex;
  933. flex-direction: column;
  934. align-items: center;
  935. gap: 20px;
  936. margin-top: 40px;
  937. .img--top{
  938. display: flex;
  939. gap: 20px;
  940. }
  941. .img--bot{
  942. display: flex;
  943. gap: 20px;
  944. }
  945. }
  946. .vision--wrap{
  947. display: flex;
  948. flex-direction: column;
  949. gap: 20px;
  950. text-align: center;
  951. >span{
  952. color: #fff;
  953. font-size: 20px;
  954. font-weight: 700;
  955. }
  956. >p{
  957. color: #fff;
  958. font-size: 40px;
  959. font-weight: 700;
  960. }
  961. }
  962. .values--card--wrap{
  963. display: flex;
  964. gap: 20px;
  965. margin-top: 40px;
  966. .card{
  967. display: flex;
  968. flex-direction: column;
  969. background-color: rgba(0, 0, 0, 0.30);
  970. backdrop-filter: blur(6px);
  971. padding: 24px;
  972. width: calc((100% - 40px) / 3);
  973. .ico{
  974. width: 48px;
  975. height: 48px;
  976. margin-bottom: 16px;
  977. background-image: url(/img/ico--values1.svg);
  978. }
  979. dt{
  980. margin-bottom: 8px;
  981. color: #fff;
  982. font-size: 24px;
  983. font-weight: 700;
  984. }
  985. dd{
  986. color: #fff;
  987. font-size: 16px;
  988. font-weight: 400;
  989. }
  990. &:nth-of-type(2){
  991. .ico{
  992. background-image: url(/img/ico--values2.svg);
  993. }
  994. }
  995. &:nth-of-type(3) {
  996. .ico {
  997. background-image: url(/img/ico--values3.svg);
  998. }
  999. }
  1000. }
  1001. }
  1002. .history--desc--wrap{
  1003. margin-top: 100px;
  1004. display: flex;
  1005. flex-direction: column;
  1006. .history--desc{
  1007. gap: 60px;
  1008. display: flex;
  1009. margin-bottom: 100px;
  1010. &.left--type{
  1011. padding-right: 100px;
  1012. .img--wrap{
  1013. min-width: 412px;
  1014. }
  1015. .desc--wrap{
  1016. >p{
  1017. font-size: 20px;
  1018. }
  1019. }
  1020. }
  1021. &.left--type2{
  1022. padding-right: 100px;
  1023. .img--wrap{
  1024. min-width: 324px;
  1025. }
  1026. }
  1027. &.right--type{
  1028. padding-left: 100px;
  1029. .img--wrap{
  1030. min-width: 412px;
  1031. }
  1032. }
  1033. &.top--type{
  1034. flex-direction: column;
  1035. }
  1036. .desc--box--wrap{
  1037. display: flex;
  1038. justify-content: space-between;
  1039. gap: 60px;
  1040. .desc--wrap{
  1041. width: 50%;
  1042. >div{
  1043. color: #1f2128;
  1044. font-size: 24px;
  1045. font-weight: 700;
  1046. strong{
  1047. font-weight: 700;
  1048. color: #00A654;
  1049. }
  1050. }
  1051. }
  1052. }
  1053. .desc--wrap{
  1054. display: flex;
  1055. flex-direction: column;
  1056. gap: 20px;
  1057. >p{
  1058. color: #1f2128;
  1059. font-size: 18px;
  1060. font-weight: 400;
  1061. strong{
  1062. font-weight: 800;
  1063. }
  1064. }
  1065. }
  1066. }
  1067. }
  1068. .history--graph--wrap{
  1069. overflow: hidden;
  1070. display: flex;
  1071. .txt--wrap{
  1072. text-align: center;
  1073. color: #1f2128;
  1074. font-size: 40px;
  1075. font-weight: 800;
  1076. width: 50%;
  1077. }
  1078. .graph--wrap{
  1079. width: 50%;
  1080. display: flex;
  1081. flex-direction: column;
  1082. .graph--box{
  1083. display: flex;
  1084. gap: 30px;
  1085. margin-top: -15px;
  1086. &:first-child{
  1087. margin-top: 0;
  1088. }
  1089. .deco--box{
  1090. position: relative;
  1091. padding-left: 5px;
  1092. padding-top: 15px;
  1093. .dot{
  1094. display: inline-block;
  1095. width: 12px;
  1096. height: 12px;
  1097. border-radius: 50%;
  1098. background-color: #00a654;
  1099. position: absolute;
  1100. top: 15px;
  1101. left: 0;
  1102. }
  1103. .line{
  1104. display: inline-block;
  1105. background-color: #e0e4f2;
  1106. height: 100%;
  1107. width: 2px;
  1108. }
  1109. }
  1110. .history--box{
  1111. display: flex;
  1112. flex-direction: column;
  1113. gap: 16px;
  1114. padding-bottom: 95px;
  1115. .year{
  1116. line-height: 1.4;
  1117. color: #1f2128;
  1118. font-size: 32px;
  1119. font-weight: 800;
  1120. }
  1121. >ul{
  1122. display: flex;
  1123. flex-direction: column;
  1124. gap: 16px;
  1125. >li{
  1126. >div{
  1127. display: flex;
  1128. gap: 28px;
  1129. >span{
  1130. width: 80px;
  1131. color: #78809b;
  1132. font-size: 16px;
  1133. font-weight: 700;
  1134. }
  1135. >p{
  1136. color: #1f2128;
  1137. font-size: 16px;
  1138. font-weight: 700;
  1139. width: calc(100% - 108px);
  1140. }
  1141. }
  1142. }
  1143. }
  1144. }
  1145. }
  1146. }
  1147. }
  1148. .partners--wrap{
  1149. display: flex;
  1150. gap: 20px;
  1151. flex-wrap: wrap;
  1152. margin-top: 80px;
  1153. .partners{
  1154. background-color: #f6f8ff;
  1155. width: calc((100% - 60px) / 4);
  1156. }
  1157. }
  1158. .catalog--wrap{
  1159. display: flex;
  1160. flex-direction: column;
  1161. gap: 80px;
  1162. margin-top: 80px;
  1163. .catalog{
  1164. display: flex;
  1165. gap: 80px;
  1166. .img--wrap{
  1167. min-width: 412px;
  1168. }
  1169. .download--wrap{
  1170. display: flex;
  1171. flex-direction: column;
  1172. gap: 20px;
  1173. justify-content: center;
  1174. width: calc(100% - 492px);
  1175. >p{
  1176. color: #1f2128;
  1177. font-size: 28px;
  1178. font-weight: 800;
  1179. }
  1180. .btn--wrap{
  1181. display: flex;
  1182. gap: 8px;
  1183. .download--btn{
  1184. cursor: pointer;
  1185. display: flex;
  1186. gap: 8px;
  1187. font-size: 16px;
  1188. font-weight: 700;
  1189. padding: 8px 12px 8px 16px;
  1190. border-radius: 24px;
  1191. color: #fff;
  1192. background-color: #1f2128;
  1193. .ico{
  1194. width: 24px;
  1195. height: 24px;
  1196. background-image: url(/img/ico--download.svg);
  1197. }
  1198. }
  1199. }
  1200. }
  1201. }
  1202. }
  1203. .tab--wrap{
  1204. margin: 60px 0 80px;
  1205. display: flex;
  1206. width: 100%;
  1207. justify-content: center;
  1208. gap: 12px;
  1209. a{
  1210. line-height: 1;
  1211. padding: 14px 32px;
  1212. color: #78809b;
  1213. font-size: 16px;
  1214. font-weight: 700;
  1215. border-radius: 24px;
  1216. background-color: #eff1fb;
  1217. &.active{
  1218. color: #00a654;
  1219. background-color: #fff;
  1220. border: 1px solid #00A654;
  1221. }
  1222. }
  1223. }
  1224. .search--wrap{
  1225. margin: 60px 0 40px;
  1226. display: flex;
  1227. justify-content: end;
  1228. position: relative;
  1229. gap: 8px;
  1230. >button{
  1231. width: 120px;
  1232. box-shadow: none;
  1233. height: 48px;
  1234. padding-left: 16px;
  1235. border: 1px solid #b6bbcc;
  1236. padding-right: 40px;
  1237. color: #1f2128;
  1238. font-size: 16px;
  1239. font-weight: 500;
  1240. .iconify{
  1241. --svg: none;
  1242. background-color: transparent;
  1243. width: 24px;
  1244. height: 24px;
  1245. background-image: url(/img/ico--select.svg);
  1246. }
  1247. }
  1248. input{
  1249. padding: 0 40px 0 16px;
  1250. height: 48px;
  1251. width: 320px;
  1252. box-shadow: none;
  1253. border: 1px solid #b6bbcc;
  1254. color: #1f2128;
  1255. font-size: 16px;
  1256. font-weight: 500;
  1257. &::placeholder{
  1258. color: #78809b;
  1259. font-size: 16px;
  1260. font-weight: 500;
  1261. }
  1262. }
  1263. .search--btn{
  1264. background-color: transparent;
  1265. border: none;
  1266. position: absolute;
  1267. top: 50%;
  1268. transform: translateY(-50%);
  1269. background-repeat: no-repeat;
  1270. width: 24px;
  1271. padding: 0;
  1272. right: 12px;
  1273. height: 24px;
  1274. background-image: url(/img/ico--search.svg);
  1275. }
  1276. }
  1277. .materials--wrap{
  1278. display: flex;
  1279. flex-direction: column;
  1280. gap: 80px;
  1281. .materials--box{
  1282. display: flex;
  1283. gap: 80px;
  1284. .img--wrap{
  1285. min-width: 490px;
  1286. }
  1287. .desc--wrap{
  1288. display: flex;
  1289. flex-direction: column;
  1290. gap: 16px;
  1291. justify-content: center;
  1292. >h4{
  1293. color: #1f2128;
  1294. font-size: 28px;
  1295. font-weight: 800;
  1296. }
  1297. >h5{
  1298. color: #00a654;
  1299. font-size: 20px;
  1300. font-weight: 700;
  1301. }
  1302. >ul{
  1303. display: flex;
  1304. flex-direction: column;
  1305. gap: 8px;
  1306. >li{
  1307. color: #1f2128;
  1308. font-size: 16px;
  1309. font-weight: 400;
  1310. }
  1311. }
  1312. .tag--wrap{
  1313. display: flex;
  1314. gap: 4px;
  1315. span{
  1316. background-color: #EFF1FB;
  1317. color: #515973;
  1318. padding: 3px 8px;
  1319. font-weight: 500;
  1320. font-size: 14px;
  1321. }
  1322. }
  1323. .btn--wrap{
  1324. margin-top: 16px;
  1325. a{
  1326. padding: 11px 12px 11px 16px;
  1327. color: #1f2128;
  1328. font-size: 14px;
  1329. font-weight: 700;
  1330. display: flex;
  1331. gap: 8px;
  1332. border-radius: 24px;
  1333. width: fit-content;
  1334. border: 1px solid #515973;
  1335. .ico{
  1336. width: 20px;
  1337. height: 20px;
  1338. background-image: url(/img/ico--arrow.svg);
  1339. }
  1340. }
  1341. }
  1342. }
  1343. }
  1344. }
  1345. .life--cycle--wrap{
  1346. display: flex;
  1347. flex-direction: column;
  1348. gap: 20px;
  1349. margin-top: 80px;
  1350. .cycle{
  1351. display: flex;
  1352. gap: 20px;
  1353. .img--wrap{
  1354. position: relative;
  1355. .txt{
  1356. position: absolute;
  1357. bottom: 0;
  1358. width: 100%;
  1359. padding: 20px;
  1360. display: flex;
  1361. gap: 4px;
  1362. flex-direction: column;
  1363. left: 0;
  1364. span{
  1365. color: #fff;
  1366. font-weight: 800;
  1367. font-size: 20px;
  1368. }
  1369. p{
  1370. color: #fff;
  1371. font-size: 20px;
  1372. font-weight: 700;
  1373. }
  1374. }
  1375. }
  1376. }
  1377. }
  1378. .patents--wrap{
  1379. .patents--list{
  1380. display: flex;
  1381. flex-wrap: wrap;
  1382. column-gap: 20px;
  1383. row-gap: 40px;
  1384. .patents{
  1385. background-color: transparent;
  1386. cursor: pointer;
  1387. padding: 0;
  1388. display: flex;
  1389. flex-direction: column;
  1390. gap: 16px;
  1391. width: calc((100% - 60px) / 4);
  1392. .img--wrap{
  1393. width: 100%;
  1394. height: 353px;
  1395. overflow: hidden;
  1396. border: 1px solid #E0E4F2;
  1397. img{
  1398. width: 100%;
  1399. height: 100%;
  1400. object-fit: cover;
  1401. }
  1402. }
  1403. h4{
  1404. color: #1f2128;
  1405. font-size: 16px;
  1406. font-weight: 500;
  1407. overflow: hidden;
  1408. text-overflow: ellipsis;
  1409. display: -webkit-box;
  1410. -webkit-line-clamp: 3;
  1411. -webkit-box-orient: vertical;
  1412. }
  1413. }
  1414. }
  1415. }
  1416. .news--wrap{
  1417. margin-top: 80px;
  1418. >h3{
  1419. margin-bottom: 24px;
  1420. color: #1f2128;
  1421. font-size: 32px;
  1422. font-weight: 700;
  1423. }
  1424. .news--list{
  1425. display: flex;
  1426. flex-direction: column;
  1427. border-top: 1px solid #1f2128;
  1428. .news{
  1429. display: flex;
  1430. gap: 40px;
  1431. justify-content: space-between;
  1432. border-bottom: 1px solid #e0e4f2;
  1433. transition: all 0.3s;
  1434. padding: 20px 0;
  1435. &:hover{
  1436. background-color: #F6F8FF;
  1437. }
  1438. .news--title--wrap{
  1439. display: flex;
  1440. flex-direction: column;
  1441. gap: 12px;
  1442. h4{
  1443. color: #1f2128;
  1444. font-size: 20px;
  1445. font-weight: 500;
  1446. overflow: hidden;
  1447. text-overflow: ellipsis;
  1448. display: -webkit-box;
  1449. -webkit-line-clamp: 2;
  1450. -webkit-box-orient: vertical;
  1451. }
  1452. span{
  1453. color: #515973;
  1454. font-size: 16px;
  1455. font-weight: 400;
  1456. }
  1457. }
  1458. .news--thumb--wrap{
  1459. width: 160px;
  1460. height: 100px;
  1461. min-width: 160px;
  1462. img{
  1463. width: 100%;
  1464. height: 100%;
  1465. object-fit: cover;
  1466. }
  1467. }
  1468. }
  1469. }
  1470. }
  1471. .notice--wrap {
  1472. .notice--list {
  1473. display: flex;
  1474. flex-direction: column;
  1475. border-top: 1px solid #1f2128;
  1476. .notice {
  1477. display: flex;
  1478. justify-content: space-between;
  1479. border-bottom: 1px solid #b6bbcc;
  1480. transition: all 0.3s;
  1481. align-items: center;
  1482. padding: 28px 20px;
  1483. gap: 80px;
  1484. &:hover {
  1485. background-color: #F6F8FF;
  1486. }
  1487. .news--index{
  1488. width: 20px;
  1489. color: #515973;
  1490. font-size: 16px;
  1491. font-weight: 400;
  1492. }
  1493. h4 {
  1494. color: #1f2128;
  1495. font-size: 20px;
  1496. width: calc(100% - 260px);
  1497. font-weight: 500;
  1498. overflow: hidden;
  1499. text-overflow: ellipsis;
  1500. display: -webkit-box;
  1501. -webkit-line-clamp: 1;
  1502. -webkit-box-orient: vertical;
  1503. }
  1504. .news--date {
  1505. color: #515973;
  1506. font-size: 16px;
  1507. font-weight: 400;
  1508. }
  1509. }
  1510. }
  1511. }
  1512. .faq--wrap{
  1513. margin-top: 60px;
  1514. border-top: 1px solid #1f2128;
  1515. .border-default{
  1516. border-bottom: 1px solid #b6bbcc;
  1517. .flex{
  1518. >button{
  1519. cursor: pointer;
  1520. gap: 20px;
  1521. padding: 28px 20px;
  1522. .text-start{
  1523. color: #00a654;
  1524. font-size: 20px;
  1525. font-weight: 700;
  1526. padding-left: 44px;
  1527. position: relative;
  1528. &::before{
  1529. content: 'Q';
  1530. position: absolute;
  1531. width: 24px;
  1532. left: 0;
  1533. text-align: center;
  1534. margin-right: 20px;
  1535. font-size: 24px;
  1536. line-height: 1.1;
  1537. }
  1538. }
  1539. .iconify{
  1540. width: 28px;
  1541. height: 28px;
  1542. --svg: none;
  1543. background-color: transparent;
  1544. background-image: url(/img/ico--faq--arrow.svg);
  1545. }
  1546. }
  1547. }
  1548. .overflow-hidden{
  1549. padding: 28px 60px 28px 20px;
  1550. background-color: #f6f8ff;
  1551. .text-sm{
  1552. padding-bottom: 0;
  1553. color: #1f2128;
  1554. font-size: 18px;
  1555. position: relative;
  1556. padding-left: 44px;
  1557. &::before{
  1558. content: 'A';
  1559. position: absolute;
  1560. width: 24px;
  1561. left: 0;
  1562. text-align: center;
  1563. color: #515973;
  1564. font-weight: 700;
  1565. margin-right: 20px;
  1566. font-size: 24px;
  1567. line-height: 1.1;
  1568. }
  1569. }
  1570. }
  1571. }
  1572. }
  1573. .view--wrap{
  1574. .view--title{
  1575. padding-bottom: 40px;
  1576. border-bottom: 1px solid #78809b;
  1577. >h3{
  1578. margin-bottom: 16px;
  1579. color: #1f2128;
  1580. font-size: 32px;
  1581. font-weight: 700;
  1582. }
  1583. .view--info{
  1584. display: flex;
  1585. align-items: center;
  1586. >p{
  1587. color: #515973;
  1588. font-size: 16px;
  1589. font-weight: 400;
  1590. }
  1591. .bar{
  1592. margin: 0 12px;
  1593. display: inline-block;
  1594. width: 1px;
  1595. height: 12px;
  1596. background-color: #b6bbcc;
  1597. }
  1598. }
  1599. }
  1600. .view--cont{
  1601. padding: 40px 0;
  1602. border-bottom: 1px solid #78809b;
  1603. margin-bottom: 40px;
  1604. img{
  1605. max-width: 100%;
  1606. }
  1607. p{
  1608. color: #1f2128;
  1609. font-size: 18px;
  1610. font-weight: 400;
  1611. }
  1612. }
  1613. .btn--wrap{
  1614. display: flex;
  1615. align-items: center;
  1616. justify-content: center;
  1617. >a{
  1618. width: 128px;
  1619. height: 44px;
  1620. background-color: #1f2128;
  1621. color: #fff;
  1622. border-radius: 24px;
  1623. display: flex;
  1624. justify-content: center;
  1625. align-items: center;
  1626. font-size: 16px;
  1627. font-weight: 700;
  1628. }
  1629. }
  1630. .link--wrap{
  1631. margin-top: 80px;
  1632. display: flex;
  1633. flex-direction: column;
  1634. .link{
  1635. &:first-child{
  1636. border-top: 1px solid #B6BBCC;
  1637. }
  1638. align-items: center;
  1639. display: flex;
  1640. justify-content: space-between;
  1641. transition: all 0.3s;
  1642. padding: 28px 20px;
  1643. border-bottom: 1px solid #B6BBCC;
  1644. &:hover{
  1645. background-color: #eff1fb;
  1646. }
  1647. >p{
  1648. width: 60px;
  1649. color: #515973;
  1650. font-weight: 400;
  1651. font-size: 16px;
  1652. }
  1653. >h5{
  1654. color: #1f2128;
  1655. overflow: hidden;
  1656. text-overflow: ellipsis;
  1657. display: -webkit-box;
  1658. -webkit-line-clamp: 1;
  1659. -webkit-box-orient: vertical;
  1660. font-size: 18px;
  1661. width: calc(100% - 300px);
  1662. font-weight: 500;
  1663. }
  1664. >span{
  1665. width: 80px;
  1666. color: #515973;
  1667. font-size: 16px;
  1668. font-weight: 400;
  1669. }
  1670. }
  1671. }
  1672. }
  1673. .sns--wrap{
  1674. margin-top: 80px;
  1675. >h3 {
  1676. margin-bottom: 24px;
  1677. color: #1f2128;
  1678. font-size: 32px;
  1679. font-weight: 700;
  1680. }
  1681. .sns--list{
  1682. display: flex;
  1683. gap: 20px;
  1684. .sns{
  1685. width: calc((100% - 60px) / 4);
  1686. overflow: hidden;
  1687. position: relative;
  1688. .img--wrap{
  1689. background-repeat: no-repeat;
  1690. background-size: cover;
  1691. background-position: center;
  1692. width: 100%;
  1693. padding-bottom: 100%;
  1694. transition: all 0.3s;
  1695. }
  1696. .txt--wrap{
  1697. position: absolute;
  1698. color: #fff;
  1699. height: 50%;
  1700. width: 100%;
  1701. background-color: #00a654;
  1702. bottom: -100%;
  1703. transition: all 0.3s;
  1704. left: 0;
  1705. padding: 16px;
  1706. display: flex;
  1707. flex-direction: column;
  1708. justify-content: space-between;
  1709. z-index: 3;
  1710. >h4{
  1711. overflow: hidden;
  1712. text-overflow: ellipsis;
  1713. display: -webkit-box;
  1714. -webkit-line-clamp: 2;
  1715. -webkit-box-orient: vertical;
  1716. font-size: 18px;
  1717. font-weight: 700;
  1718. }
  1719. >span{
  1720. display: flex;
  1721. font-size: 14px;
  1722. font-weight: 700;
  1723. .ico{
  1724. width: 20px;
  1725. height: 20px;
  1726. background-image: url(/img/ico--more--arrow2.svg);
  1727. }
  1728. }
  1729. }
  1730. &::before{
  1731. z-index: 2;
  1732. transition: all 0.3s;
  1733. position: absolute;
  1734. top: 0;
  1735. left: 0;
  1736. width: 100%;
  1737. background: rgba(0, 0, 0, 0.50);
  1738. content: '';
  1739. display: inline-block;
  1740. height: 100%;
  1741. opacity: 0;
  1742. }
  1743. &:hover{
  1744. &::before{
  1745. opacity: 1;
  1746. }
  1747. .txt--wrap{
  1748. bottom: 0;
  1749. }
  1750. }
  1751. }
  1752. }
  1753. }
  1754. .location--wrap{
  1755. margin-bottom: 80px;
  1756. &:last-child{
  1757. margin-bottom: 0;
  1758. }
  1759. h4{
  1760. color: #1f2128;
  1761. font-size: 28px;
  1762. font-weight: 700;
  1763. margin-bottom: 12px;
  1764. }
  1765. .map{
  1766. font-size: 16px;
  1767. color: #515973;
  1768. display: flex;
  1769. font-weight: 400;
  1770. .ico{
  1771. width: 20px;
  1772. height: 20px;
  1773. background-image: url(/img/ico--map.svg);
  1774. margin-right: 4px;
  1775. margin-top: 2px;
  1776. }
  1777. }
  1778. .call{
  1779. font-size: 16px;
  1780. display: flex;
  1781. margin-top: 12px;
  1782. color: #515973;
  1783. font-weight: 400;
  1784. .ico{
  1785. margin-top: 2px;
  1786. margin-right: 4px;
  1787. width: 20px;
  1788. height: 20px;
  1789. background-image: url(/img/ico--call.svg);
  1790. }
  1791. }
  1792. .location--map{
  1793. width: 100%;
  1794. margin-top: 28px;
  1795. height: 360px;
  1796. }
  1797. }
  1798. .pagination--wrap{
  1799. margin-top: 48px;
  1800. display: flex;
  1801. justify-content: center;
  1802. align-items: center;
  1803. gap: 8px;
  1804. >button{
  1805. width: 28px;
  1806. height: 28px;
  1807. background-image: url(/img/ico--paging--arrow.svg);
  1808. background-color: transparent;
  1809. cursor: pointer;
  1810. &.prev--btn{
  1811. transform: rotate(180deg);
  1812. }
  1813. }
  1814. .numbs{
  1815. display: flex;
  1816. align-items: center;
  1817. justify-content: center;
  1818. gap: 8px;
  1819. button{
  1820. cursor: pointer;
  1821. color: #515973;
  1822. font-size: 16px;
  1823. font-weight: 500;
  1824. background-color: transparent;
  1825. border-radius: 50%;
  1826. width: 28px;
  1827. height: 28px;
  1828. transition: all 0.3s;
  1829. &:hover{
  1830. background-color: #EFF1FB;
  1831. }
  1832. &.active{
  1833. color: #fff;
  1834. background-color: #00a654;
  1835. }
  1836. }
  1837. }
  1838. }
  1839. }
  1840. }
  1841. }
  1842. .footer--wrap{
  1843. background-color: #000;
  1844. .footer--container{
  1845. max-width: 1280px;
  1846. width: 100%;
  1847. margin: 0 auto;
  1848. padding: 40px 0 60px;
  1849. .footer--top{
  1850. display: flex;
  1851. justify-content: space-between;
  1852. .logo--wrap{
  1853. }
  1854. .menu--wrap{
  1855. display: flex;
  1856. gap: 20px;
  1857. >li{
  1858. width: 140px;
  1859. display: flex;
  1860. flex-direction: column;
  1861. gap: 20px;
  1862. >a{
  1863. color: #b6bbcc;
  1864. font-size: 15px;
  1865. font-weight: 400;
  1866. }
  1867. >ul{
  1868. display: flex;
  1869. flex-direction: column;
  1870. width: 100%;
  1871. gap: 20px;
  1872. >li{
  1873. width: 100%;
  1874. >a{
  1875. display: inline-block;
  1876. width: 100%;
  1877. font-size: 16px;
  1878. font-weight: 500;
  1879. color: #fff;
  1880. }
  1881. }
  1882. }
  1883. }
  1884. }
  1885. }
  1886. .footer--bot{
  1887. display: flex;
  1888. flex-direction: column;
  1889. margin-top: 40px;
  1890. padding-top: 20px;
  1891. border-top: 1px solid rgba(255, 255, 255, 0.2);
  1892. .sns--list{
  1893. display: flex;
  1894. gap: 20px;
  1895. margin-bottom: 20px;
  1896. li{
  1897. height: 24px;
  1898. width: 24px;
  1899. a{
  1900. display: inline-block;
  1901. width: 24px;
  1902. height: 24px;
  1903. &.blog{
  1904. background-image: url(/img/ico--blog.svg);
  1905. }
  1906. &.ytb{
  1907. background-image: url(/img/ico--ytb.svg);
  1908. }
  1909. &.fb {
  1910. background-image: url(/img/ico--fb.svg);
  1911. }
  1912. &.insta{
  1913. background-image: url(/img/ico--insta.svg);
  1914. }
  1915. }
  1916. }
  1917. }
  1918. .bar{
  1919. width: 1px;
  1920. height: 12px;
  1921. background-color: #fff;
  1922. opacity: 0.2;
  1923. }
  1924. .info--list{
  1925. align-items: center;
  1926. display: flex;
  1927. flex-wrap: wrap;
  1928. gap: 8px;
  1929. li{
  1930. color: #B6BBCC;
  1931. font-size: 14px;
  1932. font-weight: 400;
  1933. }
  1934. }
  1935. .copyright{
  1936. margin-top: 20px;
  1937. display: flex;
  1938. align-items: center;
  1939. gap: 8px;
  1940. span{
  1941. color: #B6BBCC;
  1942. font-size: 14px;
  1943. font-weight: 400;
  1944. }
  1945. a{
  1946. color: #b6bbcc;
  1947. font-size: 14px;
  1948. font-weight: 400;
  1949. }
  1950. }
  1951. }
  1952. }
  1953. }
  1954. // 모달
  1955. .bg-elevated\/75{
  1956. background-color: rgba(0,0,0,0.5);
  1957. backdrop-filter: blur(6px);
  1958. }
  1959. .bg-default{
  1960. border-radius: 0;
  1961. overflow: visible;
  1962. .modal--close--btn{
  1963. top: -36px;
  1964. right: 0;
  1965. position: absolute;
  1966. background-color: transparent;
  1967. width: 28px;
  1968. height: 28px;
  1969. background-image: url(/img/ico--close.svg);
  1970. border: none;
  1971. padding: 0;
  1972. }
  1973. .modal--img--container {
  1974. width: 100%;
  1975. max-height: calc(100vh - 80px); //close버튼 공간 남김
  1976. overflow-y: auto;
  1977. display: flex;
  1978. justify-content: center;
  1979. align-items: flex-start;
  1980. img{
  1981. width: 100%;
  1982. height: auto;
  1983. display: block;
  1984. }
  1985. }
  1986. }