/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;900&display=swap");
/* VARIABLES CSS */
:root {
    --header-height: 3.5rem;
    /* Colors */
    --hue: 14;
    --first-color: hsl(var(--hue), 91%, 54%);
    --first-color-alt: hsl(var(--hue), 91%, 50%);
    --title-color: hsl(var(--hue), 4%, 100%);
    --text-color: hsl(var(--hue), 4%, 85%);
    --text-color-light: hsl(var(--hue), 4%, 55%);
    /*Red gradient*/
    --body-color: linear-gradient( 90deg, hsl(338, 67%, 11%) 0%, hsl(281, 63%, 10%) 100% );
    --container-color: linear-gradient( 136deg, hsl(338, 67%, 11%) 0%, hsl(281, 63%, 10%) 100% );
    --sub: #ff5b79;
    /* Font and typography */
    --body-font: "Poppins", sans-serif;
    --biggest-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    /* Font weight */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-black: 900;
    /* Margenes Bottom */
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.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;
}
/* Responsive typography */
@media screen and (min-width: 992px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
        --smaller-font-size: 0.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);
    background: var(--body-color);
    color: var(--text-color);
    transition: 0.3s;
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input {
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}
/* REUSABLE CSS CLASSES */
.section {
    padding: 1rem 0 2rem;
}

.section__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-2);
    text-align: center;
}
/* LAYOUT */
.container {
    max-width: 968px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
}

.main {
    overflow: hidden; /*For animation*/
}


@keyframes shadowRolling {
    0% {
        box-shadow: var(--shadow), var(--shadow), var(--shadow), var(--shadow);
    }

    12% {
        box-shadow: 100px 0 var(--ballcolor), var(--shadow), var(--shadow), var(--shadow);
    }

    25% {
        box-shadow: 110px 0 var(--ballcolor), 100px 0 var(--ballcolor), var(--shadow), var(--shadow);
    }

    36% {
        box-shadow: 120px 0 var(--ballcolor), 110px 0 var(--ballcolor), 100px 0 var(--ballcolor), var(--shadow);
    }

    50% {
        box-shadow: 130px 0 var(--ballcolor), 120px 0 var(--ballcolor), 110px 0 var(--ballcolor), 100px 0 var(--ballcolor);
    }

    62% {
        box-shadow: 200px 0 var(--shadowcolor), 130px 0 var(--ballcolor), 120px 0 var(--ballcolor), 110px 0 var(--ballcolor);
    }

    75% {
        box-shadow: 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 130px 0 var(--ballcolor), 120px 0 var(--ballcolor);
    }

    87% {
        box-shadow: 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 130px 0 var(--ballcolor);
    }

    100% {
        box-shadow: 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor), 200px 0 var(--shadowcolor);
    }
}
/* BUTTON */
button.Primary {
    position: relative;
    background: var(--sub);
    border: 1px solid white;
    padding: 20px;
    font-size: 0.9em;
    color: white;
    box-shadow: 4px 4px 0px 0px white;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
    left: 0;
    top: 0;
}

button.Primary:hover {
    left: 4px;
    top: 4px;
    box-shadow: 0 0 0 0 white;
}

button.Secondry {
    position: relative;
    background: transparent; 
    border: 1px solid white;
    padding: 15px;
    font-size: 0.6em;
    color: white;
    box-shadow: 4px 4px 0px 0px white;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
    left: 0;
    top: 0;
}

button.Secondry:hover {
    left: 4px;
    top: 4px;
    box-shadow: 0 0 0 0 white;
}

button.tertiary {
    position: relative;
    background: transparent; 
    border: 1px solid var(--sub);
    padding: 10px;
    font-size: 0.6em;
    color: white;
    box-shadow: 4px 4px 0px 0px var(--sub);
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
    left: 0;
    top: 0;
    margin-bottom: 10px;
}

    button.tertiary:hover {
        left: 4px;
        top: 4px;
        box-shadow: 0 0 0 0 var(--sub);
    }

/* HEADER */
.header {
    width: 100%;
    background: var(--body-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
}
/* NAV */
.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: var(--font-medium);
}

.nav__logo-img {
    width: 1.25rem;
}

.nav__link,
.nav__logo,
.nav__toggle,
.nav__close {
    color: var(--sub);
}

.nav__toggle {
    font-size: 1.25rem;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        width: 100%;
        background: var(--container-color);
        top: -150%;
        left: 0;
        color: #ff5b79;
        padding: 3.5rem 0;
        transition: 0.4s;
        z-index: var(--z-fixed);
        border-radius: 0 0 1.5rem 1.5rem;
    }
}

