├── .gitignore ├── README.md ├── css └── style.css ├── fonts └── canela.ttf ├── icons ├── logo.svg └── shopping-cart.svg ├── images ├── banner.jpg ├── g-1.jpg ├── g-10.jpg ├── g-11.jpg ├── g-12.jpg ├── g-2.jpg ├── g-3.jpg ├── g-4.jpg ├── g-5.jpg ├── g-6.jpg ├── g-7.jpg ├── g-8.jpg ├── g-9.jpg ├── intro.jpg ├── line-1.jpg ├── line-2.jpg ├── line-3.jpg ├── line-4.jpg ├── line-5.jpg └── line-6.jpg ├── index.html ├── javascript ├── index.js └── utils.js ├── package-lock.json ├── package.json └── scss ├── _bass.scss ├── _reset.scss ├── abstracts ├── _mixins.scss └── _utils.scss ├── components ├── _btns.scss ├── _hamb.scss └── _locoscroll.scss ├── layouts ├── _footer.scss ├── _layout.scss └── _navbar.scss ├── main.scss └── pages └── _home.scss /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | /.cache 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # awwward-rebuild-2 2 | 3 | complete home page (not-responsive) 4 | 5 | main website link : https://rose-maggie.com/ 6 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap"); 3 | @font-face { 4 | font-family: "canela"; 5 | src: url(../fonts/canela.ttf); } 6 | 7 | body { 8 | font-size: 1rem; 9 | overflow-x: hidden; 10 | font-feature-settings: "kern" 1; 11 | text-rendering: optimizeLegibility; 12 | -webkit-font-kerning: normal; 13 | font-kerning: normal; 14 | overscroll-behavior: none; 15 | font-family: "canela"; 16 | background-color: #efe9d0; } 17 | 18 | * { 19 | scroll-behavior: smooth; 20 | margin: 0; 21 | padding: 0; 22 | box-sizing: border-box; } 23 | 24 | ::after, 25 | ::before { 26 | box-sizing: border-box; 27 | transition: all 0.5s ease; } 28 | 29 | ul { 30 | list-style: none; } 31 | 32 | a, 33 | button, 34 | input { 35 | position: relative; 36 | outline: none; 37 | border: none; 38 | text-decoration: none; 39 | transition: all 0.5s ease; } 40 | 41 | article, 42 | aside, 43 | details, 44 | figcaption, 45 | figure, 46 | footer, 47 | header, 48 | hgroup, 49 | main, 50 | nav, 51 | section, 52 | summary { 53 | display: block; } 54 | 55 | audio, 56 | canvas, 57 | video { 58 | display: inline-block; } 59 | 60 | audio:not([controls]) { 61 | display: none; 62 | height: 0; } 63 | 64 | abbr[title] { 65 | border-bottom: 1px dotted; } 66 | 67 | b, 68 | strong { 69 | font-weight: bold; } 70 | 71 | dfn { 72 | font-style: italic; } 73 | 74 | hr { 75 | -moz-box-sizing: content-box; 76 | box-sizing: content-box; 77 | height: 0; } 78 | 79 | mark { 80 | background: #ff0; 81 | color: #000; } 82 | 83 | code, 84 | kbd, 85 | pre, 86 | samp { 87 | font-family: "Source Sans Pro", sans-serif; 88 | font-size: 1em; } 89 | 90 | pre { 91 | white-space: pre-wrap; } 92 | 93 | q { 94 | quotes: "“" "”" "‘" "’"; } 95 | 96 | small { 97 | font-size: 80%; } 98 | 99 | sub, 100 | sup { 101 | font-size: 75%; 102 | line-height: 0; 103 | position: relative; 104 | vertical-align: baseline; } 105 | 106 | sup { 107 | top: -0.5em; } 108 | 109 | sub { 110 | bottom: -0.25em; } 111 | 112 | img { 113 | border: 0; } 114 | 115 | svg:not(:root) { 116 | overflow: hidden; } 117 | 118 | figure { 119 | margin: 0; } 120 | 121 | fieldset { 122 | border: 1px solid #c0c0c0; 123 | margin: 0 2px; 124 | padding: 0.35em 0.625em 0.75em; } 125 | 126 | legend { 127 | border: 0; 128 | padding: 0; } 129 | 130 | button, 131 | html input[type="button"], 132 | input[type="reset"], 133 | input[type="submit"] { 134 | -webkit-appearance: button; 135 | cursor: pointer; } 136 | 137 | button[disabled], 138 | html input[disabled] { 139 | cursor: default; } 140 | 141 | input[type="checkbox"], 142 | input[type="radio"] { 143 | box-sizing: border-box; 144 | padding: 0; } 145 | 146 | input[type="search"] { 147 | -webkit-appearance: textfield; 148 | -moz-box-sizing: content-box; 149 | -webkit-box-sizing: content-box; 150 | box-sizing: content-box; } 151 | 152 | input[type="search"]::-webkit-search-cancel-button, 153 | input[type="search"]::-webkit-search-decoration { 154 | -webkit-appearance: none; } 155 | 156 | button::-moz-focus-inner, 157 | input::-moz-focus-inner { 158 | border: 0; 159 | padding: 0; } 160 | 161 | textarea { 162 | overflow: auto; 163 | vertical-align: top; } 164 | 165 | table { 166 | border-collapse: collapse; 167 | border-spacing: 0; } 168 | 169 | img { 170 | max-width: 100%; 171 | vertical-align: middle; } 172 | 173 | html { 174 | scroll-behavior: smooth; } 175 | 176 | .row { 177 | display: flex; 178 | flex-direction: row; 179 | align-items: center; 180 | justify-content: space-between; } 181 | 182 | .center-item { 183 | display: flex; 184 | flex-direction: column; 185 | align-items: center; 186 | justify-content: center; } 187 | 188 | .start-item { 189 | display: flex; 190 | flex-direction: column; 191 | align-items: flex-start; 192 | justify-content: flex-start; } 193 | 194 | .section { 195 | max-width: 100%; 196 | width: 100%; 197 | min-height: 100vh; 198 | position: relative; } 199 | 200 | .text-box { 201 | position: relative; 202 | overflow: hidden; 203 | line-height: 2; 204 | width: 100%; 205 | height: auto; } 206 | 207 | .img-box { 208 | width: 100%; 209 | height: 100%; 210 | position: relative; 211 | overflow: hidden; } 212 | 213 | .transition { 214 | transition: all 0.5s ease; } 215 | 216 | .title { 217 | font-size: 13vw; 218 | font-weight: 600; 219 | letter-spacing: 8px; } 220 | 221 | .title-2 { 222 | font-size: 7rem; } 223 | 224 | .title-3 { 225 | font-size: 6rem; } 226 | 227 | .sub-title { 228 | font-size: 2.5rem; } 229 | 230 | .full-size { 231 | width: 100%; 232 | height: 100%; } 233 | 234 | .pad-section { 235 | padding: 10rem 0; } 236 | 237 | .flex { 238 | display: flex; } 239 | 240 | .paragraph { 241 | font-family: "Poppins", sans-serif; 242 | font-size: 1rem; 243 | line-height: 2; 244 | color: #1c1c1d; 245 | font-weight: 400; } 246 | 247 | .wrapper { 248 | width: 100%; 249 | height: 100%; } 250 | .wrapper .scroll__container { 251 | width: 100%; 252 | height: 100%; } 253 | 254 | .container { 255 | max-width: 1300px; 256 | margin: 0 auto; 257 | width: 100%; 258 | height: 100%; 259 | position: relative; } 260 | 261 | .mini-container { 262 | max-width: 1200px; 263 | margin: 0 auto; 264 | width: 100%; 265 | height: 100%; 266 | position: relative; } 267 | 268 | .nav__container { 269 | max-width: 90%; 270 | margin: 0 auto; } 271 | 272 | .nav { 273 | width: 100%; 274 | height: fit-content; 275 | position: fixed; 276 | top: 0; 277 | left: 0; 278 | z-index: 300; 279 | transition: all 0.5s ease; } 280 | .nav.active { 281 | pointer-events: none; } 282 | .nav.active .nav-btn { 283 | opacity: 0; } 284 | .nav .shop-btn { 285 | width: 6rem; 286 | height: fit-content; } 287 | .nav .shop-btn img { 288 | width: 1rem; 289 | height: 1rem; 290 | position: absolute; 291 | transform: scale(0.9); 292 | transform-origin: center; } 293 | .nav .shop-btn div { 294 | position: relative; 295 | color: #1c1c1d; } 296 | .nav .shop-btn div :hover { 297 | color: #8e6e35; } 298 | .nav .shop-btn div.img-box { 299 | width: 2rem; 300 | height: 2rem; 301 | background-color: #1c1c1d; 302 | border-radius: 50%; } 303 | 304 | footer { 305 | background-color: #000000; } 306 | footer .mini-container { 307 | background-color: #efe9d0; 308 | height: 600px; 309 | padding: 3rem 7rem; } 310 | footer .mini-container .left-foot { 311 | flex: 0 0 60%; 312 | max-width: 60%; } 313 | footer .mini-container .left-foot p { 314 | font-size: 1rem; 315 | font-weight: 500; } 316 | footer .mini-container .left-foot h1 { 317 | color: #8e6e35; 318 | font-weight: 500; 319 | margin-top: 2rem; } 320 | footer .mini-container .left-foot .footer-links { 321 | width: 100%; 322 | align-items: flex-start; 323 | margin-top: 4rem; } 324 | footer .mini-container .left-foot .footer-links .left-links, 325 | footer .mini-container .left-foot .footer-links .right-links { 326 | flex: 0 0 50%; 327 | max-width: 50%; 328 | display: flex; 329 | flex-direction: column; 330 | align-items: flex-start; 331 | justify-content: flex-start; } 332 | footer .mini-container .left-foot .footer-links .left-links p, 333 | footer .mini-container .left-foot .footer-links .right-links p { 334 | padding: 1rem 0.5rem; 335 | color: #8e6e35; 336 | font-weight: 600; } 337 | footer .mini-container .left-foot .footer-links .left-links a, 338 | footer .mini-container .left-foot .footer-links .right-links a { 339 | color: #1c1c1d; } 340 | footer .mini-container .left-foot .footer-links .left-links a:hover, 341 | footer .mini-container .left-foot .footer-links .right-links a:hover { 342 | color: #8e6e35; } 343 | footer .mini-container .right-foot { 344 | flex: 0 0 40%; 345 | max-width: 40%; } 346 | footer .mini-container .right-foot p { 347 | margin-top: 4rem; 348 | font-size: 1.2rem; 349 | color: #543c10; 350 | letter-spacing: 2px; 351 | font-family: "canela"; 352 | font-weight: 600; } 353 | footer .mini-container .right-foot p span a { 354 | color: #8e6e35; } 355 | 356 | button, 357 | a { 358 | font-family: "Poppins", sans-serif; } 359 | 360 | .hover-btn { 361 | font-size: 1rem; 362 | font-weight: 500; 363 | padding: 0.3rem 0.5rem; 364 | overflow: hidden; 365 | cursor: pointer; } 366 | .hover-btn:hover { 367 | color: #8e6e35; } 368 | .hover-btn::after { 369 | content: ""; 370 | position: absolute; 371 | bottom: 0; 372 | left: 0; 373 | width: 100%; 374 | height: 1px; 375 | background-color: #8e6e35; 376 | transform-origin: right; 377 | transform: scaleX(0); 378 | transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1); 379 | -webkit-transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1); 380 | -moz-transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1); } 381 | .hover-btn:hover::after { 382 | transform-origin: left; 383 | transform: scaleX(1); } 384 | 385 | .logo-btn { 386 | width: fit-content; 387 | height: fit-content; } 388 | .logo-btn img { 389 | width: 10rem; 390 | height: fit-content; } 391 | 392 | .hamb__menu { 393 | position: fixed; 394 | top: 0; 395 | right: 0; 396 | width: 40%; 397 | height: 100%; 398 | z-index: 300; 399 | background-color: #ffffff; 400 | align-items: flex-start; 401 | justify-content: flex-start; 402 | padding: 8vh 10vw; 403 | overflow: hidden; 404 | will-change: transform; 405 | transform: translateY(-100%); } 406 | .hamb__menu a.close-btn { 407 | position: absolute; 408 | top: 4rem; 409 | right: 4rem; 410 | color: #8e6e35; 411 | font-weight: 500; } 412 | .hamb__menu.active { 413 | transform: translateY(0%); } 414 | .hamb__menu .hamb-links p { 415 | color: #8e6e35; 416 | font-weight: 500; } 417 | .hamb__menu .hamb-links a { 418 | margin-left: 3rem; 419 | font-size: clamp(20px, 10vw, 60px); 420 | font-weight: 500; 421 | color: #1c1c1d; 422 | font-family: "canela"; 423 | padding: 0.6rem 1rem; 424 | transform: translateX(-50vw); 425 | opacity: 0; } 426 | .hamb__menu .hamb-links a:hover { 427 | font-style: italic; 428 | color: #8e6e35; } 429 | .hamb__menu .hamb-links-two { 430 | margin-top: 2rem; } 431 | .hamb__menu .hamb-links-two p { 432 | color: #8e6e35; 433 | font-weight: 500; } 434 | .hamb__menu .hamb-links-two a { 435 | margin-left: 3rem; 436 | font-size: 1rem; 437 | font-weight: 500; 438 | color: #1c1c1d; 439 | padding: 0.4rem 0; 440 | opacity: 0; 441 | transform: translateY(5rem); } 442 | .hamb__menu .hamb-links-two a:nth-of-type(1) { 443 | margin-top: 1rem; } 444 | .hamb__menu .hamb-links-two a:hover { 445 | color: #8e6e35; } 446 | .hamb__menu p.dev-p { 447 | position: absolute; 448 | bottom: 2rem; 449 | right: 2rem; } 450 | .hamb__menu p.dev-p span a { 451 | color: #8e6e35; } 452 | 453 | /*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */ 454 | html.has-scroll-smooth { 455 | overflow: hidden; 456 | position: fixed; 457 | top: 0; 458 | left: 0; 459 | right: 0; 460 | bottom: 0; } 461 | 462 | html.has-scroll-dragging { 463 | -webkit-user-select: none; 464 | -moz-user-select: none; 465 | -ms-user-select: none; 466 | user-select: none; } 467 | 468 | .has-scroll-smooth body { 469 | overflow: hidden; } 470 | 471 | .has-scroll-smooth [data-scroll-container] { 472 | min-height: 100vh; } 473 | 474 | [data-scroll-direction="horizontal"] [data-scroll-container] { 475 | display: inline-block; 476 | height: 100vh; 477 | white-space: nowrap; } 478 | 479 | [data-scroll-direction="horizontal"] [data-scroll-section] { 480 | display: inline-block; 481 | height: 100%; 482 | vertical-align: top; 483 | white-space: nowrap; } 484 | 485 | .c-scrollbar { 486 | height: 100%; 487 | opacity: 0; 488 | position: absolute; 489 | right: 0; 490 | top: 0; 491 | transform-origin: center right; 492 | transition: transform 0.3s, opacity 0.3s; 493 | width: 11px; } 494 | 495 | .c-scrollbar:hover { 496 | transform: scaleX(1.45); } 497 | 498 | .c-scrollbar:hover, 499 | .has-scroll-dragging .c-scrollbar, 500 | .has-scroll-scrolling .c-scrollbar { 501 | opacity: 1; } 502 | 503 | [data-scroll-direction="horizontal"] .c-scrollbar { 504 | bottom: 0; 505 | height: 10px; 506 | top: auto; 507 | transform: scaleY(1); 508 | width: 100%; } 509 | 510 | [data-scroll-direction="horizontal"] .c-scrollbar:hover { 511 | transform: scaleY(1.3); } 512 | 513 | .c-scrollbar_thumb { 514 | background-color: #000; 515 | border-radius: 10px; 516 | cursor: -webkit-grab; 517 | cursor: grab; 518 | margin: 2px; 519 | opacity: 0.5; 520 | position: absolute; 521 | right: 0; 522 | top: 0; 523 | width: 7px; 524 | display: none; } 525 | 526 | .has-scroll-dragging .c-scrollbar_thumb { 527 | cursor: -webkit-grabbing; 528 | cursor: grabbing; } 529 | 530 | [data-scroll-direction="horizontal"] .c-scrollbar_thumb { 531 | bottom: 0; 532 | right: auto; } 533 | 534 | ::-webkit-scrollbar { 535 | display: none; } 536 | 537 | .banner { 538 | overflow: hidden; } 539 | .banner .bg-container { 540 | position: absolute; 541 | top: 0; 542 | left: 0; 543 | overflow: hidden; 544 | transform: scale(1.3); 545 | z-index: 1; } 546 | .banner .bg-container .parallax-container { 547 | background-size: cover !important; 548 | background-position: center !important; 549 | transform-origin: top; } 550 | .banner h1 { 551 | position: relative; 552 | z-index: 2; 553 | color: #ffffff; } 554 | 555 | .about .container .text-box { 556 | text-align: center; 557 | position: relative; } 558 | .about .container .text-box:nth-of-type(2) { 559 | margin-top: 2rem; } 560 | .about .container .text-box h6 { 561 | font-size: 1rem; 562 | font-family: "Poppins", sans-serif; 563 | font-weight: 600; 564 | color: #8e6e35; 565 | letter-spacing: 4px; 566 | line-height: 2rem; } 567 | .about .container .text-box h6 span { 568 | padding: 1rem; 569 | border: 2px solid #8e6e35; 570 | line-height: 1.2rem; 571 | border-radius: 50%; 572 | font-family: "canela"; } 573 | .about .container .text-box h1 { 574 | font-weight: 500; 575 | line-height: 1.5; 576 | text-align: center; 577 | align-items: center; 578 | justify-content: center; 579 | word-spacing: 4px; } 580 | .about .container .text-box h1 div { 581 | width: 13rem; 582 | height: 8rem; 583 | overflow: hidden; 584 | margin: 0 0.5rem; } 585 | @media only screen and (max-width: 1060px) { 586 | .about .container .text-box h1 div { 587 | width: 10rem; 588 | height: 6rem; } } 589 | .about .container .text-box h1 div img { 590 | transition: all 0.5s ease; 591 | transform-origin: center; } 592 | .about .container .text-box h1 div:hover img { 593 | transform: scale(1.2); } 594 | 595 | .intro { 596 | max-height: 100vh; } 597 | .intro .mini-container { 598 | height: 800px; 599 | align-items: flex-end; 600 | justify-content: flex-end; } 601 | @media only screen and (max-width: 1060px) { 602 | .intro .mini-container { 603 | padding: 0 2rem; } } 604 | .intro .mini-container .intro-content { 605 | flex: 0 0 45%; 606 | max-width: 45%; 607 | position: relative; 608 | justify-content: flex-end; 609 | padding: 5rem 0; } 610 | .intro .mini-container .intro-content .text-box:not(.parallax-box) { 611 | padding: 1.2rem 0; 612 | border-top: 1px solid #ceb286; } 613 | .intro .mini-container .intro-content .text-box:not(.parallax-box):nth-of-type(1) { 614 | margin-top: 2rem; } 615 | .intro .mini-container .intro-content .text-box:not(.parallax-box):nth-of-type(3) { 616 | border-bottom: 1px solid #ceb286; } 617 | .intro .mini-container .intro-content .text-box:not(.parallax-box) .text-box p { 618 | font-size: 1.2rem; } 619 | .intro .mini-container .intro-content .parallax-box { 620 | position: absolute; 621 | top: 10vh; 622 | left: -20rem; 623 | width: 40rem; 624 | height: fit-content; 625 | z-index: 4; 626 | pointer-events: none; } 627 | .intro .mini-container .intro-content .parallax-box h1 { 628 | line-height: 1.2; 629 | color: #8e6e35; 630 | font-weight: 500; } 631 | .intro .mini-container .intro-pic { 632 | position: absolute; 633 | top: 0; 634 | left: 0; 635 | flex: 0 0 50%; 636 | max-width: 50%; 637 | height: 100%; } 638 | .intro .mini-container .intro-pic .img-box { 639 | position: absolute; 640 | z-index: 2; 641 | height: 80%; 642 | width: 30rem; 643 | top: 2rem; } 644 | .intro .mini-container .intro-pic .img-box img { 645 | transform-origin: top; 646 | transform: scale(1.4, 1); 647 | width: 100%; 648 | height: 100%; } 649 | .intro .mini-container .intro-pic .bg-container { 650 | width: 100%; 651 | height: 60%; 652 | position: absolute; 653 | bottom: 0; 654 | background-color: #ecdabc; } 655 | 656 | .news { 657 | max-height: 100vh; 658 | overflow: hidden; } 659 | .news .bg-container { 660 | position: absolute; 661 | top: 0; 662 | left: 0; 663 | transform: scale(1.2, 1.4); 664 | z-index: 1; } 665 | .news .bg-container .parallax-container { 666 | background-position: top !important; 667 | background-size: cover !important; 668 | transform-origin: top; } 669 | .news .text-box { 670 | z-index: 3; 671 | width: 215rem; } 672 | .news .text-box h1 { 673 | font-weight: 600; 674 | font-style: italic; 675 | color: #ffffff; 676 | animation: roll 15s linear infinite; 677 | width: 215rem; 678 | text-shadow: 215rem 0 #ffffff, calc(215rem * 2) 0 #ffffff, calc(215rem * 3) 0 #ffffff; } 679 | .news .mini-container { 680 | position: absolute; 681 | height: 100vh; } 682 | .news .mini-container .img-box { 683 | position: absolute; 684 | right: 0; 685 | width: 24rem; 686 | height: 35rem; 687 | z-index: 5; 688 | right: 0; 689 | top: 50%; 690 | transform: translateY(-50%); } 691 | @media only screen and (max-width: 1060px) { 692 | .news .mini-container .img-box { 693 | right: 2rem; } } 694 | .news .mini-container .img-box:hover img { 695 | filter: grayscale(0.4); } 696 | .news .mini-container .img-box img { 697 | width: 100%; 698 | height: 100%; 699 | transform: scale(1.8, 1); 700 | align-tracks: center; 701 | transition: all 0.5s ease; } 702 | 703 | @keyframes roll { 704 | 0% { 705 | transform: translateX(0); } 706 | 100% { 707 | transform: translateX(-100%); } } 708 | 709 | .challange .container h1 { 710 | font-weight: 500; 711 | font-style: italic; 712 | text-align: center; 713 | line-height: 1.2; } 714 | 715 | .contact { 716 | max-height: 100vh; } 717 | .contact .left-contact { 718 | flex: 0 0 50%; 719 | max-width: 50%; 720 | height: 100vh; 721 | background-color: #000000; 722 | text-align: center; } 723 | .contact .left-contact p { 724 | font-size: 1.2rem; 725 | font-weight: 600; 726 | color: #ffffff; 727 | letter-spacing: 2px; } 728 | .contact .left-contact h4 { 729 | font-style: italic; 730 | color: #8e6e35; 731 | font-weight: 500; 732 | line-height: 1.3; 733 | width: 30rem; 734 | margin: 2rem 0 3rem 0; } 735 | .contact .left-contact form { 736 | width: 60%; } 737 | .contact .left-contact form input[type="email"] { 738 | border: 1px solid #8e6e35; 739 | padding: 1.5rem 1rem; 740 | background-color: transparent; 741 | font-size: 1.2rem; 742 | font-weight: 500; 743 | color: #ffffff; 744 | width: 100%; 745 | height: fit-content; } 746 | .contact .left-contact form input[type="submit"] { 747 | border: 1px solid #8e6e35; 748 | color: #543c10; 749 | padding: 1.5rem 1rem; 750 | width: 100%; 751 | height: 100%; 752 | background-color: transparent; 753 | font-size: 1.2rem; 754 | text-transform: uppercase; 755 | font-weight: 300; } 756 | .contact .left-contact form input[type="submit"]:hover { 757 | color: #ffffff; 758 | background-color: #543c10; 759 | border: 1px solid #543c10; } 760 | .contact .right-contact { 761 | flex: 0 0 50%; 762 | max-width: 50%; 763 | height: 100vh; 764 | position: relative; 765 | background-color: #ceb286; } 766 | .contact .right-contact h1 { 767 | font-weight: 500; 768 | line-height: 1.2; } 769 | .contact .right-contact .img-box { 770 | position: absolute; 771 | top: 50%; 772 | left: 50%; 773 | transform: translate(-50%, -50%); 774 | width: 24rem; 775 | height: 32rem; 776 | opacity: 0.9; } 777 | .contact .right-contact .img-box img { 778 | transform: center; 779 | transform: scale(1.4, 1.7); } 780 | 781 | .oth { 782 | background-color: #ffffff; } 783 | .oth .mini-container p.p-one { 784 | font-size: 1.2rem; 785 | font-weight: 600; } 786 | .oth .mini-container h1 { 787 | font-weight: 600; 788 | color: #8e6e35; 789 | letter-spacing: 5px; 790 | margin-top: 2rem; } 791 | .oth .mini-container .oth-content { 792 | margin-top: 3rem; 793 | align-items: flex-start; 794 | position: relative; 795 | margin-bottom: 5rem; } 796 | @media only screen and (max-width: 1060px) { 797 | .oth .mini-container .oth-content { 798 | padding: 0 2rem; } } 799 | .oth .mini-container .oth-content :after { 800 | content: ""; 801 | height: 100%; 802 | width: 1px; 803 | background-color: #ceb286; 804 | top: 0; 805 | left: 50%; 806 | transform: translateX(-50%); 807 | position: absolute; 808 | z-index: 2; } 809 | .oth .mini-container .oth-content .left-oth { 810 | flex: 0 0 50%; 811 | max-width: 50%; } 812 | .oth .mini-container .oth-content .left-oth p { 813 | width: 90%; } 814 | .oth .mini-container .oth-content .left-oth p.thin-p { 815 | font-weight: 600; 816 | margin-bottom: 2rem; } 817 | .oth .mini-container .oth-content .right-oth { 818 | flex: 0 0 50%; 819 | max-width: 50%; } 820 | .oth .mini-container .oth-content .right-oth p { 821 | width: 90%; } 822 | .oth .mini-container .oth-content .right-oth p:nth-last-of-type(2) { 823 | margin-bottom: 2rem; } 824 | .oth .mini-container a.btn { 825 | font-size: 1rem; 826 | font-weight: 600; 827 | color: #1c1c1d; 828 | background-color: #ecdabc; 829 | width: 14rem; 830 | height: 4rem; 831 | position: relative; 832 | overflow: hidden; } 833 | .oth .mini-container a.btn::after { 834 | content: attr(data-name); 835 | font-size: 1rem; 836 | font-weight: 500; 837 | width: 100%; 838 | height: 100%; 839 | position: absolute; 840 | background-color: #000000; 841 | color: #ffffff; 842 | display: flex; 843 | align-items: center; 844 | justify-content: center; 845 | top: 0; 846 | left: 0; 847 | transform: translateY(100%); } 848 | .oth .mini-container a.btn span { 849 | position: absolute; 850 | transition: all 0.5s ease; } 851 | .oth .mini-container a.btn:hover span { 852 | transform: translateY(5rem); } 853 | .oth .mini-container a.btn:hover::after { 854 | transform: translateY(0); } 855 | 856 | @media only screen and (max-width: 1060px) { 857 | .title-2 { 858 | font-size: 6vw; } 859 | .title-3 { 860 | font-size: 6vw; } 861 | .sub-title { 862 | font-size: 3vw; } } 863 | -------------------------------------------------------------------------------- /fonts/canela.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/fonts/canela.ttf -------------------------------------------------------------------------------- /icons/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 74 | -------------------------------------------------------------------------------- /icons/shopping-cart.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/banner.jpg -------------------------------------------------------------------------------- /images/g-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-1.jpg -------------------------------------------------------------------------------- /images/g-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-10.jpg -------------------------------------------------------------------------------- /images/g-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-11.jpg -------------------------------------------------------------------------------- /images/g-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-12.jpg -------------------------------------------------------------------------------- /images/g-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-2.jpg -------------------------------------------------------------------------------- /images/g-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-3.jpg -------------------------------------------------------------------------------- /images/g-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-4.jpg -------------------------------------------------------------------------------- /images/g-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-5.jpg -------------------------------------------------------------------------------- /images/g-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-6.jpg -------------------------------------------------------------------------------- /images/g-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-7.jpg -------------------------------------------------------------------------------- /images/g-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-8.jpg -------------------------------------------------------------------------------- /images/g-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/g-9.jpg -------------------------------------------------------------------------------- /images/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/intro.jpg -------------------------------------------------------------------------------- /images/line-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/line-1.jpg -------------------------------------------------------------------------------- /images/line-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/line-2.jpg -------------------------------------------------------------------------------- /images/line-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/line-3.jpg -------------------------------------------------------------------------------- /images/line-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/line-4.jpg -------------------------------------------------------------------------------- /images/line-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/line-5.jpg -------------------------------------------------------------------------------- /images/line-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwward-rebuild-2/e461caabc6b607a1c04f7aa4d1766798a07b901b/images/line-6.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |160 | Aligning products of extreme quality with the goal of bringing a 161 | result never dreamed of. Mary Kay trusts in the power of beauty, 162 | which is why we exist. We aim to bring facial, hair and body 163 | products with the divine quality of the Gods. Always aiming for 164 | exclusivity in packaging, service, and of course, in Divine 165 | quality. 166 |
167 |THAT'S WHY:
169 |We create special products.
170 |WE ALWAYS:
173 |Take care about every details.
174 |FOR WHO:
177 |Who always desire be beautiful.
178 |BE CONNECTED
250 |OUR OATH AND PHILOSOPHY
285 |289 | INNOVATION, CREATIVITY, AND SOCIAL COMMITMENT ARE OUR GREATEST 290 | VALUES. PROFESSIONALISM AND THE SCIENCE THAT EVERY DAY IS A 291 | NEW DAY TO SURPRISE EVERYONE AND EVERYTHING. WE VALUE THE 292 | ETHICS OF MEETING ALL THE EXPECTATIONS OF EACH CUSTOMER WHO 293 | TRUSTS IN OUR SERIOUS AND HARD WORK. 294 |
295 |296 | Provide unique experiences for everyone involved with a brand. 297 | A trip without time, igniting a flame of enthusiasm and 298 | curiosity for each one. Be striking, unique, and 299 | extraordinary. Providing benefits for beauty, and at the same 300 | time, fun with our unique way of being. Our greatest mission 301 | is required according to our ideals 302 |
303 |306 | We are not just a brand of nutritional cosmetics, cosmetics, 307 | and cosmetics, we are a company of excellence in the 308 | international market for processing and marketing high-quality 309 | products and continuing to expand in the market in which we 310 | operate. 311 |
312 |313 | With a commitment to the continuous improvement of its 314 | products and sustainable development and profitability in its 315 | business. Encouraging our customers engaged in our lifestyle, 316 | participating in causes, sending life rewards those who sow or 317 | well. Taking care of our planet, with products that are less 318 | and less harmful to the environment, because our castle is our 319 | land. 320 |
321 |