/*=============== GOOGLE FONTS ===============*/
@import url("//fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3rem;
    /*========== Colors ==========*/
    --hue-color: 206;
    --black-color: hsl(var(--hue-color), 4%, 4%);
    --black-color-alt: hsl(var(--hue-color), 4%, 8%);
    --title-color: hsl(var(--hue-color), 4%, 95%);
    --text-color: hsl(var(--hue-color), 4%, 75%);
    --text-color-light: hsl(var(--hue-color), 4%, 65%);
    --white-color: #FFF;
    --body-color: hsl(206.51deg 42.57% 19.8%);
    --container-color: hsl(206deg 42.74% 19.74%);
    --text-gradient: linear-gradient(hsl(var(--hue-color), 4%, 24%), hsl(var(--hue-color), 4%, 8%));
    --scroll-thumb-color: hsl(var(--hue-color), 4%, 16%);
    --scroll-thumb-color-alt: hsl(var(--hue-color), 4%, 20%);
    /*========== Font and typography ==========*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 5rem;
    --bigger-font-size: 3.5rem;
    --big-font-size: 2.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --text-line-height: 2rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes Bottom ==========*/
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 1.5rem;
        --bigger-font-size: 4.5rem;
        --big-font-size: 4rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    margin: var(--header-height) 0 0 0;
    background-color: #530084;
    background-image: radial-gradient(#000000 5%, transparent 50%);
    background-size: 3px 3px;
    color: var(--text-color);
}

h1,
h2,
h3 {
    color: var(--title-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button,
input {
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    padding: 4rem 0 2rem;
}

.section__title {
    font-size: var(--bigger-font-size);
    text-align: center;
    margin-bottom: var(--mb-2-5);
}

.section__title-gradient {
    background: var(--text-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.title-h2 h2 {
    font-size: 16px;
    margin-top: 1.2rem;
}

/*=============== LAYOUT ===============*/
.main {
    overflow: hidden;
}

.container {
    max-width: 968px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
    margin-top: 0rem;
}

.ri-star-s-fill {
    font-size: 10px;
}
.ri-star-line {
    font-size: 10px;
}

/*=============== HEADER ===============*/
.header-mini1 {
          background: linear-gradient(90deg, #7500af 0%, #3e005e 25%, #8100c2 50%, #992dcf 75%, #d88bff 100%);
          height: 35px;
          position: relative;
          overflow: hidden;
          line-height: 35px;
          font-size: 18px;
          border-left: 10px solid #ffe600; 
          color: #3e2723;
          text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
          background-size: 200% 100%;
          animation: shine 3s linear infinite; 
        }
        
        .scrolling-wrapper-meme4d {
          display: flex;
          width: max-content;
          position: absolute;
          animation: scrollInfinite 12s cubic-bezier(0.25, 1, 0.5, 1) infinite;
        }
        
        .scrolling-text {
          white-space: nowrap;
          padding-right: 50px;
          font-size: 15px;
          color: #fff;
          text-shadow: 1px 2px 2px rgba(0,0,0,0.5);
          opacity: 0;
          animation: fadeInMove 2s ease-out forwards, bounce 1.5s ease-in-out infinite alternate;
          text-transform: uppercase;
        }
        
        @keyframes shine {
          0% { background-position: 200% 0; }
          100% { background-position: -200% 0; }
        }
        
        @keyframes fadeInMove {
          0% {
            opacity: 0;
            transform: translateX(50px);
          }
          100% {
            opacity: 1;
            transform: translateX(0);
          }
        }
        
        @keyframes scrollInfinite {
          0% { transform: translateX(0); }
          100% { transform: translateX(-50%); }
        }
        
        @keyframes bounce {
          0% { transform: translateY(0); }
          50% { transform: translateY(-2px); }
          100% { transform: translateY(0); }
        }
        .header-mini {
            background-color: #262626;
            height: 60px;
            position: relative;
            text-align: center;
            padding-top: 10px;
        }
  /* === Snowfall Overlay Neon Green === */
  .snow-wrap {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
  }
  
  /* basic flake */
  .snowflake {
    position: absolute;
    top: -10vh;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(153, 0, 255, 0.8) 0 45%, rgba(153, 0, 255, 0.8) 55%, rgba(20, 255, 220, 0) 70%);
    filter: drop-shadow(0 0 10px rgb(140, 0, 255)) blur(0.3px);
    opacity: .95;
    animation:
      fall var(--dur, 12s) linear var(--delay, 0s) infinite,
      sway var(--sway, 6s) ease-in-out var(--delay, 0s) infinite alternate;
    will-change: transform;
  }
  
  /* glowing variations */
  .snowflake.-sm {
    width: 4px;
    height: 4px;
    opacity: .8;
    filter: drop-shadow(0 0 6px rgba(153, 0, 255, 0.8));
  }
  
  .snowflake.-lg {
    width: 12px;
    height: 12px;
    opacity: .9;
    filter: drop-shadow(0 0 15px rgba(153, 0, 255, 0.8));
  }
  
  /* motion */
  @keyframes fall {
    to {
      transform: translate3d(var(--drift, 0px), 110vh, 0) rotate(var(--rot, 180deg));
    }
  }
  @keyframes sway {
    from { margin-left: -10px; }
    to   { margin-left: 10px; }
  }
  
  /* gentle glow animation for more life */
  @keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(153, 0, 255, 0.8)); }
    50% { filter: drop-shadow(0 0 15px rgba(153, 0, 255, 0.8)); }
  }
  .snowflake { animation: glow 2s ease-in-out infinite alternate, fall var(--dur,12s) linear var(--delay,0s) infinite, sway var(--sway,6s) ease-in-out var(--delay,0s) infinite alternate; }
  
  /* optional: prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .snowflake { animation: none; }
  }
  .faq-section-meme{
    max-width:1200px;
    margin:30px auto;
    padding:20px 10px;
    position:relative;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    }
         
    .faq-section-meme::before{
    content:"";
    position:absolute;
    top:0;left:50%;
    transform:translateX(-50%);
    width:80%;
    height:2px;
    background:linear-gradient(90deg,transparent,#aa00ff,transparent)
    }
             
    .faq-section-meme h2{
    text-align:center;
    font-size:34px;font-weight:700;
    margin-bottom:50px;
    background: linear-gradient(135deg, #aa00ff, #aa00ff, #aa00ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    font-family:"Poppins",sans-serif;letter-spacing:1px
    }
         
    .faq-container{
    display:flex;
    flex-direction:column;
    gap:25px
    }
         
    .faq-item-meme{
    background:linear-gradient(145deg,#0a0a0a,#1a1a1a);
    border:2px solid #aa00ff;
    border-radius:20px;overflow:hidden;
    transition:all .4s ease;box-shadow:0 5px 20px rgba(0,0,0,0.5)
    }
         
    .faq-item-meme:hover{
    border-color:#aa00ff;
    transform:translateX(10px);
    box-shadow:0 12px 35px #aa00ffbb;
    }
 
    .faq-question{width:100%;
    padding:28px 35px;background:transparent;
    color:#ffffff;
    font-size:18px;
    font-weight:600;
    text-align:left;
    border:none;cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-family:"Poppins",sans-serif;
    transition:all .3s ease
    }
         
    .faq-question:hover{
    color:#aa00ff
    }
         
    .faq-question::after{
    content:'+';
    font-size:32px;
    font-weight:300;
    transition:all .4s ease;
    color:#aa00ff;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #aa00ff;border-radius:50%;
    background:rgba(0, 0, 0, 0.1)
         }
         
    .faq-item-meme.active .faq-question::after{
             transform:rotate(135deg);
             background:linear-gradient(135deg,#aa00ff,#5c008a);
             color:#000;border-color:transparent
         }
         
    .faq-answer-meme{
      max-height:0;
      overflow:hidden;
        transition:max-height .5s ease,padding .5s ease;
        background:linear-gradient(180deg,#9100da, transparent);
        padding:0 35px
         }
         
         .faq-item-meme.active .faq-answer-meme{
             max-height:800px;padding:30px 35px;
             border-top:1px solid rgba(153, 4, 253, 0.3)
         }
         
         .faq-answer-meme p{
             color:#e0e0e0;
             font-size:16px;
             line-height:2;
             margin:0;
             font-family:"Poppins",sans-serif
         }
 
         @media
             (max-width:768px)
         {
         
         .faq-section-meme
             {padding:30px 15px}
         
         .faq-section-meme h2
             {font-size:26px}
         
         .faq-question
             {font-size:16px;
             padding:22px 25px}
         
         .faq-question::after
             {width:35px;
             height:35px;
             font-size:28px}
         
         .faq-answer-meme
             {padding:0 25px}
         
         .faq-item-meme.active .faq-answer-meme
             {padding:25px}
         
         .faq-item-meme:hover
             {transform:translateX(5px)}
             }
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background: transparent;
}

.nav_login a {
    color: rgb(0, 0, 0);
    background: linear-gradient(135deg, #62078e, #c900ed);
    box-shadow: 0 6px 0 #9000a7, 0 15px 20px rgba(0, 0, 0, 0.35);
    border-radius: 7px;
    padding: 7px 23px;
}

.nav_daftar a {
    color: rgb(0, 0, 0);
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    box-shadow: 0 6px 0 #d68910, 0 15px 20px rgba(0, 0, 0, 0.35);
    border-radius: 7px;
    padding: 7px 20px;
}

.nav_login a,
.nav_daftar a {
    margin: -20px;
}

.nav_login a:hover {
    color: rgb(0, 0, 0);    
    background: linear-gradient(135deg, #62078e, #c900ed);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3), 0 12px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    top: 5px;
}

.nav_daftar a:hover {
    color: white;
    position: relative;
    top: 5px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3), 0 12px 15px rgba(0, 0, 0, 0.3);
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.nav__logo {
    display: flex;
    width: 7rem;
}

.nav__toggle {
    font-size: 1.2rem;
    color: var(--white-color);
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        background-color: var(--body-color);
        top: -100%;
        left: 0;
        width: 100%;
        padding: 4rem 0 3rem;
        transition: .4s;
    }
}

.nav__menu {
    margin-left: 25%;
    margin-top: 2rem;
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}

.nav_button {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0rem;
}

.nav__link {
    font-size: var(--h2-font-size);
    text-transform: uppercase;
    font-weight: var(--font-semi-bold);
    background: var(--text-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    transition: .4s;
}

.nav__link:hover {
    background: var(--white-color);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.nav__close {
    position: absolute;
    font-size: 1.5rem;
    top: 1rem;
    right: 1rem;
    color: var(--white-color);
    cursor: pointer;
}

/* show menu */
.show-menu {
    top: 0;
}

/* Change background header */
.scroll-header {
    background-color: var(--body-color);
}

/* Active link */
.active-link {
    color: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
}

.active-link:hover {
    color: goldenrod;
    -webkit-background-clip: text;
    background-clip: text;
}

/*=============== HOME ===============*/
.home {
    margin-bottom: -2rem;
}

.home__img {
    width: 250px;
    position: absolute;
    top: -16rem;
    right: 1.5rem;
}

.home__data {
    padding-top: 5rem;
}

.home__header {
    position: relative;
}

.home__title {
    position: absolute;
    top: -4rem;
    left: 1rem;
    line-height: 2rem;
    font-size: var(--biggest-font-size);
    background: var(--text-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.home__subtitle {
    font-size: var(--big-font-size);
    margin-bottom: var(--mb-2-5);
}

.home__title-description {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1);
}

.home__description {
    margin-bottom: var(--mb-2-5);
    line-height: var(--text-line-height);
    text-align: center;
}

.home__description a {
    color: goldenrod;
}

.home__price {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-left: var(--mb-0-75);
}



/*=============== BUTTONS ===============*/
.button {
    display: inline-block;
    background-color: hsl(206.51deg 27.66% 16.42%);
    color: var(--white-color);
    padding: 1rem 1.25rem;
    border-radius: .5rem;
    transition: .3s;
}

.button:hover {
    background-color: var(--black-color-alt);
}

.button__icon {
    font-size: 1.2rem;
}

.button--flex {
    display: inline-flex;
    align-items: center;
    column-gap: 4rem;
}

.info-claim {
    margin-left: 18px;
}

/*=============== SPONSOR ===============*/
.sponsor__img {
    width: 90px;
}

.sponsor__container {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    row-gap: 5rem;
    justify-items: center;
    align-items: center;
}

/*=============== SPECS ===============*/
.specs__container {
    position: relative;
}

.specs__content {
    row-gap: 1.5rem;
}

.specs__data {
    display: grid;
    row-gap: .25rem;
}

.specs__icon {
    font-size: 1.2rem;
    color: var(--white-color);
}

.specs__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

.specs__subtitle {
    font-size: var(--smaller-font-size);
}

.specs__data:nth-child(1),
.specs__data:nth-child(4) {
    margin-left: 1.5rem;
}

.specs__img {
    width: 260px;
    position: absolute;
    top: 5rem;
    right: -4rem;
}

/*=============== CASE ===============*/
.case__container {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
}

.case__data {
    padding: 2rem 0 2rem;
}

.case__description a {
    color: goldenrod;
}

.case__img {
    width: 250px;
    position: absolute;
    left: -4rem;
    top: 15%;
}

.case__description {
    margin-bottom: var(--mb-1-5);
    line-height: var(--text-line-height);
    text-align: center;
    text-shadow: 1px 1px 1px #4417d1;
}

.specs h2 , .specs h3 {
    font-size: 25px;
    font-weight: 800;
    color: white;
}

.case h3 {
    font-size: 25px;
    font-weight: 800;
    color: white;
}

.products h2 {
    font-size: 25px;
    font-weight: 800;
    color: white;
}

.case_official {
    margin-right: 20rem;
    margin-left: 20rem;
    text-align: justify;
    padding: 10px 0px;
    margin-top: -2em;
}
.Article_official h2 {
    text-align: center;
    margin-top: 2rem;
    padding: 0rem 0rem 2rem;
    font-size: 18px;
}

.case_official a {
    color: goldenrod;
}

/*=============== DISCOUNT ===============*/

.discount__container {
    position: relative;
    background-color: hsl(0deg 0% 0%);
    padding: 5rem 4.5rem;
    border-radius: .75rem;
    top: 5rem;
    right: 0rem;
    text-align: justify;
}

.discount__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-75);
    text-align: center;
}

.discount__description {
    margin-bottom: var(--mb-1);
    text-align: center;
}

.discount__img {
    width: 300px;
    position: absolute;
    top: -13rem;
    right: 1rem;
}

.text-i {
    position: relative;
}

/*=============== PRODUCTS ===============*/
.products__line {
    line-height: 1.5rem;
    font-size: 20px;
}

.products__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 1.5rem;
    padding-top: 3rem;
}