.nav__img {
    width: 100px;
    position: absolute;
    top: 0;
    left: 0;
}

.nav__close {
    font-size: 1.8rem;
    position: absolute;
    top: 0.5rem;
    right: 0.7rem;
    cursor: pointer;
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
}

.nav__link {
    text-transform: uppercase;
    font-weight: var(--font-black);
    transition: 0.4s;
}

    .nav__link:hover {
        color: var(--text-color);
    }
/* Show menu */
.show-menu {
    top: 0;
}
/* Change background header */
.scroll-header {
    background: var(--container-color);
}
/* Active link */
.active-link {
    position: relative;
}

    .active-link::before {
        content: "";
        position: absolute;
        bottom: -0.75rem;
        left: 45%;
        width: 5px;
        height: 5px;
        background-color: var(--sub);
        border-radius: 50%;
    }
/* HOME */
.home__content {
    row-gap: 1rem;
}

.home__group {
    display: grid;
    position: relative;
    padding-top: 2rem;
}

.home__img {
    height: 250px;
    justify-self: center;
}

.home__indicator {
    width: 8px;
    height: 8px;
    background-color: var(--title-color);
    border-radius: 50%;
    position: absolute;
    top: 7rem;
    right: 2rem;
}

    .home__indicator::after {
        content: "";
        position: absolute;
        width: 1px;
        height: 48px;
        background-color: var(--title-color);
        top: -3rem;
        right: 45%;
    }

.home__details-img {
    position: absolute;
    right: 0.5rem;
}

.home__details-title,
.home__details-subtitle {
    display: block;
    font-size: var(--small-font-size);
    text-align: right;
}

.home__subtitle {
    font-size: var(--h3-font-size);
    color: var(--sub);
    text-transform: uppercase;
    margin-bottom: var(--mb-1);
}

.pumpkin__subtitle {
    font-size: var(--h3-font-size);
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: var(--mb-1);
}

.home__title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-black);
    line-height: 109%;
    margin-bottom: var(--mb-1);
}

.home__description {
    margin-bottom: var(--mb-1);
}

.home__buttons {
    display: flex;
    justify-content: space-between;
}

/* Swiper Class */
.swiper-pagination {
    position: initial !important;
    margin-top: var(--mb-1) !important;
}

.swiper-pagination-bullet {
    width: 5px !important;
    height: 5px !important;
    opacity: 1 !important;
    background-color: white !important;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
.swiper-pagination-bullet {
    margin: 0 0.5rem !important;
}

.swiper-pagination-bullet-active {
    width: 1.5rem !important;
    height: 5px !important;
    border-radius: 0.5rem !important;
    background-color: white !important;
}
/* BUTTONS */
.button {
    display: inline-block;
    background-color: var(--first-color);
    color: var(--sub);
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    transition: 0.3s;
}

    .button:hover {
        background-color: var(--first-color-alt);
    }

.button__icon {
    font-size: 1.25rem;
}

.book--now {
    display: inline-block;
    transition: 0.3s;
}

    .book--now:hover {
        transform: scale(1.2);
    }

.button--border {
    border: 2px solid;
    background-color: transparent;
    border-radius: 3rem;
    padding: 0.75rem 1.5rem;
}

    .button--border:hover {
        background: none;
        color: white;
        transition: 0.4s;
    }



.button--link {
    color: var(--title-color);
}

.button--flex {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
}
/* CATEGORY */
.category__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}

.category__data {
    text-align: center;
}

.category__img {
    width: 120px;
    margin-bottom: var(--mb-0-75);
    transition: 0.3s;
}

.category__title {
    margin-bottom: var(--mb-0-25);
}

.category__data:hover .category__img {
    transform: translateY(-0.5rem);
}
/* ABOUT */
.about__container {
    row-gap: 2rem;
}

.about__data {
    text-align: center;
}

.about__description {
    margin-bottom: var(--mb-2);
}

.about__img {
    width: 200px;
    justify-self: center;
    animation: floating 2s ease-in-out infinite;
}
/* quiz */
.quiz__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 1rem;
}

.quiz__content {
    position: relative;
    background-image: linear-gradient(90deg, hsl(338, 67%, 21%), hsl(281, 63%, 20%));
    border-radius: 1rem;
    padding: 1.5rem 0 1rem 0;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
    background-size: 200% auto;
}

    .quiz__content:hover {
        background-position: right center;
    }


.quiz__img {
    width: 90px;
    transition: 0.3s;
}

.quiz__subtitle,
.quiz__price {
    display: block;
}

