25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  1. @import "variables";
  2. @import "reset";
  3. @import "breakpoints";
  4. #menu {
  5. position: absolute;
  6. opacity: 0;
  7. &:checked {
  8. +.hamburger-menu {
  9. position: fixed;
  10. .patty {
  11. background-color: rgba(255, 255, 255, 0);
  12. &::before {
  13. transform: rotate(-45deg);
  14. top: 0;
  15. left: 0;
  16. }
  17. &::after {
  18. transform: rotate(45deg);
  19. top: 0;
  20. left: 0;
  21. }
  22. }
  23. }
  24. ~.upfold {
  25. .navbar {
  26. opacity: 1;
  27. a{
  28. display: block;
  29. }
  30. }
  31. }
  32. }
  33. }
  34. .hamburger-menu {
  35. position: absolute;
  36. top: 2rem;
  37. right: 2rem;
  38. cursor: pointer;
  39. z-index: 5;
  40. display: none;
  41. @include mobile {
  42. display: block;
  43. }
  44. .patty {
  45. width: 1.5rem;
  46. height: 0.2rem;
  47. background-color: white;
  48. position: relative;
  49. transition: transform 0.3s;
  50. &::before {
  51. content: "";
  52. position: absolute;
  53. top: -0.5rem;
  54. left: 0;
  55. width: 1.5rem;
  56. height: 0.2rem;
  57. background-color: white;
  58. transition: transform 0.3s;
  59. }
  60. &::after {
  61. content: "";
  62. position: absolute;
  63. top: 0.5rem;
  64. left: 0;
  65. width: 1.5rem;
  66. height: 0.2rem;
  67. background-color: white;
  68. transition: transform 0.3s;
  69. }
  70. }
  71. }
  72. .upfold {
  73. width: 100%;
  74. position: relative;
  75. background-image: url(images/upfold-bg.png);
  76. background-size: contain;
  77. background-repeat: no-repeat;
  78. .upfold-container {
  79. width: 70%;
  80. margin-left: 15%;
  81. @include mobile{
  82. width: 90%;
  83. margin-left: 5%;
  84. padding-top: 5rem;
  85. }
  86. .navbar {
  87. display: flex;
  88. justify-content: space-between;
  89. align-items: center;
  90. width: 40%;
  91. margin-left: 60%;
  92. height: 7rem;
  93. @include mobile{
  94. width: 100%;
  95. position: fixed;
  96. margin: 0;
  97. left: 0;
  98. top: 0;
  99. flex-direction: column;
  100. height: 100vh;
  101. justify-content: space-around;
  102. padding: 25vh 0;
  103. z-index: 2;
  104. -webkit-backdrop-filter: blur(10px);
  105. backdrop-filter: blur(10px);
  106. background-color: rgba(0, 0, 0, 0.5);
  107. opacity: 0;
  108. }
  109. a {
  110. color: white;
  111. opacity: 0.7;
  112. text-decoration: none;
  113. font-size: 1.2rem;
  114. display: none;
  115. &:hover {
  116. opacity: 1;
  117. }
  118. }
  119. a.action{
  120. opacity: 1;
  121. }
  122. }
  123. .upfold-info-card {
  124. display: flex;
  125. flex-direction: column;
  126. background-color: $satin_deep_black;
  127. box-shadow: 0 0 2rem $black_shadow;
  128. padding: 4rem;
  129. @include mobile{
  130. padding: 2rem;
  131. }
  132. .branding {
  133. display: flex;
  134. align-items: center;
  135. margin-bottom: 5%;
  136. @include mobile{
  137. justify-content: center;
  138. }
  139. .brand-image {
  140. width: 3%;
  141. margin-right: 1rem;
  142. @include mobile{
  143. width: 18%;
  144. }
  145. }
  146. .brand-name {
  147. font-size: 2rem;
  148. color: white;
  149. }
  150. }
  151. .upfold-floating-image {
  152. position: absolute;
  153. bottom: -15%;
  154. right: 0;
  155. width: 48%;
  156. overflow: hidden;
  157. @include mobile{
  158. bottom: -10rem;
  159. }
  160. img {
  161. width: 101%;
  162. transform: scaleX(-1);
  163. @include mobile{
  164. width: 500%;
  165. }
  166. }
  167. }
  168. .upfold-info-card-descriprion {
  169. width: 50%;
  170. padding-left: 3%;
  171. display: flex;
  172. flex-direction: column;
  173. @include mobile{
  174. width: 100%;
  175. justify-content: center;
  176. text-align: center;
  177. padding: 0;
  178. }
  179. article {
  180. color: white;
  181. font-size: 1.2rem;
  182. line-height: 2rem;
  183. opacity: 0.8;
  184. @include mobile{
  185. margin-top: 2rem;
  186. }
  187. }
  188. .upfold-info-card-descriprion-button {
  189. display: flex;
  190. align-items: center;
  191. justify-content: center;
  192. color: white;
  193. text-decoration: none;
  194. font-size: 1.2rem;
  195. height: 3rem;
  196. margin-top: 2rem;
  197. background-color: $black_gray;
  198. @include mobile{
  199. position: relative;
  200. z-index: 1;
  201. }
  202. }
  203. }
  204. .upfold-info-card-content {
  205. display: flex;
  206. @include mobile{
  207. flex-direction: column;
  208. }
  209. .upfold-info-card-header-image {
  210. width: 50%;
  211. border-right: 1px solid $white_light;
  212. padding-right: 5%;
  213. @include mobile{
  214. width: 100%;
  215. border: none;
  216. }
  217. h1 {
  218. font-size: 6rem;
  219. color: white;
  220. @include mobile{
  221. font-size: 3rem;
  222. text-align: center;
  223. margin-top: 2rem;
  224. }
  225. }
  226. .upfold-info-card-images {
  227. display: flex;
  228. justify-content: space-between;
  229. padding-top: 5%;
  230. @include mobile{
  231. padding-top: 2rem;
  232. }
  233. figure {
  234. img {
  235. width: 10rem;
  236. height: 10rem;
  237. object-fit: cover;
  238. object-position: bottom;
  239. @include mobile{
  240. width: 6rem;
  241. height: 6rem;
  242. }
  243. }
  244. }
  245. }
  246. }
  247. }
  248. }
  249. }
  250. }
  251. .our-products {
  252. width: 100%;
  253. display: flex;
  254. justify-content: center;
  255. flex-direction: column;
  256. margin: 10% 0;
  257. padding: 5% 0;
  258. background-image: url(images/product-bg.png);
  259. background-size: cover;
  260. background-position: center;
  261. background-repeat: no-repeat;
  262. .our-products-container {
  263. width: 60%;
  264. margin-left: 20%;
  265. display: flex;
  266. flex-direction: column;
  267. @include mobile{
  268. width: 100%;
  269. margin: 0;
  270. }
  271. .product-heading {
  272. text-align: center;
  273. font-size: 3.5rem;
  274. color: white;
  275. margin-bottom: 10%;
  276. @include mobile{
  277. font-size: 2.5rem;
  278. }
  279. }
  280. .product-info-card {
  281. display: flex;
  282. flex-direction: column;
  283. background-color: $river_styx;
  284. padding: 4rem 15rem;
  285. position: relative;
  286. @include mobile{
  287. padding: 4rem 2rem;
  288. }
  289. .product-info {
  290. border-bottom: 1px solid $white_light;
  291. padding: 3rem 0;
  292. position: relative;
  293. justify-content: center;
  294. &:first-child {
  295. padding-top: 0;
  296. }
  297. &:last-child {
  298. border: none;
  299. padding-bottom: 0;
  300. }
  301. &:nth-child(2) {
  302. .product-image {
  303. left: auto;
  304. top: -5rem;
  305. right: -30rem;
  306. @include mobile{
  307. top: auto;
  308. right: auto;
  309. }
  310. }
  311. .product-info-description {
  312. margin-left: -20%;
  313. text-align: right;
  314. @include mobile{
  315. text-align: center;
  316. margin: auto;
  317. margin-top: 2rem;
  318. }
  319. }
  320. }
  321. &:nth-child(3) {
  322. .product-image {
  323. top: auto;
  324. bottom: -10rem;
  325. @include mobile{
  326. top: auto;
  327. bottom: auto;
  328. }
  329. }
  330. }
  331. .product-image {
  332. width: 25rem;
  333. height: 33rem;
  334. position: absolute;
  335. top: -10rem;
  336. left: -30rem;
  337. overflow: hidden;
  338. box-shadow: 0 0 3rem $black_shadow;
  339. @include mobile{
  340. position: relative;
  341. top: 0;
  342. left: 0;
  343. right: 0;
  344. width: 100%;
  345. height: 50vh;
  346. }
  347. }
  348. .product-info-description {
  349. width: 120%;
  350. color: white;
  351. @include mobile{
  352. width: auto;
  353. text-align: center;
  354. margin: 1rem;
  355. margin-top: 2rem;
  356. }
  357. article {
  358. h2 {
  359. margin-bottom: 2rem;
  360. font-size: 2.5rem;
  361. @include mobile{
  362. font-size: 1.5rem;
  363. }
  364. }
  365. p {
  366. margin-bottom: 2rem;
  367. font-size: 1.2rem;
  368. line-height: 2rem;
  369. opacity: 0.6;
  370. @include mobile{
  371. font-size: 1rem;
  372. line-height: 1.5rem;
  373. }
  374. }
  375. }
  376. .product-info-descriprion-button {
  377. color: white;
  378. text-decoration: none;
  379. text-transform: uppercase;
  380. font-size: 1.2rem;
  381. @include mobile{
  382. font-size: 1rem;
  383. }
  384. }
  385. }
  386. }
  387. }
  388. }
  389. }
  390. .meterials-list {
  391. width: 100%;
  392. display: flex;
  393. justify-content: center;
  394. flex-direction: column;
  395. margin: 5% 0 5%;
  396. padding-top: 5%;
  397. padding-bottom: 10%;
  398. background-image: url(images/meterial-bg.png);
  399. background-repeat: no-repeat;
  400. background-size: contain;
  401. @include mobile{
  402. background-size: cover;
  403. margin-top: 0;
  404. padding-top: 0;
  405. background-position-x: center;
  406. }
  407. .meterials-container {
  408. display: flex;
  409. justify-content: center;
  410. align-items: center;
  411. flex-wrap: wrap;
  412. width: 60%;
  413. margin-left: 20%;
  414. @include mobile{
  415. width: 90%;
  416. margin-left: 5%;
  417. }
  418. .meterials-list-heading {
  419. margin-bottom: 10%;
  420. font-size: 3.5rem;
  421. width: 100%;
  422. text-align: center;
  423. color: white;
  424. @include mobile{
  425. font-size: 2.5rem;
  426. margin-bottom: 4rem;
  427. }
  428. }
  429. .meterial {
  430. display: flex;
  431. justify-content: center;
  432. align-items: center;
  433. width: 33.33%;
  434. margin-bottom: 3rem;
  435. position: relative;
  436. color: white;
  437. @include mobile{
  438. width: 40%;
  439. margin-bottom: 0.5rem;
  440. }
  441. p {
  442. position: absolute;
  443. top: 43%;
  444. text-align: center;
  445. font-size: 2rem;
  446. text-transform: uppercase;
  447. text-shadow: 0 0 0.5rem black;
  448. @include mobile{
  449. font-size: 1.3rem;
  450. }
  451. }
  452. figure {
  453. img {
  454. height: 15rem;
  455. width: 15rem;
  456. border-radius: 10rem;
  457. object-fit: cover;
  458. object-position: center;
  459. box-shadow: 0 0 3rem $black_shadow;
  460. @include mobile{
  461. width: 9rem;
  462. height: 9rem;
  463. }
  464. }
  465. }
  466. }
  467. }
  468. }
  469. footer {
  470. width: 100%;
  471. background-image: url(images/footer-bg.png);
  472. background-repeat: no-repeat;
  473. background-position: right bottom;
  474. background-size: contain;
  475. .contact-card {
  476. display: flex;
  477. flex-direction: column;
  478. align-items: center;
  479. background-color: $satin_deep_black;
  480. width: 60%;
  481. margin-left: 20%;
  482. box-shadow: 0 0 3rem $black_shadow;
  483. padding: 4rem 2rem 2rem 2rem;
  484. @include mobile{
  485. width: 90%;
  486. margin-left: 5%;
  487. padding: 2rem 0;
  488. }
  489. .contact-card-header {
  490. text-align: center;
  491. font-size: 3.5rem;
  492. color: white;
  493. margin-bottom: 5%;
  494. @include mobile{
  495. font-size: 2.5rem;
  496. }
  497. }
  498. .contact-card-form {
  499. display: flex;
  500. flex-direction: column;
  501. justify-content: space-between;
  502. width: 90%;
  503. .contact-card-form-inputs-holder {
  504. display: flex;
  505. input {
  506. width: 50%;
  507. margin: 1rem;
  508. height: 2.5rem;
  509. padding: 1rem;
  510. font-size: 1.2rem;
  511. background-color: $river_styx;
  512. color: white;
  513. border: none;
  514. }
  515. }
  516. textarea {
  517. margin: 1rem;
  518. padding: 1rem;
  519. font-size: 1.2rem;
  520. background-color: $river_styx;
  521. color: white;
  522. border: none;
  523. }
  524. button {
  525. margin: 1rem;
  526. padding: 1rem;
  527. font-size: 1.2rem;
  528. background-color: $black_gray;
  529. color: white;
  530. border: none;
  531. }
  532. }
  533. }
  534. .social-media-icons {
  535. display: flex;
  536. align-items: center;
  537. justify-content: center;
  538. margin-top: 3%;
  539. a {
  540. margin: 1rem;
  541. }
  542. }
  543. .copyrights {
  544. padding-bottom: 3rem;
  545. color: white;
  546. text-align: center;
  547. opacity: 0.6;
  548. }
  549. }