@font-face {
  font-family: "AR";
  src: url("../fonts/AeonikProTRIAL-Regular-DNLsHCVI.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AR";
  src: url("../fonts/AeonikProTRIAL-Bold-CaMf_cSd.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.row {
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
  padding-inline: 1rem;
}

.hover-effect {
  display: block !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hover-effect > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.4s linear;
  left: 0;
  top: 0;
  text-transform: capitalize;
}
.hover-effect:hover > span:nth-of-type(1), .hover-effect:hover > span:nth-of-type(2) {
  top: -100%;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.5rem;
  padding: 0.5rem 2rem !important;
  gap: 0.5rem;
  min-width: 15rem;
  outline: none;
  border: none;
  text-transform: capitalize;
  cursor: pointer;
}

.btn-dark {
  background-color: #101415;
  color: #fefded;
}

.btn-light {
  background-color: #fefded;
  color: #101415;
}

.btn-secondary {
  background-color: #dbdbdb;
  color: #101415;
}

.card {
  border-radius: 25px;
  overflow: hidden;
  padding: 2rem;
}
.card > figure {
  width: 100%;
}
.card > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card > figure > figcaption {
  margin-block: 2rem;
}
.card > figure > figcaption h3 {
  font-size: 3rem;
}
.card > figure > figcaption > strong {
  font-weight: normal;
}
.card > .price {
  display: flex;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.card > .btn {
  width: 100%;
  padding: 2rem !important;
}

.card-primary {
  background-color: #f2f2f2;
}

.card-green {
  background-color: #d6fec5;
}

.card-green-light {
  background-color: #ddead8;
}

.card-yellow {
  background-color: #fdffae;
}

.card-blue {
  background-color: #d6edfe;
}

.card-rosegold {
  background-color: #fde2cd;
}

.card-rosegold-light {
  background-color: #f8ede3;
}

.badge {
  display: flex;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-transform: capitalize;
  width: -moz-fit-content;
  width: fit-content;
}

.badge-primary {
  background-color: #d5d5d5;
  color: #101415;
}

.article-style-1 {
  margin-block: 5rem;
  flex-direction: column;
  align-items: center;
}
.article-style-1 > h2 {
  width: 100%;
  text-align: center;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.article-style-1 > p {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .article-style-1 > p {
    width: 50%;
  }
}
.scroll__slide-in {
  animation: slide-in linear alternate;
  animation-timeline: view();
  animation-range: -100px 400px;
}

@keyframes slide-in {
  from {
    transform: translateX(-300%);
  }
  to {
    transform: translateX(0);
  }
}
.scroll__slide-in--right {
  animation: slide-in-right linear alternate;
  animation-timeline: view();
  animation-range: -100px 400px;
}

@keyframes slide-in-right {
  from {
    transform: translateX(-300%);
  }
  to {
    transform: translateX(0);
  }
}
@media screen and (min-width: 768px) {
  @keyframes slide-in-right {
    from {
      transform: scale(0) rotate(180deg);
    }
    to {
      transform: scale(1) rotate(0);
    }
  }
}
.scroll__scale {
  animation: scale-opactity linear alternate;
  animation-timeline: view();
  animation-range: -100px 400px;
}

@keyframes scale-opactity {
  from {
    scale: 0;
    opacity: 0;
  }
  to {
    scale: 1;
    opacity: 1;
  }
}
.scroll__scale--2 {
  animation: scale-opactity-2 linear alternate;
  animation-timeline: view();
  animation-range: -100px 400px;
}

@keyframes scale-opactity-2 {
  from {
    scale: 5;
    opacity: 0;
  }
  to {
    scale: 1;
    opacity: 1;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "AR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
}

::-moz-selection {
  color: #fefded;
  background: #101415;
}

::selection {
  color: #fefded;
  background: #101415;
}

.main-nav {
  position: sticky;
  top: 0;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding-block: 1rem;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.5);
}
.main-nav > .row {
  justify-content: space-between;
  align-items: center;
}
.main-nav > .row > .logo {
  width: 6rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-nav > .row > .logo > img {
  width: 100%;
}
.main-nav > .row > .mobile-menu {
  width: 100%;
  max-height: 0;
  transition: 0.5s linear;
  overflow: hidden;
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main-nav > .row > .mobile-menu > li {
  width: 100%;
}
.main-nav > .row > .mobile-menu > li > a {
  text-transform: capitalize;
  display: flex;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  color: #101415;
}
.main-nav > .row > .mobile-menu.show {
  max-height: 100vh;
}
.main-nav > .row > .desktop-menu {
  display: none;
}
.main-nav > .row > div {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.main-nav > .row > div > div {
  gap: 1rem;
}
.main-nav > .row > div > div > .vline {
  display: flex;
  width: 1px;
  height: 20px;
  background-color: grey;
}
.main-nav > .row > div .toggle-menu {
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background-color: transparent;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav > .row > div .toggle-menu::before, .main-nav > .row > div .toggle-menu::after {
  content: "";
  display: flex;
  width: 70%;
  height: 2px;
  border-radius: 15px;
  background-color: #101415;
  position: absolute;
  transition: 0.4s;
}
.main-nav > .row > div .toggle-menu::before {
  transform: translateY(-5px);
}
.main-nav > .row > div .toggle-menu:after {
  transform: translateY(5px);
}
.main-nav > .row > div .toggle-menu.show:before {
  transform: rotate(45deg);
}
.main-nav > .row > div .toggle-menu.show:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 992px) {
  .main-nav > .row > .logo {
    width: 8rem;
  }
  .main-nav > .row .mobile-menu {
    display: none;
  }
  .main-nav > .row > .desktop-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .main-nav > .row > .desktop-menu > li {
    height: 40px;
  }
  .main-nav > .row > .desktop-menu > li > a {
    text-transform: capitalize;
    font-size: 1.6rem;
    color: #101415;
  }
  .main-nav > .row > div .toggle-menu {
    display: none;
  }
}
.top-header > * {
  width: 100%;
}
.top-header > figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-header > figure > img {
  width: 28%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  filter: drop-shadow(-10px 2px 15px rgba(61, 61, 61, 0.404));
}
.top-header > figure > img:nth-of-type(2), .top-header > figure > img:nth-of-type(4) {
  margin-top: 7rem;
  margin-left: -4rem;
}
.top-header > section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem;
}
.top-header > section > h1 {
  font-size: min(7rem, 7vw);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.top-header > section > p {
  text-align: justify;
  margin-bottom: 3rem;
}
.top-header > section > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.top-header > section > div:nth-of-type(1) > a {
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2rem;
}
.top-header > section > div:nth-of-type(2) > figure {
  display: flex;
}
.top-header > section > div:nth-of-type(2) > figure > img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid white;
}
.top-header > section > div:nth-of-type(2) > figure > img:not(:first-child) {
  margin-left: -1.5rem;
}
.top-header > section > div:nth-of-type(2) > h3 {
  display: flex;
  flex-direction: column;
}
.top-header > section > div:nth-of-type(2) > h3 > strong {
  font-size: 2rem;
  text-transform: uppercase;
}
.top-header > section > div:nth-of-type(2) > h3 > em {
  font-weight: normal;
  font-size: 1.3rem;
}

@media screen and (min-width: 576px) {
  .top-header > figure > img {
    width: 25%;
    height: 400px;
  }
  .top-header > figure > img:nth-of-type(2), .top-header > figure > img:nth-of-type(4) {
    margin-top: 10rem;
    margin-left: -4rem;
  }
}
@media screen and (min-width: 992px) {
  .top-header > * {
    width: 50%;
  }
  .top-header > figure {
    padding-bottom: 3rem;
    order: 1;
  }
  .top-header > figure > img {
    width: 25%;
    height: 400px;
  }
  .top-header > figure > img:nth-of-type(2), .top-header > figure > img:nth-of-type(4) {
    margin-top: 10rem;
    margin-left: -2rem;
  }
}
main > section {
  margin-block: 8rem !important;
}

.arrivals,
.best-seller {
  justify-content: space-between;
  gap: 2rem;
}
.arrivals > h2,
.best-seller > h2 {
  font-size: 4rem;
  font-weight: normal;
  width: 100%;
  display: flex;
  align-items: center;
}
.arrivals > .row,
.best-seller > .row {
  margin-block: 2rem;
  gap: 1rem;
}
.arrivals > .row > .card,
.best-seller > .row > .card {
  flex: 1 1 300px;
}

@media screen and (min-width: 768px) {
  .arrivals > h2,
  .best-seller > h2 {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.peronolize-care > .row,
.unparalleled-superiority > .row {
  gap: 1rem;
}
.peronolize-care > .row .card,
.unparalleled-superiority > .row .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 500px;
  padding: 5rem;
}
.peronolize-care > .row .card .icon,
.unparalleled-superiority > .row .card .icon {
  margin-bottom: 5rem;
}
.peronolize-care > .row .card > h3,
.unparalleled-superiority > .row .card > h3 {
  font-size: 3rem;
  text-align: center;
}
.peronolize-care > .row .card > p,
.unparalleled-superiority > .row .card > p {
  text-align: center;
}

.unparalleled-superiority > .row > .card {
  position: relative;
  flex: 1 1 400px;
}
.unparalleled-superiority > .row > .card > h3,
.unparalleled-superiority > .row > .card > p,
.unparalleled-superiority > .row > .card > .btn {
  margin-bottom: 1rem;
}
.unparalleled-superiority > .row > .card > figure {
  height: 40rem;
}
.unparalleled-superiority > .row > .card > figure > img {
  position: absolute;
  height: 40rem;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .unparalleled-superiority > .row > .card:nth-of-type(3) {
    flex: 2 1 100%;
  }
  .unparalleled-superiority > .row > .card:nth-of-type(1), .unparalleled-superiority > .row > .card:nth-of-type(5) {
    flex-grow: 3;
  }
}
.popular-brand > .row {
  gap: 1rem;
  margin-bottom: 1rem;
}
.popular-brand > .row > figure {
  --var-h: 8rem;
  width: 100%;
  position: relative;
  height: var(--var-h);
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
}
.popular-brand > .row > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-brand > .row > figure > figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fefded;
  font-size: 3rem;
  width: 100%;
  height: var(--var-h);
  display: flex;
  justify-content: center;
  align-items: center;
}
.popular-brand > .row:nth-of-type(1) > figure:nth-of-type(1) > figcaption {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(95, 227, 212, 0.7019607843) 65%);
}
.popular-brand > .row:nth-of-type(1) > figure:nth-of-type(2) > figcaption {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(137, 210, 141, 0.7019607843) 65%);
}
.popular-brand > .row:nth-of-type(1) > figure:nth-of-type(3) > figcaption {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(246, 174, 1, 0.7019607843) 65%);
}
.popular-brand > .row:nth-of-type(2) > figure:nth-of-type(1) > figcaption {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(240, 0, 47, 0.7019607843) 65%);
}
.popular-brand > .row:nth-of-type(2) > figure:nth-of-type(2) > figcaption {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(167, 84, 39, 0.7019607843) 65%);
}
.popular-brand > .row:nth-of-type(2) > figure:nth-of-type(3) > figcaption {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(253, 146, 166, 0.7019607843) 65%);
}
.popular-brand > div:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 5rem;
  height: 7rem;
}