.quiz__subtitle {
    font-size: var(--smaller-font-size);
    margin-bottom: var(--mb-0-5);
}

.quiz__title,
.quiz__price {
    color: var(--title-color);
    font-weight: var(--font-medium);
    font-size: var(--normal-font-size);
}

.quiz__button {
    display: inline-flex;
    padding: 0.5rem;
    border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3rem;
}

.quiz__icon {
    font-size: 1.25rem;
    color: var(--title-color);
}

.quiz__content:hover .quiz__img {
    transform: translateY(-0.5rem);
}

.quiz__content:hover .quiz__button {
    bottom: 0rem;
}
/* DISCOUNT */


/* LEADERBOARD */
.leaderboard__container {
    border-radius: 1rem;
    row-gap: 0.75rem;
    
}

.leaderboard__data {
    text-align: center;

}

.leaderboard__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.leaderboard__title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-2);
}

.leaderboard .body {
    color: snow;
    font-size: 16px;
}

.leaderboard ol {
    counter-reset: number;
}

.leaderboard li {
    margin-bottom: 16px;
    padding: 16px;
    display: flex;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--c1, hsl(338, 67%, 21%)), var(--c2, hsl(338, 67%, 21%) ) 51%, var(--c1, hsl(281, 63%, 20%))) var(--x, 0)/ 200%;
    transition: 1s;
    background-size: 130% auto;
}

    .leaderboard li:hover {
        --x: 100%;
    }


    .leaderboard li mark {
        flex-grow: 1;
        color: snow;
        background-color: transparent;

    }

    .leaderboard li:before {
        counter-increment: number; 
        content: counter(number) "."; 
        margin-right: 4px;

    }



/* NEW ARRIVALS */
.new__container {
    padding-top: 1rem;
}

.new__img {
    width: 120px;
    margin-bottom: var(--mb-0-5);
    transition: 0.3s;
}

.new__content {
    position: relative;
    background: url('https://i.pinimg.com/originals/fd/83/c4/fd83c43fefd3a9bfe37005a3e6e9da14.jpg') center/cover;
    width: 242px;
    padding: 2rem 0 1.5rem 0;
    border-radius: 0.75rem;
    text-align: center;
    overflow: hidden;
}
    .new__content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: black; 
        opacity: 0.5; 
        z-index: -1; 
    }
.new__tag {
    position: absolute;
    top: 8%;
    left: 8%;
}

.new__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

.new__subtitle {
    display: block;
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-0-5);
}

.new__prices {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
}

.new__price {
    font-weight: var(--font-medium);
    color: var(--title-color);
}

.new__discount {
    color: var(--first-color);
    font-size: var(--smaller-font-size);
    text-decoration: line-through;
    font-weight: var(--font-medium);
}

.new__button {
    display: inline-flex;
    padding: 0.5rem;
    border-radius: 0.25rem 0.25rem 0.75rem 0.25rem;
    position: absolute;
    bottom: 0;
    right: -3rem;
}

.new__icon {
    font-size: 1.25rem;
}

.new__content:hover .new__img {
    transform: translateY(-0.5rem);
}

.new__content:hover .user__img {
    transform: translateY(-0.5rem);
}

.user__content1:hover .user__img {
    transform: translateY(-0.5rem);
}


.user__content:hover .new__img {
    transform: translateY(-0.5rem);
}



.new__content:hover .new__button {
    right: 0;
}
/* NEWSLETTER */
.newsletters__container {
    background: var(--container-color);
    border-radius: 1rem;
    padding: 2.5rem 0 1.5rem !important;
    row-gap: 0.75rem !important;
}

.newsletters__data {
    text-align: center;
    align-items: center;
}

.newsletters__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-2);
}

.newsletters__img {
    width: 200px;
    cursor: pointer;
    animation: bouncebody alternate infinite 400ms 40ms ease-in-out;
}

.newsletter__description {
    text-align: center;
    margin-bottom: var(--mb-1-5);
}

.newsletter__form {
    background-image: linear-gradient(90deg, hsl(338, 67%, 21%), hsl(281, 63%, 20%));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    border-radius: 0.75rem;
}

.newsletter__input {
    padding: 0 0.5rem;
    background: none;
    color: var(--title-color);
}

    .newsletter__input::placeholder {
        color: var(--text-color);
    }
.news {
    padding-right: 1rem;
    padding-left: 1rem;
}
/* SCROLL UP */
.scrollup {
    position: fixed;
    background: var(--container-color);
    right: 1rem;
    bottom: -20%;
    display: inline-flex;
    padding: 0.3rem;
    border-radius: 0.25rem;
    z-index: var(--z-tooltip);
    opacity: 0.8;
    transition: 0.4s;
}

