style.scss 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848
  1. @charset "UTF-8";
  2. @use 'animation';
  3. img{
  4. width: 100%;
  5. }
  6. .evt--section01{
  7. background-color: #00b6ff;
  8. background-repeat: no-repeat;
  9. background-size: 100%;
  10. position: relative;
  11. overflow: hidden;
  12. .palm--img1{
  13. position: absolute;
  14. top: -3%;
  15. left: 0;
  16. max-width: 495px;
  17. width: 50%;
  18. z-index:10;
  19. }
  20. .palm--img2{
  21. z-index:10;
  22. position: absolute;
  23. right: -60px;
  24. top: -3%;
  25. width: 50%;
  26. max-width: 500px;
  27. }
  28. .bubble--bg{
  29. z-index:10;
  30. position: absolute;
  31. background-image: url(../img/img_bg_3.png);
  32. width: 231px;
  33. height: 95px;
  34. bottom: -500px;
  35. left: -231px;
  36. }
  37. .wave--bg{
  38. position: absolute;
  39. background-size: 100%;
  40. background-position: 0 -120px;
  41. background-image: url(../img/bg_2.png);
  42. width: 100%;
  43. height: 5000px;
  44. }
  45. .section--container{
  46. max-width: 1440px;
  47. margin: 0 auto;
  48. position: relative;
  49. .section--title{
  50. margin-top: 150px;
  51. margin-bottom: 150px;
  52. display: flex;
  53. flex-direction: column;
  54. position: relative;
  55. z-index: 11;
  56. align-items: center;
  57. .logo{
  58. max-width: 290px;
  59. width: 40%;
  60. margin-bottom: 80px;
  61. opacity: 0;
  62. transform: translateY(60px);
  63. animation: fadeUpLogo 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  64. }
  65. >h1{
  66. margin-bottom: 30px;
  67. opacity: 0;
  68. transform: translateX(-60px);
  69. animation: fadeInRightH1 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  70. }
  71. >h2{
  72. opacity: 0;
  73. transform: translateX(60px);
  74. animation: fadeInLeftH2 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
  75. margin-bottom: 100px;
  76. }
  77. >h3{
  78. opacity: 0;
  79. transform: translateY(60px);
  80. animation: fadeUpH3 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
  81. max-width: 716px;
  82. width: 80%;
  83. }
  84. .bg1{
  85. position: absolute;
  86. left: -200px;
  87. top: 0px;
  88. }
  89. .bg2{
  90. position: absolute;
  91. left: -230px;
  92. bottom: -200px;
  93. }
  94. .bg4{
  95. position: absolute;
  96. right: -200px;
  97. bottom: -60px;
  98. }
  99. .bg--wave--wrap{
  100. position: absolute;
  101. right: -90px;
  102. top: 50px;
  103. .bg--wave{
  104. position: relative;
  105. width: 900px;
  106. height: 550px;
  107. .bg--wave1{
  108. position: absolute;
  109. z-index: -1;
  110. opacity: 0;
  111. transform: translateX(-100px);
  112. animation: waveInRight 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
  113. }
  114. .bg--wave2{
  115. position: absolute;
  116. width: 316px;
  117. right: 60px;
  118. top: 103px;
  119. opacity: 0;
  120. transform: translateX(-100px);
  121. animation: waveInRight 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
  122. }
  123. }
  124. }
  125. }
  126. .video--wrap{
  127. max-width: 1440px;
  128. margin: 0 auto 120px;
  129. overflow: hidden;
  130. max-height: 90vh;
  131. background-color: black;
  132. border: 3px solid #ffffff;
  133. border-radius: 2px;
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. box-sizing: border-box;
  138. position: relative;
  139. z-index: 5;
  140. video{
  141. aspect-ratio: 4 / 3;
  142. z-index: 5;
  143. width: 100%;
  144. position: relative;
  145. vertical-align: top;
  146. }
  147. .bg5{
  148. position: absolute;
  149. top: -100px;
  150. left: -340px;
  151. z-index: 2;
  152. }
  153. .video--btn{
  154. display: none;
  155. position: absolute;
  156. top: 50%;
  157. left: 50%;
  158. transform: translate(-50%, -50%);
  159. max-width: 230px;
  160. max-height: 230px;
  161. width: 20vw;
  162. height: 20vw;
  163. z-index: 10;
  164. height: 230px;
  165. cursor: pointer;
  166. background-repeat: no-repeat;
  167. background-position: center;
  168. background-size: 100%;
  169. background-image: url(../img/ico_play.png);
  170. &.play{
  171. display: block;
  172. }
  173. }
  174. }
  175. .swiper--wrap{
  176. position: relative;
  177. margin-bottom: 200px;
  178. box-shadow: 16px 12px 32px rgba(68, 68, 68, 0.15);
  179. .bg1{
  180. position: absolute;
  181. right: -180px;
  182. top: -30px;
  183. }
  184. .bg2{
  185. position: absolute;
  186. left: -160px;
  187. top: 50%;
  188. }
  189. .bg3{
  190. position: absolute;
  191. right: -260px;
  192. bottom: 30%;
  193. }
  194. .swiper--tab--wrap{
  195. display: flex;
  196. gap: 5px;
  197. .tab--btn{
  198. background-color: #fff;
  199. border: none;
  200. border-top-left-radius: 15px;
  201. border-top-right-radius: 15px;
  202. text-align: center;
  203. width: 100%;
  204. position: relative;
  205. font-weight: 500;
  206. font-family: 'GmarketSans';
  207. height: 80px;
  208. display: flex;
  209. align-items: center;
  210. justify-content: center;
  211. font-size: 28px;
  212. padding: 0;
  213. color: #787878;
  214. box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.15) inset;
  215. &:first-child,
  216. &:nth-child(2),
  217. &:nth-child(3){
  218. &::before{
  219. content: 'NEW';
  220. font-size: 14px;
  221. margin-top: -5px;
  222. margin-right: 5px;
  223. }
  224. }
  225. &::after{
  226. content: '';
  227. display: inline-block;
  228. width: 100%;
  229. bottom: 0;
  230. position: absolute;
  231. }
  232. &.active{
  233. background-color: #0000ff;
  234. font-weight: 700;
  235. color: #ffde00;
  236. }
  237. }
  238. }
  239. .swiper-slide{
  240. display: flex;
  241. justify-content: center;
  242. }
  243. .slide--img{
  244. position: relative;
  245. .new--icon{
  246. display: inline-block;
  247. position: absolute;
  248. width: 10%;
  249. padding-bottom: 11%;
  250. background-repeat: no-repeat;
  251. bottom: 5%;
  252. right: 6%;
  253. background-image: url(../img/ico_new.png);
  254. max-width: 130px;
  255. max-height: 130px;
  256. background-size: 100%;
  257. }
  258. }
  259. .slide--desc{
  260. padding: 70px 100px;
  261. height: 380px;
  262. background-color: #fff;
  263. &.type2{
  264. padding: 40px 100px;
  265. h4{
  266. margin-bottom: 0px;
  267. }
  268. }
  269. h4{
  270. font-family: 'GmarketSans';
  271. font-weight: 700;
  272. font-size: 42px;
  273. margin-bottom: 20px;
  274. span{
  275. font-size: 28px;
  276. }
  277. }
  278. p{
  279. font-family: 'Pretendard Variable';
  280. font-size: 28px;
  281. line-height: 1.4;
  282. font-weight: 500;
  283. margin-bottom: 30px;
  284. &:last-child{
  285. margin-bottom: 0px;
  286. }
  287. }
  288. }
  289. .swiper-pagination{
  290. bottom: -100px;
  291. span{
  292. width: 32px;
  293. height: 32px;
  294. margin: 0 12px;
  295. background-color: #008be6;
  296. opacity: 0.6;
  297. }
  298. .swiper-pagination-bullet-active{
  299. background-color: #0047bb;
  300. opacity: 1;
  301. }
  302. }
  303. .swiper-button-next, .swiper-button-prev{
  304. width: 50px;
  305. background-image: url(../img/ico_arrow.png);
  306. height: 90px;
  307. top: 30%;
  308. right: -100px;
  309. &::after{
  310. display: none;
  311. }
  312. }
  313. .swiper-button-prev{
  314. transform: rotate(180deg);
  315. left: -100px;
  316. }
  317. }
  318. }
  319. }
  320. .evt--section02-1{
  321. position: relative;
  322. overflow: hidden;
  323. background: linear-gradient(to bottom, #004dee, #007ff6);
  324. &::before{
  325. content: '';
  326. background-image: url(../img/bg_4.png);
  327. background-repeat: no-repeat;
  328. background-position: bottom;
  329. display: inline-block;
  330. top: 0;
  331. z-index: 1;
  332. left: 0;
  333. position: absolute;
  334. width: 100%;
  335. height: 100%;
  336. }
  337. .cloud--img1{
  338. position: absolute;
  339. left: 0;
  340. z-index: 10;
  341. max-width: 20%;
  342. top: 100px;
  343. animation: cloudMoveLeftToRight 20s linear infinite;
  344. }
  345. .cloud--img2{
  346. position: absolute;
  347. right: 0;
  348. z-index: 10;
  349. max-width: 30%;
  350. top: 50px;
  351. animation: cloudMoveLeftToRight 30s linear infinite;
  352. }
  353. .section--container{
  354. max-width: 1920px;
  355. margin: 0 auto;
  356. .evt--1{
  357. padding: 100px 0 130px;
  358. position: relative;
  359. background-position: bottom;
  360. background-repeat: no-repeat;
  361. z-index: 1;
  362. display: flex;
  363. flex-direction: column;
  364. justify-content: center;
  365. align-items: center;
  366. h2{
  367. max-width: 682px;
  368. width: 70%;
  369. }
  370. .bg1{
  371. position: absolute;
  372. left: 15%;
  373. top: 30%;
  374. animation: floating-diag-1 4s ease-in-out infinite alternate;
  375. }
  376. .bg2{
  377. position: absolute;
  378. right: 5%;
  379. top: 30%;
  380. animation: floating-diag-2 5s ease-in-out infinite alternate;
  381. }
  382. .bg3{
  383. left: 7%;
  384. bottom: 25%;
  385. position: absolute;
  386. animation: floating-diag-3 4.5s ease-in-out infinite alternate;
  387. }
  388. .bg4{
  389. position: absolute;
  390. bottom: 25%;
  391. right: 5%;
  392. animation: floating-diag-4 6s ease-in-out infinite alternate;
  393. }
  394. .evt--box{
  395. margin-top: 50px;
  396. font-weight: 600;
  397. text-align: center;
  398. font-size: 45px;
  399. font-family: 'Pretendard Variable';
  400. color: #ffffff;
  401. line-height: 1.2;
  402. }
  403. }
  404. .evt--circle{
  405. font-family: 'Pretendard Variable';
  406. font-weight: 800;
  407. font-size: 30px;
  408. padding: 20px 40px;
  409. background-color: #00175f;
  410. color: #ffffff;
  411. border-radius: 50%;
  412. margin-bottom: 50px;
  413. display: inline-block;
  414. }
  415. h3{
  416. color: #ffffff;
  417. font-weight: 700;
  418. margin-bottom: 0;
  419. text-align: center;
  420. font-size: 56px;
  421. font-family: 'Pretendard Variable';
  422. }
  423. }
  424. }
  425. .evt--section02-2{
  426. background-color: #007ff6;
  427. position: relative;
  428. overflow: hidden;
  429. .bg1{
  430. position: absolute;
  431. left: 0;
  432. z-index: 2;
  433. bottom: 20%;
  434. max-width: 575px;
  435. width: 40%;
  436. }
  437. .bg2{
  438. max-width: 690px;
  439. width: 40%;
  440. position: absolute;
  441. right: 0;
  442. z-index: 2;
  443. bottom: 10%;
  444. }
  445. &::after{
  446. content: '';
  447. display: inline-block;
  448. bottom: 0;
  449. z-index: 1;
  450. left: 0;
  451. position: absolute;
  452. background: linear-gradient(to bottom, #007ff6, #004dee);
  453. width: 100%;
  454. height: 100%;
  455. }
  456. .section--container{
  457. max-width: 1500px;
  458. margin: 0 auto;
  459. .evt--circle{
  460. font-family: 'Pretendard Variable';
  461. font-weight: 800;
  462. font-size: 30px;
  463. padding: 20px 40px;
  464. background-color: #00175f;
  465. color: #ffffff;
  466. border-radius: 50%;
  467. margin-bottom: 50px;
  468. display: inline-block;
  469. }
  470. h3{
  471. color: #ffffff;
  472. font-weight: 700;
  473. font-size: 56px;
  474. font-family: 'Pretendard Variable';
  475. }
  476. .evt--2{
  477. padding: 120px 0 130px;
  478. position: relative;
  479. background-repeat: no-repeat;
  480. z-index: 20;
  481. display: flex;
  482. flex-direction: column;
  483. justify-content: center;
  484. align-items: center;
  485. h2{
  486. max-width: 789px;
  487. width: 90%;
  488. }
  489. h3{
  490. text-align: center;
  491. margin-bottom: 30px;
  492. }
  493. .evt--box{
  494. margin-top: 60px;
  495. margin-bottom: 70px;
  496. border-radius: 25px;
  497. background-color: rgba(0, 152, 249, 0.4);
  498. box-shadow: 0px 2px 9.5px 0.5px rgba(0, 0, 0, 0.23);
  499. font-weight: 600;
  500. padding: 75px 90px;
  501. font-size: 36px;
  502. font-family: 'Pretendard Variable';
  503. color: #ffffff;
  504. line-height: 1.2;
  505. display: flex;
  506. flex-direction: column;
  507. gap: 25px;
  508. li{
  509. list-style: none;
  510. font-size: 36px;
  511. display: flex;
  512. align-items: center;
  513. width: 100%;
  514. font-weight: 400;
  515. gap: 25px;
  516. .circle{
  517. padding: 10px 40px;
  518. width: 168px;
  519. display: inline-block;
  520. height: 60px;
  521. border-radius: 30px;
  522. background-color: #00A2FB;
  523. text-align: justify;
  524. &::after {
  525. content: "";
  526. display: inline-block;
  527. width: 100%;
  528. }
  529. }
  530. }
  531. }
  532. .evt--box2{
  533. max-width: 470px;
  534. width: 60%;
  535. }
  536. .evt--btn{
  537. border-style: solid;
  538. border-width: 3px;
  539. border-color: rgb(255, 255, 255);
  540. border-radius: 50px;
  541. display: flex;
  542. align-items: center;
  543. justify-content: center;
  544. background-color: #00175f;
  545. box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
  546. max-width: 416px;
  547. width: 100%;
  548. height: 95px;
  549. font-family: 'Pretendard Variable';
  550. font-size: 40px;
  551. font-weight: 800;
  552. text-decoration: none;
  553. color: #ffffff;
  554. }
  555. }
  556. }
  557. }
  558. .evt--section03{
  559. overflow: hidden;
  560. background: linear-gradient(to bottom,#5DBBFF 0%, #00A8FF 50%, #5DBBFF 100%);
  561. padding: 150px 0 150px;
  562. position: relative;
  563. &::before{
  564. content: '';
  565. width: 100%;
  566. height: 100%;
  567. position: absolute;
  568. top: 0;
  569. right: 0;
  570. background-position: top;
  571. z-index: 0;
  572. background-repeat: no-repeat;
  573. display: inline-block;
  574. background-image: url(../img/bg_color_2.png);
  575. }
  576. &::after{
  577. content: '';
  578. width: 100%;
  579. height: 100%;
  580. position: absolute;
  581. bottom: 0;
  582. left: 0;
  583. background-position: bottom;
  584. z-index: 0;
  585. background-repeat: no-repeat;
  586. display: inline-block;
  587. background-image: url(../img/bg_color_1.png);
  588. }
  589. .section--container{
  590. max-width: 1280px;
  591. z-index: 10;
  592. position: relative;
  593. margin: 0 auto;
  594. .section--title{
  595. text-align: center;
  596. display: flex;
  597. flex-direction: column;
  598. align-items: center;
  599. margin-bottom: 80px;
  600. h3{
  601. max-width: 750px;
  602. width: 60%;
  603. }
  604. h2{
  605. max-width: 945px;
  606. width: 70%;
  607. }
  608. .circle{
  609. margin-top: 20px;
  610. max-width: 832px;
  611. width: 70%;
  612. }
  613. }
  614. .promotion--wrap{
  615. display: flex;
  616. justify-content: center;
  617. margin-bottom: 120px;
  618. gap: 140px;
  619. .promotion{
  620. width: 400px;
  621. height: 580px;
  622. background-image: url(../img/img_bg_9.png);
  623. background-size: 100%;
  624. background-repeat: no-repeat;
  625. display: flex;
  626. align-items: center;
  627. flex-direction: column;
  628. color: #ffffff;
  629. h4{
  630. font-family: 'Pretendard Variable';
  631. font-size: 56px;
  632. font-weight: 700;
  633. line-height: 210px;
  634. margin-bottom: 0;
  635. }
  636. p{
  637. font-family: 'gmarketSans';
  638. font-size: 45px;
  639. margin-bottom: 0;
  640. }
  641. h5{
  642. line-height: 1.1;
  643. font-family: 'gmarketSans';
  644. font-size: 86px;
  645. font-weight: 800;
  646. margin-bottom: 0;
  647. span{
  648. font-size: 44px;
  649. }
  650. }
  651. }
  652. }
  653. .promotion--detail--wrap{
  654. display: flex;
  655. flex-direction: column;
  656. gap: 80px;
  657. margin-bottom: 460px;
  658. position: relative;
  659. .detail{
  660. color: #373737;
  661. background-color: #fff;
  662. border: 3px solid black;
  663. padding: 70px;
  664. border-radius: 68px;
  665. z-index: 3;
  666. position: relative;
  667. display: flex;
  668. &:nth-child(1){
  669. &::before{
  670. content: '';
  671. position: absolute;
  672. display: inline-block;
  673. width: 318px;
  674. height: 314px;
  675. top: -91px;
  676. left: -48px;
  677. background-repeat: no-repeat;
  678. background-image: url(../img/bg_wave_3.png);
  679. }
  680. }
  681. &:nth-child(2){
  682. &::before{
  683. content: '';
  684. position: absolute;
  685. display: inline-block;
  686. width: 286px;
  687. right: -125px;
  688. top: -36px;
  689. z-index: 10;
  690. height: 380px;
  691. background-repeat: no-repeat;
  692. background-image: url(../img/bg_wave_4.png);
  693. }
  694. }
  695. .detail--l{
  696. width: 70%;
  697. >span{
  698. font-size: 44px;
  699. font-weight: 700;
  700. display: inline-block;
  701. font-family: 'Pretendard Variable';
  702. text-decoration: underline;
  703. margin-bottom: 40px;
  704. }
  705. >h5{
  706. font-family: 'Pretendard Variable';
  707. font-size: 54px;
  708. font-weight: 900;
  709. margin-bottom: 40px;
  710. >span{
  711. color: #6d21ed;
  712. }
  713. }
  714. >ul{
  715. li{
  716. line-height: 1.2;
  717. font-family: 'Pretendard Variable';
  718. font-weight: 500;
  719. font-size: 38px;
  720. }
  721. }
  722. }
  723. .detail--r{
  724. width: 30%;
  725. display: flex;
  726. flex-direction: column;
  727. align-items: flex-end;
  728. justify-content: flex-end;
  729. text-align: right;
  730. >span{
  731. box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.4);
  732. background: linear-gradient(135deg, #8324ff, #5a3dfd, #0a5aff);
  733. font-family: 'Pretendard Variable';
  734. font-size: 44px;
  735. font-weight: 800;
  736. width: 130px;
  737. height: 140px;
  738. line-height: 1.2;
  739. display: flex;
  740. align-items: center;
  741. right: 100px;
  742. top: 0;
  743. justify-content: center;
  744. color: #ffffff;
  745. position: absolute;
  746. }
  747. >p{
  748. font-size: 28px;
  749. font-family: 'Pretendard Variable';
  750. font-weight: 500;
  751. margin-bottom: 10px;
  752. }
  753. .before--price{
  754. font-size: 44px;
  755. font-weight: 700;
  756. font-family: 'Pretendard Variable';
  757. position: relative;
  758. &::after{
  759. content: '';
  760. display: inline-block;
  761. width: 267px;
  762. height: 62px;
  763. position: absolute;
  764. top: 50%;
  765. left: -30px;
  766. background-image: url(../img/ico_arrow2.png);
  767. }
  768. }
  769. .after--price{
  770. font-family: 'Pretendard Variable';
  771. font-size: 66px;
  772. color: #6d21ed;
  773. font-weight: 900;
  774. }
  775. }
  776. }
  777. .detail--plus{
  778. z-index: 2;
  779. position: absolute;
  780. font-size: 38px;
  781. top: calc(100% - 55px);
  782. width: 100%;
  783. border-bottom-left-radius: 50px;
  784. border-bottom-right-radius: 50px;
  785. font-family: 'Pretendard Variable';
  786. background-color: #9EC3FE;
  787. padding: 100px 60px 60px;
  788. font-weight: 500;
  789. margin-bottom: 0;
  790. li{
  791. list-style: none;
  792. position: relative;
  793. padding-left: 30px;
  794. &::before{
  795. top: 0px;
  796. left: -0px;
  797. position: absolute;
  798. content: '*';
  799. }
  800. }
  801. strong{
  802. font-weight: 800;
  803. text-decoration: underline;
  804. }
  805. }
  806. }
  807. .count--wrap{
  808. display: flex;
  809. flex-direction: column;
  810. position: relative;
  811. z-index: 10;
  812. align-items: center;
  813. .count--txt{
  814. display: flex;
  815. align-items: flex-end;
  816. justify-content: center;
  817. gap: 20px;
  818. margin-bottom: 90px;
  819. .img--wrap{
  820. position: relative;
  821. .wch--l{
  822. position: absolute;
  823. top:0px;
  824. left:0px;
  825. width:139px;
  826. height:122px;
  827. background: url(../img/wch_l.png) no-repeat center;
  828. animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  829. transform-origin: 50% 80%; // 종의 아래쪽을 기준으로 흔들림
  830. }
  831. .wch--r{
  832. position: absolute;
  833. top:0px;
  834. right:0px;
  835. width:159px;
  836. height:121px;
  837. background: url(../img/wch_r.png) no-repeat center;
  838. animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  839. transform-origin: 50% 80%; // 종의 아래쪽을 기준으로 흔들림
  840. }
  841. &::before{
  842. content: '';
  843. display: inline-block;
  844. width: 144px;
  845. height: 80px;
  846. background-repeat: no-repeat;
  847. background-size: 100%;
  848. left: -40%;
  849. top: 30px;
  850. position: absolute;
  851. background-image: url(../img/img_15_bg1.png);
  852. }
  853. &::after{
  854. content: '';
  855. display: inline-block;
  856. width: 242px;
  857. height: 177px;
  858. background-repeat: no-repeat;
  859. background-size: 100%;
  860. right: -70%;
  861. bottom: 100px;
  862. position: absolute;
  863. background-image: url(../img/img_15_bg2.png);
  864. }
  865. }
  866. >p{
  867. color: #ffffff;
  868. font-family: 'gmarketSans';
  869. text-align: center;
  870. font-size: 46px;
  871. font-weight: 800;
  872. margin-bottom: 0;
  873. text-align: center;
  874. text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35);
  875. }
  876. }
  877. .count--num{
  878. display: flex;
  879. font-family: 'gmarketSans';
  880. gap: 10px;
  881. margin-bottom: 140px;
  882. position: relative;
  883. <<<<<<< HEAD
  884. .number{
  885. position: relative;
  886. display: inline-block;
  887. font-size: 120px;
  888. color: #ffffff;
  889. width: 140px;
  890. line-height: 1.75;
  891. font-weight: 800;
  892. height: 210px;
  893. border-radius: 20%;;
  894. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  895. &:nth-child(4){
  896. margin-left: 80px;
  897. }
  898. &:nth-child(5){
  899. margin-right: 80px;
  900. }
  901. span{
  902. display: inline-block;
  903. width: 100%;
  904. height: 100%;
  905. }
  906. }
  907. &::before{
  908. content: '';
  909. width: 210px;
  910. left: -300px;
  911. top: calc(50% - 500px);
  912. height: 1000px;
  913. =======
  914. .bbl--eft01{
  915. >>>>>>> 68e94517d6f897c8fa42310a36d0bfaf2639941f
  916. position: absolute;
  917. top:50%;
  918. transform: translateY(-50%);
  919. left:-154px;
  920. width:62px;
  921. height:266px;
  922. background: url(../img/bbl_01.png) no-repeat center;
  923. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  924. }
  925. .bbl--eft02{
  926. position: absolute;
  927. top:50%;
  928. transform: translateY(-50%);
  929. left:-226px;
  930. width:106px;
  931. height:427px;
  932. background: url(../img/bbl_02.png) no-repeat center;
  933. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  934. }
  935. <<<<<<< HEAD
  936. =======
  937. .bbl--eft03{
  938. position: absolute;
  939. top:50%;
  940. transform: translateY(-50%);
  941. left:-303px;
  942. width:146px;
  943. height:550px;
  944. background: url(../img/bbl_03.png) no-repeat center;
  945. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  946. }
  947. .bbl--eft04{
  948. position: absolute;
  949. top:50%;
  950. transform: rotate(180deg) translateY(-50%);
  951. transform-origin: top;
  952. right:-154px;
  953. width:62px;
  954. height:266px;
  955. background: url(../img/bbl_01.png) no-repeat center;
  956. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  957. }
  958. .bbl--eft05{
  959. position: absolute;
  960. top:50%;
  961. transform:rotate(180deg) translateY(-50%);
  962. transform-origin: top;
  963. right:-226px;
  964. width:106px;
  965. height:427px;
  966. background: url(../img/bbl_02.png) no-repeat center;
  967. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  968. }
  969. .bbl--eft06{
  970. position: absolute;
  971. top:50%;
  972. transform:rotate(180deg) translateY(-50%);
  973. transform-origin: top;
  974. right:-303px;
  975. width:146px;
  976. height:550px;
  977. background: url(../img/bbl_03.png) no-repeat center;
  978. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  979. }
  980. // &::before{
  981. // content: '';
  982. // width: 210px;
  983. // left: -300px;
  984. // top: calc(50% - 500px);
  985. // height: 1000px;
  986. // position: absolute;
  987. // background-repeat: no-repeat;
  988. // background-position: center;
  989. // background-image: url(../img/img_bg_10.png);
  990. // }
  991. // &::after{
  992. // content: '';
  993. // width: 210px;
  994. // right: -300px;
  995. // top: calc(50% - 500px);
  996. // height: 1000px;
  997. // position: absolute;
  998. // background-repeat: no-repeat;
  999. // background-position: center;
  1000. // transform: rotate(180deg);
  1001. // background-image: url(../img/img_bg_10.png);
  1002. // }
  1003. div{
  1004. display: flex;
  1005. gap: 30px;
  1006. align-items: center;
  1007. span{
  1008. font-size: 120px;
  1009. color: #ffffff;
  1010. background-color: #7F1BF2;
  1011. width: 140px;
  1012. font-weight: 800;
  1013. height: 210px;
  1014. display: inline-block;
  1015. line-height: 2;
  1016. text-align: center;
  1017. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  1018. border-radius: 30px;
  1019. position: relative;
  1020. z-index: 30;
  1021. perspective: 600px;
  1022. overflow: hidden;
  1023. &.flip{
  1024. animation: flipDown 0.5s ease-in-out;
  1025. }
  1026. &::before {
  1027. content: '';
  1028. width: 100%;
  1029. z-index: -1;
  1030. display: inline-block;
  1031. left: 0;
  1032. top: 0;
  1033. border-top-left-radius: 30px;
  1034. border-top-right-radius: 30px;
  1035. height: 50%;
  1036. background-color: #8b2ef4;
  1037. position: absolute;
  1038. }
  1039. }
  1040. }
  1041. >>>>>>> 68e94517d6f897c8fa42310a36d0bfaf2639941f
  1042. }
  1043. .evt--btn{
  1044. border-style: solid;
  1045. border-width: 3px;
  1046. border-color: rgb(255, 255, 255);
  1047. border-radius: 50px;
  1048. display: flex;
  1049. align-items: center;
  1050. z-index: 10;
  1051. justify-content: center;
  1052. background-color: #00175f;
  1053. box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
  1054. max-width: 416px;
  1055. width: 100%;
  1056. height: 95px;
  1057. font-family: 'Pretendard Variable';
  1058. font-size: 40px;
  1059. font-weight: 800;
  1060. text-decoration: none;
  1061. color: #ffffff;
  1062. }
  1063. }
  1064. }
  1065. }
  1066. @media(max-width: 1480px){
  1067. .section--container{
  1068. padding: 0 20px;
  1069. }
  1070. .evt--section01{
  1071. .section--container{
  1072. .swiper--wrap{
  1073. .swiper-button-next,
  1074. .swiper-button-prev{
  1075. display: none;
  1076. }
  1077. .slide--desc{
  1078. padding: 25px 50px!important;
  1079. min-height: 300px;
  1080. height: auto;
  1081. h4{
  1082. font-size: 32px;
  1083. span{
  1084. font-size: 20px;
  1085. }
  1086. }
  1087. p{
  1088. font-size: 18px;
  1089. }
  1090. }
  1091. }
  1092. }
  1093. }
  1094. .evt--section02-1{
  1095. .section--container{
  1096. .evt--1{
  1097. .bg1{
  1098. left: 0;
  1099. img{
  1100. width: 80%;
  1101. }
  1102. }
  1103. .bg2{
  1104. right: -10%;
  1105. img{
  1106. width: 80%;
  1107. }
  1108. }
  1109. .bg3{
  1110. left: 0;
  1111. bottom: 45%;
  1112. img{
  1113. width: 80%;
  1114. }
  1115. }
  1116. .bg4{
  1117. bottom: 40%;
  1118. right: -10%;
  1119. img{
  1120. width: 80%;
  1121. }
  1122. }
  1123. }
  1124. }
  1125. }
  1126. }
  1127. @media(max-width: 1200px){
  1128. .evt--section01{
  1129. .section--container{
  1130. .swiper--wrap{
  1131. .swiper--tab--wrap{
  1132. .tab--btn{
  1133. font-size: 18px;
  1134. height: 68px;
  1135. }
  1136. }
  1137. }
  1138. }
  1139. }
  1140. .evt--section02-1{
  1141. .section--container{
  1142. h3{
  1143. font-size: 36px;
  1144. }
  1145. .evt--1{
  1146. .bg1{
  1147. img{
  1148. width: 50%;
  1149. }
  1150. }
  1151. .bg2{
  1152. top: 40%;
  1153. right: -30%;
  1154. img{
  1155. width: 50%;
  1156. }
  1157. }
  1158. .bg3{
  1159. img{
  1160. width: 50%;
  1161. }
  1162. }
  1163. .bg4{
  1164. right: -240px;
  1165. img{
  1166. width: 50%;
  1167. }
  1168. }
  1169. }
  1170. }
  1171. }
  1172. .evt--section02-2{
  1173. .bg1{
  1174. bottom: auto;
  1175. top: 5%;
  1176. }
  1177. .bg2{
  1178. bottom: auto;
  1179. top: 5%;
  1180. }
  1181. .section--container{
  1182. h3{
  1183. font-size: 36px;
  1184. }
  1185. .evt--2{
  1186. .evt--box{
  1187. padding: 30px;
  1188. li{
  1189. font-size: 30px;
  1190. }
  1191. }
  1192. }
  1193. }
  1194. }
  1195. .evt--section03{
  1196. .section--container{
  1197. .promotion--detail--wrap{
  1198. gap: 40px;
  1199. .detail{
  1200. padding: 50px;
  1201. .detail--l{
  1202. >span{
  1203. font-size: 32px;
  1204. margin-bottom: 20px;
  1205. }
  1206. >h5{
  1207. font-size: 48px;
  1208. line-height: 1.4;
  1209. }
  1210. >ul{
  1211. padding-left: 24px;
  1212. li{
  1213. font-size: 24px;
  1214. line-height: 1.4;
  1215. }
  1216. }
  1217. }
  1218. .detail--r{
  1219. >span{
  1220. right: 50px;
  1221. }
  1222. >p{
  1223. font-size: 24px;
  1224. }
  1225. .before--price{
  1226. font-size: 32px;
  1227. &::after{
  1228. transform: scaleX(-1);
  1229. left: auto;
  1230. right: -10px;
  1231. }
  1232. }
  1233. .after--price{
  1234. font-size: 48px;
  1235. }
  1236. }
  1237. }
  1238. .detail--plus{
  1239. font-size: 24px;
  1240. li{
  1241. padding-left: 20px;
  1242. }
  1243. }
  1244. }
  1245. .count--wrap{
  1246. > p{
  1247. font-size: 30px;
  1248. }
  1249. .count--txt{
  1250. >p{
  1251. font-size: 30px;
  1252. }
  1253. }
  1254. .count--num{
  1255. width: 100%;
  1256. justify-content: center;
  1257. gap: 5%;
  1258. div{
  1259. width: 33%;
  1260. gap: 5%;
  1261. justify-content: center;
  1262. span{
  1263. font-size: 120px;
  1264. width: 50%;
  1265. height: auto;
  1266. }
  1267. }
  1268. }
  1269. }
  1270. }
  1271. }
  1272. }
  1273. @media(max-width: 1000px){
  1274. .evt--section01{
  1275. .section--container{
  1276. .bg2{
  1277. display: none;
  1278. }
  1279. .bg4{
  1280. display: none;
  1281. }
  1282. .swiper--wrap{
  1283. .swiper--tab--wrap{
  1284. overflow-x: auto;
  1285. white-space: nowrap;
  1286. width: auto;
  1287. .tab--btn{
  1288. width: fit-content;
  1289. height: auto;
  1290. padding: 15px 15px 10px;
  1291. flex-shrink: 0;
  1292. &:first-child{
  1293. &::before{
  1294. font-size: 10px;
  1295. }
  1296. }
  1297. }
  1298. }
  1299. .swiper-pagination{
  1300. span{
  1301. width: 24px;
  1302. height: 24px;
  1303. }
  1304. }
  1305. .slide--desc{
  1306. padding: 25px 15px!important;
  1307. min-height: 240px;
  1308. h4{
  1309. font-size: 24px;
  1310. margin-bottom: 15px;
  1311. span{
  1312. font-size: 16px;
  1313. }
  1314. }
  1315. p{
  1316. margin-bottom: 15px;
  1317. font-size: 14px;
  1318. }
  1319. }
  1320. }
  1321. }
  1322. }
  1323. .evt--section03{
  1324. .section--container{
  1325. .promotion--wrap{
  1326. gap: 20px;
  1327. .promotion{
  1328. h4{
  1329. font-size: 32px;
  1330. }
  1331. p{
  1332. font-size: 32px;
  1333. }
  1334. h5{
  1335. font-size: 72px;
  1336. }
  1337. }
  1338. }
  1339. .promotion--detail--wrap{
  1340. gap: 20px;
  1341. .detail{
  1342. .detail--l{
  1343. >span{
  1344. font-size: 24px;
  1345. margin-bottom: 15px;
  1346. }
  1347. >h5{
  1348. font-size: 36px;
  1349. }
  1350. >ul{
  1351. li{
  1352. font-size: 18px;
  1353. }
  1354. }
  1355. }
  1356. .detail--r{
  1357. >span{
  1358. font-size: 24px;
  1359. width: 80px;
  1360. height: 90px;
  1361. }
  1362. >p{
  1363. font-size: 18px;
  1364. }
  1365. .before--price{
  1366. font-size: 24px;
  1367. &::after{
  1368. right: -10px;
  1369. height: 50px;
  1370. top: 15px;
  1371. background-size: cover;
  1372. width: 210px;
  1373. background-position: left;
  1374. transform: scaleX(1);
  1375. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='50' viewBox='0 0 88 20' fill='none'%3E%3Cpath d='M1 1V0.5H0.265087L0.534922 1.18358L1 1ZM8.5 20L9.34929 14.2893L3.97904 16.4091L8.5 20ZM87.5 1V0.5H1V1V1.5H87.5V1ZM1 1L0.534922 1.18358L6.38267 15.9979L6.84775 15.8143L7.31283 15.6307L1.46508 0.816417L1 1Z' fill='%23373737'/%3E%3C/svg%3E");
  1376. }
  1377. }
  1378. .after--price{
  1379. font-size: 36px;
  1380. }
  1381. }
  1382. }
  1383. .detail--plus{
  1384. padding: 80px 30px 30px;
  1385. font-size: 18px;
  1386. }
  1387. }
  1388. .count--wrap{
  1389. .count--txt{
  1390. margin-bottom: 50px;
  1391. flex-direction: column;
  1392. align-items: center;
  1393. .img--wrap{
  1394. width: 50%;
  1395. &::before{
  1396. width: 70px;
  1397. top: 0px;
  1398. }
  1399. &::after{
  1400. bottom: auto;
  1401. width: 100px;
  1402. right: -50%;
  1403. top: 50%;
  1404. transform: translateY(-50%);
  1405. }
  1406. }
  1407. }
  1408. .count--num{
  1409. div{
  1410. .day--text{
  1411. &::after{
  1412. width: 30px;
  1413. right: auto;
  1414. left: calc(100% + 10px);
  1415. background-size: 100%;
  1416. }
  1417. }
  1418. span{
  1419. font-size: 100px;
  1420. }
  1421. }
  1422. }
  1423. }
  1424. }
  1425. }
  1426. }
  1427. @media(max-width: 767px){
  1428. .evt--section01{
  1429. .section--container{
  1430. .section--title{
  1431. .bg--wave--wrap{
  1432. top: 120px;
  1433. .bg--wave{
  1434. height: 300px;
  1435. width: 450px;
  1436. .bg--wave2{
  1437. display: none;
  1438. }
  1439. }
  1440. }
  1441. }
  1442. }
  1443. }
  1444. .evt--section02-1{
  1445. .section--container{
  1446. .evt--1{
  1447. .bg1{
  1448. top: 10%;
  1449. }
  1450. .bg2{
  1451. right: -320px;
  1452. top: 5%;
  1453. }
  1454. .bg3{
  1455. bottom: auto;
  1456. top: 30%;
  1457. }
  1458. .bg4{
  1459. bottom: auto;
  1460. right: -240px;
  1461. top: 35%;
  1462. }
  1463. .evt--circle{
  1464. font-size: 18px;
  1465. padding: 10px 20px;
  1466. margin-bottom: 30px;
  1467. }
  1468. h3{
  1469. font-size: 20px;
  1470. }
  1471. }
  1472. }
  1473. }
  1474. .evt--section02-2{
  1475. .section--container{
  1476. .evt--2{
  1477. .evt--box{
  1478. width: 100%;
  1479. li{
  1480. gap: 10px;
  1481. font-size: 18px;
  1482. .circle{
  1483. padding: 10px 30px;
  1484. height: auto;
  1485. width: auto;
  1486. &::after{
  1487. display: none;
  1488. }
  1489. }
  1490. }
  1491. }
  1492. .evt--circle{
  1493. font-size: 18px;
  1494. padding: 10px 20px;
  1495. margin-bottom: 30px;
  1496. }
  1497. h3{
  1498. font-size: 20px;
  1499. }
  1500. .evt--btn{
  1501. font-size: 24px;
  1502. height: 80px;
  1503. }
  1504. }
  1505. }
  1506. }
  1507. .evt--section03{
  1508. .section--container{
  1509. .promotion--wrap{
  1510. margin-bottom: 40px;
  1511. .promotion{
  1512. height: 450px;
  1513. h4{
  1514. font-size: 20px;
  1515. line-height: 24vw;
  1516. }
  1517. p{
  1518. font-size: 20px;
  1519. }
  1520. h5{
  1521. font-size: 48px;
  1522. }
  1523. }
  1524. }
  1525. .promotion--detail--wrap{
  1526. .detail{
  1527. flex-direction: column;
  1528. padding: 30px;
  1529. gap: 15px;
  1530. border-radius: 20px;
  1531. &::before{
  1532. display: none!important;
  1533. }
  1534. .detail--l{
  1535. width: 100%;
  1536. >span{
  1537. font-size: 18px;
  1538. }
  1539. >h5{
  1540. font-size: 24px;
  1541. margin-bottom: 20px;
  1542. }
  1543. }
  1544. .detail--r{
  1545. width: 100%;
  1546. >span{
  1547. font-size: 18px;
  1548. width: 60px;
  1549. height: 70px;
  1550. right: 30px;
  1551. }
  1552. >p{
  1553. margin-bottom: 0;
  1554. }
  1555. .before--price{
  1556. font-size: 18px;
  1557. &::after{
  1558. width: 140px;
  1559. height: 30px;
  1560. top: 12px;
  1561. }
  1562. }
  1563. .after--price{
  1564. font-size: 24px;
  1565. }
  1566. }
  1567. }
  1568. .detail--plus{
  1569. border-bottom-left-radius: 20px;
  1570. border-bottom-right-radius: 20px;
  1571. font-size: 14px;
  1572. }
  1573. }
  1574. .count--wrap{
  1575. .evt--btn{
  1576. font-size: 24px;
  1577. height: 80px;
  1578. }
  1579. .count--txt{
  1580. >p{
  1581. font-size: 20px;
  1582. }
  1583. }
  1584. .count--num{
  1585. div{
  1586. .day--text{
  1587. &::after{
  1588. width: 20px;
  1589. }
  1590. }
  1591. span{
  1592. border-radius: 8px;
  1593. font-size: 48px;
  1594. padding: 20px 0;
  1595. &::before{
  1596. border-top-left-radius: 8px;
  1597. border-top-right-radius: 8px;
  1598. }
  1599. }
  1600. }
  1601. }
  1602. }
  1603. }
  1604. }
  1605. }
  1606. @media(max-width: 500px){
  1607. .evt--section01{
  1608. .section--container{
  1609. .swiper--wrap{
  1610. margin-bottom: 50px;
  1611. .swiper--tab--wrap{
  1612. .tab--btn{
  1613. font-size: 16px;
  1614. }
  1615. }
  1616. .swiper-pagination{
  1617. span{
  1618. width: 14px;
  1619. height: 14px;
  1620. margin: 0 5px;
  1621. }
  1622. }
  1623. .slide--desc{
  1624. padding: 25px 15px!important;
  1625. min-height: 200px;
  1626. height: 100%;
  1627. h4{
  1628. font-size: 18px;
  1629. span{
  1630. font-size: 12px;
  1631. }
  1632. }
  1633. p{
  1634. font-size: 14px;
  1635. }
  1636. }
  1637. }
  1638. }
  1639. }
  1640. .evt--section02-1{
  1641. .section--container{
  1642. .evt--1{
  1643. .bg1{
  1644. img{
  1645. }
  1646. }
  1647. .bg2{
  1648. top: 2%;
  1649. right: -360px;
  1650. img{
  1651. width: 45%;
  1652. }
  1653. }
  1654. .bg3{
  1655. top: 32%;
  1656. }
  1657. }
  1658. }
  1659. }
  1660. .evt--section02-2{
  1661. .section--container{
  1662. .evt--2{
  1663. .evt--box{
  1664. li{
  1665. font-size: 14px;
  1666. .circle{
  1667. padding: 5px 15px;
  1668. white-space: nowrap;
  1669. }
  1670. }
  1671. padding: 20px;
  1672. }
  1673. }
  1674. }
  1675. }
  1676. .evt--section03{
  1677. .section--container{
  1678. .promotion--wrap{
  1679. .promotion{
  1680. height: 300px;
  1681. h4{
  1682. font-size: 16px;
  1683. margin-bottom: 0px;
  1684. line-height: 22vw;
  1685. }
  1686. p{
  1687. font-size: 16px;
  1688. margin-bottom: 0px;
  1689. }
  1690. h5{
  1691. font-size: 36px;
  1692. span{
  1693. font-size: 24px;
  1694. }
  1695. }
  1696. }
  1697. }
  1698. .count--wrap{
  1699. .count--num{
  1700. div{
  1701. .day--text{
  1702. &::after{
  1703. width: 10px;
  1704. }
  1705. }
  1706. span{
  1707. font-size: 24px;
  1708. padding: 15px 0;
  1709. }
  1710. }
  1711. }
  1712. }
  1713. }
  1714. }
  1715. }
  1716. /*===============================================
  1717. 에니메이션
  1718. ===============================================*/
  1719. .floating {
  1720. animation: floating 3s ease-in-out infinite;
  1721. }
  1722. @keyframes floating {
  1723. 0% { transform: translateY(0px); }
  1724. 50% { transform: translateY(-20px); }
  1725. 100% { transform: translateY(0px); }
  1726. }
  1727. @keyframes fadeUpLogo {
  1728. to {
  1729. opacity: 1;
  1730. transform: translateY(0);
  1731. }
  1732. }
  1733. @keyframes fadeInRightH1 {
  1734. to {
  1735. opacity: 1;
  1736. transform: translateX(0);
  1737. }
  1738. }
  1739. @keyframes fadeInLeftH2 {
  1740. to {
  1741. opacity: 1;
  1742. transform: translateX(0);
  1743. }
  1744. }
  1745. @keyframes fadeUpH3 {
  1746. to {
  1747. opacity: 1;
  1748. transform: translateY(0);
  1749. }
  1750. }
  1751. @keyframes waveInRight {
  1752. 0% {
  1753. opacity: 0;
  1754. transform: translateX(-100px);
  1755. }
  1756. 60% {
  1757. opacity: 1;
  1758. transform: translateX(20px);
  1759. }
  1760. 100% {
  1761. opacity: 1;
  1762. transform: translateX(0);
  1763. }
  1764. }
  1765. @keyframes cloudMoveLeftToRight {
  1766. 0% {
  1767. transform: translateX(0px);
  1768. }
  1769. 100% {
  1770. transform: translateX(100px);
  1771. }
  1772. }
  1773. @keyframes floating-diag-1 {
  1774. 0% { transform: translate(0, 0); }
  1775. 20% { transform: translate(-10px, 10px);}
  1776. 40% { transform: translate(10px, -10px);}
  1777. 60% { transform: translate(-10px, -10px);}
  1778. 80% { transform: translate(10px, 10px);}
  1779. 100% { transform: translate(0, 0);}
  1780. }
  1781. @keyframes floating-diag-2 {
  1782. 0% { transform: translate(0, 0); }
  1783. 25% { transform: translate(12px, -8px);}
  1784. 50% { transform: translate(-12px, 8px);}
  1785. 75% { transform: translate(8px, 12px);}
  1786. 100% { transform: translate(0, 0);}
  1787. }
  1788. @keyframes floating-diag-3 {
  1789. 0% { transform: translate(0, 0);}
  1790. 30% { transform: translate(-8px, 12px);}
  1791. 60% { transform: translate(8px, -12px);}
  1792. 100% { transform: translate(0, 0);}
  1793. }
  1794. @keyframes floating-diag-4 {
  1795. 0% { transform: translate(0, 0);}
  1796. 20% { transform: translate(10px, 10px);}
  1797. 40% { transform: translate(-10px, -10px);}
  1798. 60% { transform: translate(10px, -10px);}
  1799. 80% { transform: translate(-10px, 10px);}
  1800. 100% { transform: translate(0, 0);}
  1801. }
  1802. @keyframes shakeX {
  1803. 0% { transform: translateY(-50%) translateX(0); }
  1804. 10%, 30%, 50%, 70%, 90% { transform: translateY(-50%) translateX(-8px); }
  1805. 20%, 40%, 60%, 80% { transform: translateY(-50%) translateX(8px); }
  1806. 100% { transform: translateY(-50%) translateX(0); }
  1807. }
  1808. @keyframes shakeX2 {
  1809. 0% { transform: rotate(180deg) translateY(-50%) translateX(0); }
  1810. 10%, 30%, 50%, 70%, 90% { transform: rotate(180deg) translateY(-50%) translateX(-8px); }
  1811. 20%, 40%, 60%, 80% { transform: rotate(180deg) translateY(-50%) translateX(8px); }
  1812. 100% { transform: rotate(180deg) translateY(-50%) translateX(0); }
  1813. }
  1814. @keyframes bellRing {
  1815. 0% { transform: rotate(0deg); }
  1816. 10% { transform: rotate(-18deg); }
  1817. 20% { transform: rotate(16deg); }
  1818. 30% { transform: rotate(-12deg); }
  1819. 40% { transform: rotate(10deg); }
  1820. 50% { transform: rotate(-6deg); }
  1821. 60% { transform: rotate(4deg); }
  1822. 70% { transform: rotate(-2deg); }
  1823. 80%, 100% { transform: rotate(0deg); }
  1824. }