@media screen and (min-width: 768px) {
  .popular-brand > .row > figure {
    height: 50rem;
    flex: 1 1 200px;
    transition: 1s;
  }
  .popular-brand > .row > figure:hover {
    flex-grow: 2;
  }
}
.moto {
  width: 100%;
  padding: 5rem;
  background-color: #101415;
  margin-bottom: 5rem;
  color: #fefded;
  overflow: hidden;
}
.moto > .text {
  font-size: 6rem;
  white-space: nowrap;
  font-weight: bold;
  animation: marque 10s linear infinite;
}

@keyframes marque {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.explore > .row:nth-of-type(1) {
  gap: 1rem;
  margin-bottom: 5rem;
}
.explore > .row:nth-of-type(1) > figure {
  flex: 1 1 50rem;
  aspect-ratio: 1/1;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
.explore > .row:nth-of-type(1) > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.explore > .row:nth-of-type(1) > figure > img:hover {
  scale: 1.3;
}
.explore > .row:nth-of-type(1) > figure > figcaption {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
}
.explore > .row:nth-of-type(1) > figure > figcaption > h3 {
  color: #fefded;
  font-size: 4rem;
}
.explore > .row:nth-of-type(1) > figure > figcaption > div {
  height: 5rem;
}
.explore > .row:nth-of-type(2) {
  gap: 1rem;
}
.explore > .row:nth-of-type(2) > .card {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 50rem;
}
.explore > .row:nth-of-type(2) > .card > h4 {
  font-size: 2rem;
}
.explore > .row:nth-of-type(2) > .card > p {
  text-align: center;
}

.instagram strong {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  margin-top: 0.5rem;
}
.instagram > .row {
  gap: 1rem;
  margin-top: 4rem;
}
.instagram > .row > a {
  flex: 1 1 25rem;
}
.instagram > .row > a > figure {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
.instagram > .row > a > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.instagram > .row > a > figure::after {
  content: "\f16d";
  font-size: 5rem;
  color: #fefded;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 6 Brands";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.6s;
}
.instagram > .row > a > figure:hover::after {
  opacity: 1;
}

footer {
  background-color: #101415;
  color: #fefded;
  padding-block: 4rem;
}
footer > .row {
  justify-content: space-between;
  margin-bottom: 1rem;
}
footer > .row:nth-of-type(1) {
  gap: 2rem;
}
footer > .row:nth-of-type(1) > figure {
  width: 100%;
}
footer > .row:nth-of-type(1) > figure > figcaption {
  margin-top: 1rem;
  text-align: justify;
}
footer > .row:nth-of-type(1) > figure:last-of-type {
  border-radius: 5px;
  overflow: hidden;
  perspective: 800px;
  min-height: 30rem;
}
footer > .row:nth-of-type(1) > figure:last-of-type > div {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 1s;
  transform-style: preserve-3d;
}
footer > .row:nth-of-type(1) > figure:last-of-type > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top 50%;
     object-position: top 50%;
  position: absolute;
  top: 0;
  left: 0;
  filter: saturate(200%);
}
footer > .row:nth-of-type(1) > figure:last-of-type > div > figcaption {
  transform: rotateY(180deg);
  backface-visibility: hidden;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: flex-start;
  padding-left: 2rem;
  flex-direction: column;
  background-color: #deebd9;
  color: #101415;
  margin-top: 0;
}
footer > .row:nth-of-type(1) > figure:last-of-type > div > figcaption > h3 {
  font-size: 3rem;
  line-height: 1.21;
  margin-bottom: 2rem;
  text-shadow: 5px 5px 20px grey;
}
footer > .row:nth-of-type(1) > figure:last-of-type > div > figcaption > a {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: 0.4s;
}
footer > .row:nth-of-type(1) > figure:last-of-type > div > figcaption > a:hover {
  scale: 1.3;
}
footer > .row:nth-of-type(1) > figure:last-of-type:hover > div {
  transform: rotateY(180deg);
}
footer > .row:nth-of-type(1) > div {
  width: 48%;
}
footer > .row:nth-of-type(1) > div > span {
  opacity: 0.4;
  font-weight: bold;
  font-size: 1.8rem;
}
footer > .row:nth-of-type(1) > div > ul {
  padding-left: 2rem;
}
footer > .row:nth-of-type(1) > div > ul > li {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 4rem;
}
footer > .row:nth-of-type(1) > div > ul > li > a > span {
  width: 100%;
  justify-content: start;
}
footer > .row:nth-of-type(2) {
  border-top: 2px solid #fefded;
}
footer > .row:nth-of-type(2) > p {
  width: 100%;
  text-align: center;
  padding: 2rem;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  footer > .row:nth-of-type(1) > * {
    flex: 1 1 15rem;
  }
}/*# sourceMappingURL=master.css.map */