.scrollup__icon {
    font-size: 1.25rem;
    color: var(--title-color);
}

.scrollup:hover {
    background: var(--container-color);
    opacity: 1;
}
/* Show Scroll Up*/
.show-scroll {
    bottom: 3rem;
}
/* SCROLL BAR */
::-webkit-scrollbar {
    width: 0.6rem;
    background: #413e3e;
}

::-webkit-scrollbar-thumb {
    background: #272525;
    border-radius: 0.5rem;
}

/* user */
.user__container:after {
    display: table;
    content: "";
    clear: both;
}

.user__bg {
    height: 250px;
}
.user__container2 {
    margin-top: -130px;
    margin-left: 10%;
    margin-right: 10%;
}

.user__tag {
    text-align: left;
    position: absolute;
    top: 8%;
    left: 8%;
    color: white;
}
.userimg_holder {
    position: absolute;
    top: 8%;
    right: 8%;
}

.user__img {
    width: 80px;
    margin-bottom: var(--mb-0-5);
    transition: 0.3s;
}

.user__content1 {
    position: relative;
    background: url('https://moewalls.com/wp-content/uploads/2023/08/eerie-moon-outlast-2-thumb.jpg') center/cover;
    width: 242px;
    padding: 2rem 0 1.5rem 0;
    border-radius: 0.75rem;
    text-align: center;
    overflow: hidden;
}

.user__content1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: -1;
}

.user__content {
    position: relative !important;
    background: url('https://i.pinimg.com/originals/fd/83/c4/fd83c43fefd3a9bfe37005a3e6e9da14.jpg') center/cover;
    width: 242px !important;
    padding: 2rem 0 1.5rem 0;
    border-radius: 0.75rem;
    text-align: center;
    overflow: hidden;
}

    .user__content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.5;
        z-index: -1;
    }

/* Section Styles */
.section-head {
    font-size: 1.4rem;
    color: var(--color-main);
    font-weight: 600;
    margin-bottom: 1rem;
}

.analytics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2.5rem;
    margin-bottom: 3rem;
}

.analytic {
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    padding-left: 2rem;
    
}

.bg1 {
    position: relative;
    overflow: hidden;
}

    .bg1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://www.creativefabrica.com/wp-content/uploads/2022/06/13/Tileable-Colourfull-Halloween-Background-Graphics-32232878-1-580x387.jpg') center;
        background-size: cover;
        transition: transform 0.3s ease;
        z-index: -1;
    }

    .bg1:hover::before {
        transform: scale(1.1); /* Adjust the scale factor as needed for desired zoom effect */
    }


.bg2 {
    position: relative;
    overflow: hidden;
}

    .bg2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://img.freepik.com/premium-vector/background-vector-design-with-halloween-theme_875768-580.jpg?size=338&ext=jpg&ga=GA1.1.1413502914.1696723200&semt=ais') center;
        background-size: cover;
        transition: transform 0.3s ease;
        z-index: -1;
    }

    .bg2:hover::before {
        transform: scale(1.1); /* Adjust the scale factor as needed for desired zoom effect */
    }

.m {
    margin-bottom: 2.5rem
}
.bg3 {
    position: relative;
    overflow: hidden;
}

.bg3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(' https://dm0qx8t0i9gc9.cloudfront.net/thumbnails/video/EJsJFv-/videoblocks-cartoon-horror-background-disturbing-background-for-your-horror-thriller_r7zzpkc7ce_thumbnail-1080_01.png') center;
    background-size: cover;
    transition: transform 0.3s ease;
    z-index: -1;
}

.bg3:hover::before {
    transform: scale(1.1); /* Adjust the scale factor as needed for desired zoom effect */
}




.bg4 {
    position: relative;
    overflow: hidden;
}

    .bg4::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(' https://cdna.artstation.com/p/assets/images/images/028/022/246/large/chris-woods-decor-inquietant-urbain.jpg?1593261546') center;
        background-size: cover;
        transition: transform 0.3s ease;
        z-index: -1;
    }

    .bg4:hover::before {
        transform: scale(1.1); /* Adjust the scale factor as needed for desired zoom effect */
    }



.analytic-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-right: 0.8rem;
}

.analytic-info {
    font-weight: var(--font-medium);
    font-size: 0.98rem;
    z-index: 5;
}

.counts {
    position: absolute;
    top: 8%;
    right: 8%;
    font-size: var(--h1-font-size)
}


