style.scss 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839
  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. .number{
  884. position: relative;
  885. display: inline-block;
  886. font-size: 120px;
  887. color: #ffffff;
  888. width: 140px;
  889. line-height: 1.75;
  890. font-weight: 800;
  891. height: 210px;
  892. border-radius: 20%;;
  893. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  894. &:nth-child(4){
  895. margin-left: 80px;
  896. }
  897. &:nth-child(5){
  898. margin-right: 80px;
  899. }
  900. span{
  901. display: inline-block;
  902. width: 100%;
  903. height: 100%;
  904. }
  905. }
  906. &::before{
  907. content: '';
  908. width: 210px;
  909. left: -300px;
  910. top: calc(50% - 500px);
  911. height: 1000px;
  912. position: absolute;
  913. top:50%;
  914. transform: translateY(-50%);
  915. left:-154px;
  916. width:62px;
  917. height:266px;
  918. background: url(../img/bbl_01.png) no-repeat center;
  919. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  920. }
  921. .bbl--eft02{
  922. position: absolute;
  923. top:50%;
  924. transform: translateY(-50%);
  925. left:-226px;
  926. width:106px;
  927. height:427px;
  928. background: url(../img/bbl_02.png) no-repeat center;
  929. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  930. }
  931. .bbl--eft03{
  932. position: absolute;
  933. top:50%;
  934. transform: translateY(-50%);
  935. left:-303px;
  936. width:146px;
  937. height:550px;
  938. background: url(../img/bbl_03.png) no-repeat center;
  939. animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  940. }
  941. .bbl--eft04{
  942. position: absolute;
  943. top:50%;
  944. transform: rotate(180deg) translateY(-50%);
  945. transform-origin: top;
  946. right:-154px;
  947. width:62px;
  948. height:266px;
  949. background: url(../img/bbl_01.png) no-repeat center;
  950. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  951. }
  952. .bbl--eft05{
  953. position: absolute;
  954. top:50%;
  955. transform:rotate(180deg) translateY(-50%);
  956. transform-origin: top;
  957. right:-226px;
  958. width:106px;
  959. height:427px;
  960. background: url(../img/bbl_02.png) no-repeat center;
  961. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  962. }
  963. .bbl--eft06{
  964. position: absolute;
  965. top:50%;
  966. transform:rotate(180deg) translateY(-50%);
  967. transform-origin: top;
  968. right:-303px;
  969. width:146px;
  970. height:550px;
  971. background: url(../img/bbl_03.png) no-repeat center;
  972. animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  973. }
  974. // &::before{
  975. // content: '';
  976. // width: 210px;
  977. // left: -300px;
  978. // top: calc(50% - 500px);
  979. // height: 1000px;
  980. // position: absolute;
  981. // background-repeat: no-repeat;
  982. // background-position: center;
  983. // background-image: url(../img/img_bg_10.png);
  984. // }
  985. // &::after{
  986. // content: '';
  987. // width: 210px;
  988. // right: -300px;
  989. // top: calc(50% - 500px);
  990. // height: 1000px;
  991. // position: absolute;
  992. // background-repeat: no-repeat;
  993. // background-position: center;
  994. // transform: rotate(180deg);
  995. // background-image: url(../img/img_bg_10.png);
  996. // }
  997. div{
  998. display: flex;
  999. gap: 30px;
  1000. align-items: center;
  1001. span{
  1002. font-size: 120px;
  1003. color: #ffffff;
  1004. background-color: #7F1BF2;
  1005. width: 140px;
  1006. font-weight: 800;
  1007. height: 210px;
  1008. display: inline-block;
  1009. line-height: 2;
  1010. text-align: center;
  1011. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  1012. border-radius: 30px;
  1013. position: relative;
  1014. z-index: 30;
  1015. perspective: 600px;
  1016. overflow: hidden;
  1017. &.flip{
  1018. animation: flipDown 0.5s ease-in-out;
  1019. }
  1020. &::before {
  1021. content: '';
  1022. width: 100%;
  1023. z-index: -1;
  1024. display: inline-block;
  1025. left: 0;
  1026. top: 0;
  1027. border-top-left-radius: 30px;
  1028. border-top-right-radius: 30px;
  1029. height: 50%;
  1030. background-color: #8b2ef4;
  1031. position: absolute;
  1032. }
  1033. }
  1034. }
  1035. }
  1036. .evt--btn{
  1037. border-style: solid;
  1038. border-width: 3px;
  1039. border-color: rgb(255, 255, 255);
  1040. border-radius: 50px;
  1041. display: flex;
  1042. align-items: center;
  1043. z-index: 10;
  1044. justify-content: center;
  1045. background-color: #00175f;
  1046. box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
  1047. max-width: 416px;
  1048. width: 100%;
  1049. height: 95px;
  1050. font-family: 'Pretendard Variable';
  1051. font-size: 40px;
  1052. font-weight: 800;
  1053. text-decoration: none;
  1054. color: #ffffff;
  1055. }
  1056. }
  1057. }
  1058. }
  1059. @media(max-width: 1480px){
  1060. .section--container{
  1061. padding: 0 20px;
  1062. }
  1063. .evt--section01{
  1064. .section--container{
  1065. .swiper--wrap{
  1066. .swiper-button-next,
  1067. .swiper-button-prev{
  1068. display: none;
  1069. }
  1070. .slide--desc{
  1071. padding: 25px 50px!important;
  1072. min-height: 300px;
  1073. height: auto;
  1074. h4{
  1075. font-size: 32px;
  1076. span{
  1077. font-size: 20px;
  1078. }
  1079. }
  1080. p{
  1081. font-size: 18px;
  1082. }
  1083. }
  1084. }
  1085. }
  1086. }
  1087. .evt--section02-1{
  1088. .section--container{
  1089. .evt--1{
  1090. .bg1{
  1091. left: 0;
  1092. img{
  1093. width: 80%;
  1094. }
  1095. }
  1096. .bg2{
  1097. right: -10%;
  1098. img{
  1099. width: 80%;
  1100. }
  1101. }
  1102. .bg3{
  1103. left: 0;
  1104. bottom: 45%;
  1105. img{
  1106. width: 80%;
  1107. }
  1108. }
  1109. .bg4{
  1110. bottom: 40%;
  1111. right: -10%;
  1112. img{
  1113. width: 80%;
  1114. }
  1115. }
  1116. }
  1117. }
  1118. }
  1119. }
  1120. @media(max-width: 1200px){
  1121. .evt--section01{
  1122. .section--container{
  1123. .swiper--wrap{
  1124. .swiper--tab--wrap{
  1125. .tab--btn{
  1126. font-size: 18px;
  1127. height: 68px;
  1128. }
  1129. }
  1130. }
  1131. }
  1132. }
  1133. .evt--section02-1{
  1134. .section--container{
  1135. h3{
  1136. font-size: 36px;
  1137. }
  1138. .evt--1{
  1139. .bg1{
  1140. img{
  1141. width: 50%;
  1142. }
  1143. }
  1144. .bg2{
  1145. top: 40%;
  1146. right: -30%;
  1147. img{
  1148. width: 50%;
  1149. }
  1150. }
  1151. .bg3{
  1152. img{
  1153. width: 50%;
  1154. }
  1155. }
  1156. .bg4{
  1157. right: -240px;
  1158. img{
  1159. width: 50%;
  1160. }
  1161. }
  1162. }
  1163. }
  1164. }
  1165. .evt--section02-2{
  1166. .bg1{
  1167. bottom: auto;
  1168. top: 5%;
  1169. }
  1170. .bg2{
  1171. bottom: auto;
  1172. top: 5%;
  1173. }
  1174. .section--container{
  1175. h3{
  1176. font-size: 36px;
  1177. }
  1178. .evt--2{
  1179. .evt--box{
  1180. padding: 30px;
  1181. li{
  1182. font-size: 30px;
  1183. }
  1184. }
  1185. }
  1186. }
  1187. }
  1188. .evt--section03{
  1189. .section--container{
  1190. .promotion--detail--wrap{
  1191. gap: 40px;
  1192. .detail{
  1193. padding: 50px;
  1194. .detail--l{
  1195. >span{
  1196. font-size: 32px;
  1197. margin-bottom: 20px;
  1198. }
  1199. >h5{
  1200. font-size: 48px;
  1201. line-height: 1.4;
  1202. }
  1203. >ul{
  1204. padding-left: 24px;
  1205. li{
  1206. font-size: 24px;
  1207. line-height: 1.4;
  1208. }
  1209. }
  1210. }
  1211. .detail--r{
  1212. >span{
  1213. right: 50px;
  1214. }
  1215. >p{
  1216. font-size: 24px;
  1217. }
  1218. .before--price{
  1219. font-size: 32px;
  1220. &::after{
  1221. transform: scaleX(-1);
  1222. left: auto;
  1223. right: -10px;
  1224. }
  1225. }
  1226. .after--price{
  1227. font-size: 48px;
  1228. }
  1229. }
  1230. }
  1231. .detail--plus{
  1232. font-size: 24px;
  1233. li{
  1234. padding-left: 20px;
  1235. }
  1236. }
  1237. }
  1238. .count--wrap{
  1239. > p{
  1240. font-size: 30px;
  1241. }
  1242. .count--txt{
  1243. >p{
  1244. font-size: 30px;
  1245. }
  1246. }
  1247. .count--num{
  1248. width: 100%;
  1249. justify-content: center;
  1250. gap: 5%;
  1251. div{
  1252. width: 33%;
  1253. gap: 5%;
  1254. justify-content: center;
  1255. span{
  1256. font-size: 120px;
  1257. width: 50%;
  1258. height: auto;
  1259. }
  1260. }
  1261. }
  1262. }
  1263. }
  1264. }
  1265. }
  1266. @media(max-width: 1000px){
  1267. .evt--section01{
  1268. .section--container{
  1269. .bg2{
  1270. display: none;
  1271. }
  1272. .bg4{
  1273. display: none;
  1274. }
  1275. .swiper--wrap{
  1276. .swiper--tab--wrap{
  1277. overflow-x: auto;
  1278. white-space: nowrap;
  1279. width: auto;
  1280. .tab--btn{
  1281. width: fit-content;
  1282. height: auto;
  1283. padding: 15px 15px 10px;
  1284. flex-shrink: 0;
  1285. &:first-child{
  1286. &::before{
  1287. font-size: 10px;
  1288. }
  1289. }
  1290. }
  1291. }
  1292. .swiper-pagination{
  1293. span{
  1294. width: 24px;
  1295. height: 24px;
  1296. }
  1297. }
  1298. .slide--desc{
  1299. padding: 25px 15px!important;
  1300. min-height: 240px;
  1301. h4{
  1302. font-size: 24px;
  1303. margin-bottom: 15px;
  1304. span{
  1305. font-size: 16px;
  1306. }
  1307. }
  1308. p{
  1309. margin-bottom: 15px;
  1310. font-size: 14px;
  1311. }
  1312. }
  1313. }
  1314. }
  1315. }
  1316. .evt--section03{
  1317. .section--container{
  1318. .promotion--wrap{
  1319. gap: 20px;
  1320. .promotion{
  1321. h4{
  1322. font-size: 32px;
  1323. }
  1324. p{
  1325. font-size: 32px;
  1326. }
  1327. h5{
  1328. font-size: 72px;
  1329. }
  1330. }
  1331. }
  1332. .promotion--detail--wrap{
  1333. gap: 20px;
  1334. .detail{
  1335. .detail--l{
  1336. >span{
  1337. font-size: 24px;
  1338. margin-bottom: 15px;
  1339. }
  1340. >h5{
  1341. font-size: 36px;
  1342. }
  1343. >ul{
  1344. li{
  1345. font-size: 18px;
  1346. }
  1347. }
  1348. }
  1349. .detail--r{
  1350. >span{
  1351. font-size: 24px;
  1352. width: 80px;
  1353. height: 90px;
  1354. }
  1355. >p{
  1356. font-size: 18px;
  1357. }
  1358. .before--price{
  1359. font-size: 24px;
  1360. &::after{
  1361. right: -10px;
  1362. height: 50px;
  1363. top: 15px;
  1364. background-size: cover;
  1365. width: 210px;
  1366. background-position: left;
  1367. transform: scaleX(1);
  1368. 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");
  1369. }
  1370. }
  1371. .after--price{
  1372. font-size: 36px;
  1373. }
  1374. }
  1375. }
  1376. .detail--plus{
  1377. padding: 80px 30px 30px;
  1378. font-size: 18px;
  1379. }
  1380. }
  1381. .count--wrap{
  1382. .count--txt{
  1383. margin-bottom: 50px;
  1384. flex-direction: column;
  1385. align-items: center;
  1386. .img--wrap{
  1387. width: 50%;
  1388. &::before{
  1389. width: 70px;
  1390. top: 0px;
  1391. }
  1392. &::after{
  1393. bottom: auto;
  1394. width: 100px;
  1395. right: -50%;
  1396. top: 50%;
  1397. transform: translateY(-50%);
  1398. }
  1399. }
  1400. }
  1401. .count--num{
  1402. div{
  1403. .day--text{
  1404. &::after{
  1405. width: 30px;
  1406. right: auto;
  1407. left: calc(100% + 10px);
  1408. background-size: 100%;
  1409. }
  1410. }
  1411. span{
  1412. font-size: 100px;
  1413. }
  1414. }
  1415. }
  1416. }
  1417. }
  1418. }
  1419. }
  1420. @media(max-width: 767px){
  1421. .evt--section01{
  1422. .section--container{
  1423. .section--title{
  1424. .bg--wave--wrap{
  1425. top: 120px;
  1426. .bg--wave{
  1427. height: 300px;
  1428. width: 450px;
  1429. .bg--wave2{
  1430. display: none;
  1431. }
  1432. }
  1433. }
  1434. }
  1435. }
  1436. }
  1437. .evt--section02-1{
  1438. .section--container{
  1439. .evt--1{
  1440. .bg1{
  1441. top: 10%;
  1442. }
  1443. .bg2{
  1444. right: -320px;
  1445. top: 5%;
  1446. }
  1447. .bg3{
  1448. bottom: auto;
  1449. top: 30%;
  1450. }
  1451. .bg4{
  1452. bottom: auto;
  1453. right: -240px;
  1454. top: 35%;
  1455. }
  1456. .evt--circle{
  1457. font-size: 18px;
  1458. padding: 10px 20px;
  1459. margin-bottom: 30px;
  1460. }
  1461. h3{
  1462. font-size: 20px;
  1463. }
  1464. }
  1465. }
  1466. }
  1467. .evt--section02-2{
  1468. .section--container{
  1469. .evt--2{
  1470. .evt--box{
  1471. width: 100%;
  1472. li{
  1473. gap: 10px;
  1474. font-size: 18px;
  1475. .circle{
  1476. padding: 10px 30px;
  1477. height: auto;
  1478. width: auto;
  1479. &::after{
  1480. display: none;
  1481. }
  1482. }
  1483. }
  1484. }
  1485. .evt--circle{
  1486. font-size: 18px;
  1487. padding: 10px 20px;
  1488. margin-bottom: 30px;
  1489. }
  1490. h3{
  1491. font-size: 20px;
  1492. }
  1493. .evt--btn{
  1494. font-size: 24px;
  1495. height: 80px;
  1496. }
  1497. }
  1498. }
  1499. }
  1500. .evt--section03{
  1501. .section--container{
  1502. .promotion--wrap{
  1503. margin-bottom: 40px;
  1504. .promotion{
  1505. height: 450px;
  1506. h4{
  1507. font-size: 20px;
  1508. line-height: 24vw;
  1509. }
  1510. p{
  1511. font-size: 20px;
  1512. }
  1513. h5{
  1514. font-size: 48px;
  1515. }
  1516. }
  1517. }
  1518. .promotion--detail--wrap{
  1519. .detail{
  1520. flex-direction: column;
  1521. padding: 30px;
  1522. gap: 15px;
  1523. border-radius: 20px;
  1524. &::before{
  1525. display: none!important;
  1526. }
  1527. .detail--l{
  1528. width: 100%;
  1529. >span{
  1530. font-size: 18px;
  1531. }
  1532. >h5{
  1533. font-size: 24px;
  1534. margin-bottom: 20px;
  1535. }
  1536. }
  1537. .detail--r{
  1538. width: 100%;
  1539. >span{
  1540. font-size: 18px;
  1541. width: 60px;
  1542. height: 70px;
  1543. right: 30px;
  1544. }
  1545. >p{
  1546. margin-bottom: 0;
  1547. }
  1548. .before--price{
  1549. font-size: 18px;
  1550. &::after{
  1551. width: 140px;
  1552. height: 30px;
  1553. top: 12px;
  1554. }
  1555. }
  1556. .after--price{
  1557. font-size: 24px;
  1558. }
  1559. }
  1560. }
  1561. .detail--plus{
  1562. border-bottom-left-radius: 20px;
  1563. border-bottom-right-radius: 20px;
  1564. font-size: 14px;
  1565. }
  1566. }
  1567. .count--wrap{
  1568. .evt--btn{
  1569. font-size: 24px;
  1570. height: 80px;
  1571. }
  1572. .count--txt{
  1573. >p{
  1574. font-size: 20px;
  1575. }
  1576. }
  1577. .count--num{
  1578. div{
  1579. .day--text{
  1580. &::after{
  1581. width: 20px;
  1582. }
  1583. }
  1584. span{
  1585. border-radius: 8px;
  1586. font-size: 48px;
  1587. padding: 20px 0;
  1588. &::before{
  1589. border-top-left-radius: 8px;
  1590. border-top-right-radius: 8px;
  1591. }
  1592. }
  1593. }
  1594. }
  1595. }
  1596. }
  1597. }
  1598. }
  1599. @media(max-width: 500px){
  1600. .evt--section01{
  1601. .section--container{
  1602. .swiper--wrap{
  1603. margin-bottom: 50px;
  1604. .swiper--tab--wrap{
  1605. .tab--btn{
  1606. font-size: 16px;
  1607. }
  1608. }
  1609. .swiper-pagination{
  1610. span{
  1611. width: 14px;
  1612. height: 14px;
  1613. margin: 0 5px;
  1614. }
  1615. }
  1616. .slide--desc{
  1617. padding: 25px 15px!important;
  1618. min-height: 200px;
  1619. height: 100%;
  1620. h4{
  1621. font-size: 18px;
  1622. span{
  1623. font-size: 12px;
  1624. }
  1625. }
  1626. p{
  1627. font-size: 14px;
  1628. }
  1629. }
  1630. }
  1631. }
  1632. }
  1633. .evt--section02-1{
  1634. .section--container{
  1635. .evt--1{
  1636. .bg1{
  1637. img{
  1638. }
  1639. }
  1640. .bg2{
  1641. top: 2%;
  1642. right: -360px;
  1643. img{
  1644. width: 45%;
  1645. }
  1646. }
  1647. .bg3{
  1648. top: 32%;
  1649. }
  1650. }
  1651. }
  1652. }
  1653. .evt--section02-2{
  1654. .section--container{
  1655. .evt--2{
  1656. .evt--box{
  1657. li{
  1658. font-size: 14px;
  1659. .circle{
  1660. padding: 5px 15px;
  1661. white-space: nowrap;
  1662. }
  1663. }
  1664. padding: 20px;
  1665. }
  1666. }
  1667. }
  1668. }
  1669. .evt--section03{
  1670. .section--container{
  1671. .promotion--wrap{
  1672. .promotion{
  1673. height: 300px;
  1674. h4{
  1675. font-size: 16px;
  1676. margin-bottom: 0px;
  1677. line-height: 22vw;
  1678. }
  1679. p{
  1680. font-size: 16px;
  1681. margin-bottom: 0px;
  1682. }
  1683. h5{
  1684. font-size: 36px;
  1685. span{
  1686. font-size: 24px;
  1687. }
  1688. }
  1689. }
  1690. }
  1691. .count--wrap{
  1692. .count--num{
  1693. div{
  1694. .day--text{
  1695. &::after{
  1696. width: 10px;
  1697. }
  1698. }
  1699. span{
  1700. font-size: 24px;
  1701. padding: 15px 0;
  1702. }
  1703. }
  1704. }
  1705. }
  1706. }
  1707. }
  1708. }
  1709. /*===============================================
  1710. 에니메이션
  1711. ===============================================*/
  1712. .floating {
  1713. animation: floating 3s ease-in-out infinite;
  1714. }
  1715. @keyframes floating {
  1716. 0% { transform: translateY(0px); }
  1717. 50% { transform: translateY(-20px); }
  1718. 100% { transform: translateY(0px); }
  1719. }
  1720. @keyframes fadeUpLogo {
  1721. to {
  1722. opacity: 1;
  1723. transform: translateY(0);
  1724. }
  1725. }
  1726. @keyframes fadeInRightH1 {
  1727. to {
  1728. opacity: 1;
  1729. transform: translateX(0);
  1730. }
  1731. }
  1732. @keyframes fadeInLeftH2 {
  1733. to {
  1734. opacity: 1;
  1735. transform: translateX(0);
  1736. }
  1737. }
  1738. @keyframes fadeUpH3 {
  1739. to {
  1740. opacity: 1;
  1741. transform: translateY(0);
  1742. }
  1743. }
  1744. @keyframes waveInRight {
  1745. 0% {
  1746. opacity: 0;
  1747. transform: translateX(-100px);
  1748. }
  1749. 60% {
  1750. opacity: 1;
  1751. transform: translateX(20px);
  1752. }
  1753. 100% {
  1754. opacity: 1;
  1755. transform: translateX(0);
  1756. }
  1757. }
  1758. @keyframes cloudMoveLeftToRight {
  1759. 0% {
  1760. transform: translateX(0px);
  1761. }
  1762. 100% {
  1763. transform: translateX(100px);
  1764. }
  1765. }
  1766. @keyframes floating-diag-1 {
  1767. 0% { transform: translate(0, 0); }
  1768. 20% { transform: translate(-10px, 10px);}
  1769. 40% { transform: translate(10px, -10px);}
  1770. 60% { transform: translate(-10px, -10px);}
  1771. 80% { transform: translate(10px, 10px);}
  1772. 100% { transform: translate(0, 0);}
  1773. }
  1774. @keyframes floating-diag-2 {
  1775. 0% { transform: translate(0, 0); }
  1776. 25% { transform: translate(12px, -8px);}
  1777. 50% { transform: translate(-12px, 8px);}
  1778. 75% { transform: translate(8px, 12px);}
  1779. 100% { transform: translate(0, 0);}
  1780. }
  1781. @keyframes floating-diag-3 {
  1782. 0% { transform: translate(0, 0);}
  1783. 30% { transform: translate(-8px, 12px);}
  1784. 60% { transform: translate(8px, -12px);}
  1785. 100% { transform: translate(0, 0);}
  1786. }
  1787. @keyframes floating-diag-4 {
  1788. 0% { transform: translate(0, 0);}
  1789. 20% { transform: translate(10px, 10px);}
  1790. 40% { transform: translate(-10px, -10px);}
  1791. 60% { transform: translate(10px, -10px);}
  1792. 80% { transform: translate(-10px, 10px);}
  1793. 100% { transform: translate(0, 0);}
  1794. }
  1795. @keyframes shakeX {
  1796. 0% { transform: translateY(-50%) translateX(0); }
  1797. 10%, 30%, 50%, 70%, 90% { transform: translateY(-50%) translateX(-8px); }
  1798. 20%, 40%, 60%, 80% { transform: translateY(-50%) translateX(8px); }
  1799. 100% { transform: translateY(-50%) translateX(0); }
  1800. }
  1801. @keyframes shakeX2 {
  1802. 0% { transform: rotate(180deg) translateY(-50%) translateX(0); }
  1803. 10%, 30%, 50%, 70%, 90% { transform: rotate(180deg) translateY(-50%) translateX(-8px); }
  1804. 20%, 40%, 60%, 80% { transform: rotate(180deg) translateY(-50%) translateX(8px); }
  1805. 100% { transform: rotate(180deg) translateY(-50%) translateX(0); }
  1806. }
  1807. @keyframes bellRing {
  1808. 0% { transform: rotate(0deg); }
  1809. 10% { transform: rotate(-18deg); }
  1810. 20% { transform: rotate(16deg); }
  1811. 30% { transform: rotate(-12deg); }
  1812. 40% { transform: rotate(10deg); }
  1813. 50% { transform: rotate(-6deg); }
  1814. 60% { transform: rotate(4deg); }
  1815. 70% { transform: rotate(-2deg); }
  1816. 80%, 100% { transform: rotate(0deg); }
  1817. }