.products__card {
    position: relative;
    height: 132px;
    background-color: var(--container-color);
    padding: .75rem;
    border-radius: .5rem;
    display: grid;
}

.products__card h3 {
    color: gold;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}

.products__img {
    width: 80px;
    position: absolute;
    inset: 0;
    margin-right: auto;
    margin-left: auto;
    top: -3rem;
}

.products__content {
    align-self: flex-end;
}

.products__title,
.products__price {
    font-size: var(--small-font-size);
}

.products__price {
    font-weight: var(--font-semi-bold);
    margin-right: -15px;
}

.products__button {
    position: absolute;
    right: .5rem;
    bottom: .5rem;
    padding: .5rem;
    border-radius: .35rem;
}

/*=============== FOOTER ===============*/

.footer__container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    row-gap: 2rem;
}

.footer__logo {
    width: 5rem;
}

.footer__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1);
}

.footer__links {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

.footer__link {
    color: var(--text-color);
}

.footer__link:hover {
    color: var(--white-color);
}

.footer__form {
    display: flex;
    column-gap: .5rem;
    background-color: var(--container-color);
    padding: .5rem .75rem;
    border-radius: .5rem;
    margin-bottom: var(--mb-2);
}

.footer__input {
    background-color: var(--container-color);
    width: 90%;
    color: var(--white-color);
}

.footer__input::placeholder {
    color: var(--text-color);
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
}

.footer__social {
    display: flex;
    column-gap: 1.25rem;
}

.footer__social-link {
    display: inline-flex;
    color: var(--white-color);
    background-color: var(--container-color);
    padding: .5rem;
    border-radius: .25rem;
    font-size: 1rem;
}

.footer__social-link:hover {
    background-color: var(--black-color);
}

.footer__copy {
    margin-top: 5rem;
    text-align: center;
}

.footer__copy a {
    color: goldenrod;
}

.footer__copy i {
    position: relative;
    top: 5px;
}

.footer__copy-link {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

.footer-strong {
    font-size: 16px;
}

.footer-promo {
    display: flex;
    width: 600px;
    justify-content: space-around;
}

.dmca-badge img {
    margin-bottom: -5px;
}

/*=============== SCROLL UP ===============*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    display: flex;
    background-color: var(--container-color);
    border-radius: .25rem;
    padding: .45rem;
    opacity: 9;
    z-index: var(--z-tooltip);
    transition: .4s;
}

.scrollup:hover {
    background-color: var(--black-color);
    opacity: 1;
}

.scrollup__icon {
    color: var(--white-color);
    font-size: 1.35rem;
}

/* Show Scroll Up*/
.show-scroll {
    bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: .60rem;
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color);
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--scroll-thumb-color-alt);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media only screen and (max-width: 371px) and (min-width: 320px) {
    .products__card {
        position: relative;
        height: 132px;
        width: 296px;
        border-radius: .5rem;
        display: grid;
        margin-left: -5em;
    }

    .discount__img {
        width: 300px;
        position: absolute;
        top: -13rem;
        right: 2.6rem;
    }

    .discount__img {
        margin-right: -1.2rem;
    }

    .case__img {
        width: 220px;
        top: -2rem;
        left: -9rem;
    }

    .products__button {
        margin-right: 4.5rem;
    }

}

@media only screen and (min-width: 375px) {
    
    .button--flex {
        display: flex;
        column-gap: 4rem;
    }
}

@media screen and (max-width: 414px) {
    .discount__img {
        margin-right: -0.5rem;
    }

}

@media screen and (max-width: 390px) {
    .discount__img {
        margin-right: -1.6rem;
    }

    .home__img {
        margin-right: -1.5rem;
    }
}

@media screen and (max-width: 320px) {
    .discount__img {
        right: 0rem;
    }
    
}

@media screen and (max-width: 430px) {

    .home__img {
        width: 300px;
        position: absolute;
        top: 5.5rem;
        right: 4rem;
    }
    
    .home__data {
        padding-top: 23rem;
    }

    .text-i {
        position: relative;
        line-height: 6em;
        margin-top: -40%;
        font-size: 14px;
        color: gold;
        text-shadow: 1px 1px 1px black;
    }

    .case_official {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .discount__img {
        width: 300px;
        position: absolute;
        top: -14rem;
        right: 3rem;
    }

    .home__header h1 {
        font-size: 18px;
        text-align: center;
        color: white;
    }

    .home__header h2 {
        font-size: 16px;
    }

    .button--flex {
        display: flex;
        column-gap: 4rem;
    }

    .flex-info {
        column-gap: 2.8rem;
    }

    .info-claim {
        display: flex;
    }

    .footer-promo {
        display: flex;
        justify-content: space-between;
        margin-right: 10px;
        margin-left: 10px;
        width: 275px;
    }

    .footer {
        padding: 0rem 0 0rem;
    }

    .nav-login a ,
    .nav-daftar a {
        color: rgb(0, 0, 0);
        font-weight: 600;
    }

    .nav-login a:hover ,
    .nav-daftar a:hover {
        color: black;
    }

    .nav-login {
        padding: 5px 15px;
        border-radius: 5px;
        background: linear-gradient(135deg, #62078e, #c900ed);
        box-shadow: 0 6px 0 #9000a7, 0 15px 20px rgba(0, 0, 0, 0.35);
        
    }
    .nav-daftar {
        padding: 5px 15px;
        border-radius: 5px;
        background: linear-gradient(135deg, #f1c40f, #f39c12);
        box-shadow: 0 6px 0 #d68910, 0 15px 20px rgba(0, 0, 0, 0.35);
        
    }

    .nav-login:hover ,
    .nav-daftar:hover {
        box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3), 0 12px 15px rgba(0, 0, 0, 0.3);
        position: relative;
        top: 5px;
    }

}

@media screen and (max-width: 372px) {
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .text-i {
        position: relative;
        line-height: 6em;
        margin-top: -55%;
    }

    .section__title {
        font-size: var(--big-font-size);
    }

    .home__img {
        width: 275px;
        top: 5rem;
    }

    .home__title {
        top: -4rem;
        font-size: var(--bigger-font-size);
    }

    .home__data {
        padding-top: 20rem
    }

    .home__description {
        font-size: var(--small-font-size);
    }

    .specs__img {
        width: 270px;
        margin-top: 3rem;
        margin-right: -1rem;
    }

    .case__container {
        grid-template-columns: .6fr 1fr;
    }

    .case__img {
        width: 170px;
        height: 320px;
        top: 1rem;
        left: -3rem;
    }

    .case__data {
        padding: 0;
    }

    .products__container {
        grid-template-columns: 142px;
        justify-content: center;
    }
}

/* For medium devices */
@media screen and (min-width: 576px) {
    .home__container {
        grid-template-columns: .8fr 1fr;
    }

    .home__data {
        padding-top: 2rem;
    }

    .home__img {
        top: -7rem;
        left: 0;
    }

    .specs__img {
        position: initial;
    }

    .specs__container {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
    }

    .case__img {
        position: initial;
    }

    .case__data {
        padding: 0;
    }

    .case__container {
        grid-template-columns: max-content 250px;
        justify-content: center;
        align-items: center;
        column-gap: 2rem;
    }

    .discount__img {
        position: initial;
    }

    .discount__container {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
    }

    .products__container {
        grid-template-columns: repeat(3, 142px);
        justify-content: center;
    }
}

@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

    .section {
        padding: 5rem 0 0rem;
    }

    .products {
        padding: 2rem 0 0rem;
    }

    .specs {
        padding: 2rem 0 0rem;
    }

    .footer {
        padding: 0rem 0 0rem;
    }
    
    .nav {
        height: calc(var(--header-height) + 2.5rem);
        display: flex;
        justify-content: space-around;
    }

    .footer-promo {
        display: flex;
        width: 450px;
        justify-content: space-around;
    }

    .nav__logo {
        width: 9rem;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 3.5rem;
        margin-top: 1.3rem;
    }

    .nav_button {
        flex-direction: row-reverse;
        column-gap: 3.5rem;
        margin-top: 1rem;
    }

    .nav__link {
        font-size: var(--normal-font-size);
        text-transform: initial;
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .home__container {
        position: relative;
        grid-template-columns: repeat(2, 1fr);
    }

    .home__img {
        top: 12rem;
        left: 4rem;
    }

    .home__data {
        padding-top: 9rem;
    }

    .specs__img {
        width: 400px;
        height: 400px;
        margin-left: -3rem;
        margin-bottom: 3rem;
    }

    .case__container {
        column-gap: 5rem;
    }

    .case__img {
        width: 300px;
    }

    .case__description {
        margin-bottom: var(--mb-2);
    }

    .discount__container {
        grid-template-columns: 250px max-content;
        justify-content: center;
        column-gap: 5rem;
        padding: 3rem 0;
        margin-top: -10%;
    }

    .discount__title {
        font-size: var(--h2-font-size);
        margin-bottom: var(--mb-1);
    }

    .discount__description {
        margin-bottom: var(--mb-2);
    }

    .products__container {
        grid-template-columns: repeat(4, 150px);
        gap: 6rem 3rem;
        padding-top: 5rem;
    }

    .products__card {
        height: 152px;
        padding: .85rem;
    }

    .products__img {
        width: 95px;
    }

    .footer__container {
        grid-template-columns: .4fr .7fr .7fr 1fr;
    }
}

@media screen and (min-width: 540px) {
    .home__header h1 {
        font-size: 18px;
        text-align: center;
        color: goldenrod;
    }
}

/* For large devices */
@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .home__img {
        width: 400px;
        top: 6.5rem;
    }

    .home__title {
        top: -4rem;
        left: -1rem;
    }

    .home__description {
        padding-right: 0rem;
    }

    .sponsor__img {
        width: 100px;
    }

    .discount__img {
        width: 350px;
    }

    .footer__container {
        padding-top: 3rem;
    }

    .footer__copy {
        margin-top: 9rem;
    }
}