/* Media Queries (Retained for responsiveness) */
@media only screen and (max-width: 860px) {
    .analytics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 580px) {
    .analytics {
        grid-template-columns: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .header,
    .header-wrapper {
        align-items: center;
    }

    .header-title h1 {
        font-size: 1.2em;
    }

    .header-title p {
        display: none;
    }
}

/*  BREAKPOINTS */
/* For small devices */
@media screen and (max-width: 320px) {
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .home__img {
        height: 200px;
    }

    .home__buttons {
        flex-direction: column;
        width: max-content;
        row-gap: 1rem;
    }

    .category__container,
    .quiz__container {
        grid-template-columns: 0.8fr;
        justify-content: center;
    }
}
/* For medium devices */
@media screen and (min-width: 576px) {
    .about__container {
        grid-template-columns: 0.8fr;
        justify-content: center;
    }

    .newsletter__container {
        display: grid;
        grid-template-columns: 0.7fr;
        justify-content: center;
    }

    .newsletter__description {
        padding: 0 3rem;
    }
}

@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

    .section {
        padding: 7rem 0 2rem;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__img,
    .nav__close,
    .nav__toggle {
        display: none;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 3rem;
    }

    .nav__link {
        text-transform: initial;
        font-weight: initial;
    }

    .home__content {
        padding: 8rem 0 2rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .home__img {
        height: 300px;
    }

    .swiper-pagination {
        margin-top: var(--mb-2);
    }

    .category__container {
        grid-template-columns: repeat(3, 200px);
        justify-content: center;
    }

    .about__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .about__title,
    .about__data {
        text-align: initial;
    }

    .about__img {
        width: 250px;
    }

    .quiz__container {
        grid-template-columns: repeat(3, 200px);
        justify-content: center;
        gap: 2rem;
    }

    .discount__container {
        grid-template-columns: repeat(2, max-content);
        justify-content: center;
        align-items: center;
        column-gap: 3rem;
        padding: 3rem 0;
        border-radius: 3rem;
    }

    .discount__img {
        width: 350px;
        order: -1;
    }

    .discount__data {
        padding-right: 6rem;
    }

    .newsletter__container {
        grid-template-columns: 0.8fr;
    }

    .footer__container {
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        column-gap: 1rem;
    }

    .footer__img-two {
        right: initial;
        bottom: 0;
        left: 15%;
    }
}
/* For large devices */
@media screen and (min-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .section__title {
        font-size: var(--h1-font-size);
        margin-bottom: 3rem;
    }

    .home__content {
        padding-top: 9rem;
        gap: 3rem;
    }

    .home__group {
        padding-top: 0;
    }

    .home__img {
        height: 400px;
        transform: translateY(-3rem);
    }

    .home__indicator {
        top: initial;
        right: initial;
        bottom: 15%;
        left: 45%;
    }

        .home__indicator::after {
            top: 0;
            height: 75px;
        }

    .home__details-img {
        bottom: 0;
        right: 58%;
    }

    .home__title {
        margin-bottom: var(--mb-1-5);
    }

    .home__description {
        margin-bottom: var(--mb-2-5);
        padding-right: 2rem;
    }

    .category__container {
        column-gap: 8rem;
    }

    .category__img {
        width: 200px;
    }

    .about__container {
        column-gap: 7rem;
    }

    .about__img {
        width: 350px;
    }

    .about__description {
        padding-right: 2rem;
    }

    .quiz__container {
        gap: 3.5rem;
    }

    .quiz__content {
        border-radius: 1.5rem;
    }

    .quiz__img {
        width: 110px;
    }

    .quiz__title {
        font-size: var(--h3-font-size);
    }

    .discount__container {
        column-gap: 7rem;
    }

    .new__content {
        width: 310px;
        border-radius: 1rem;
        padding: 2rem 0;
    }

    .user__content {
        width: 310px !important;
        border-radius: 1rem;
        padding: 2rem 0;
    }

    .new__img {
        width: 150px;
    }

    .new__img,
    .new__subtitle {
        margin-bottom: var(--mb-1);
    }

    .new__title {
        font-size: var(--h3-font-size);
    }

    .user__img {
        width: 80px;
        margin-bottom: var(--mb-1);
    }

    .footer__copy {
        margin-top: 6rem;
    }
}

@media screen and (min-width: 1200px) {
    .home__img {
        height: 420px;
    }

    .swiper-pagination {
        margin-top: var(--mb-2-5);
    }

    .footer__img-one {
        width: 120px;
    }

    .footer__img-two {
        width: 180px;
        top: 30%;
        left: -3%;
    }
}
/* KEYFRAMES */
@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}
