

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    --first-color-dark: hsl(170, 100%, 28%);
    --first-color-darken: hsl(170, 100%, 23%);
    --light-grey-bg: #f0f2f5;
    --text-color-dark: #121212;

    /*========== Shadows ==========*/
    --shadow-img: drop-shadow(0 12px 24px hsla(0, 0%, 0%, 0.4));
    --shadow-circle: 0 12px 24px hsla(0, 0%, 0%, 0.4);
    --shadow-button: 0 -4px 8px hsla(0, 0%, 0%, 0.3);
    --shadow-card: 0 8px 24px hsla(0, 0%, 0%, 0.1);
    --shadow-text: 0 2px 4px var(--color-green);

    /*========== Font and typography ==========*/
    --font-inter: "Inter", sans-serif;
    --font-title-titan: "Titan One", sans-serif;
    --font-bebas-neue: "Bebas Neue", sans-serif;

    /* Mobile First Font Sizes */
    --biggest-font-size: 2.5rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;
    --font-bold: 700;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html:has(:target) {
    scroll-behavior: smooth;
}

body.wak-homepage {
    font-family: var(--font-inter);
    font-size: var(--normal-font-size);
    background-color: var(--body-bg-color-dark);
    color: #ffffff;

    /* 🚫 Remove any global background images */
    background-image: none !important;
    background-attachment: initial !important;
    background-repeat: no-repeat !important;
}

ul {
    list-style: none;
}

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

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    width: 90% !important;
    max-width: 1200px;
    margin-inline: auto;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    /* padding-block: 4rem 1rem; */
    padding-block: 2rem 1rem;

}

.section__title {
    /* font-family: var(--font-body-poppins); */
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color-dark);
}

.main {
    overflow: hidden;
}



/*======================================================
    GLOBAL BREAKPOINTS
======================================================*/

/* For tablets and larger */
@media screen and (min-width: 768px) {
    /* .section {
        padding-block: 5rem 2rem;
    } */
}

/* For large devices (desktops) */
@media screen and (min-width: 1200px) {
    :root {
        /* Responsive typography */
        --biggest-font-size: 5.5rem;
        --h1-font-size: 2.5rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
    }

    .container {
        width: 100% !important;
        padding-inline: 1.5rem;
    }

    .section {
        /* padding-block: 7rem 2rem; */
        padding-block: 2rem;
    }
}


/* HERO (mobile-first) */
.home {
  background-image: var(--wak-hero-mobile);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* min-height: 100vh; */
  position: relative;
  isolation: isolate;
}
@media (min-width:768px){.home{background-image:var(--wak-hero-tablet);}}
@media (min-width:1200px){.home{background-image:var(--wak-hero-desktop);}}

/* Fade at the TOP of the hero (dark → transparent) */
.home::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;

    /* Height of the fade zone */
    height: 60px;

    background: linear-gradient(
        to bottom,
        rgba(15,15,15,1) 0%,
        rgba(15,15,15,0.85) 20%,
        rgba(15,15,15,0.5) 60%,
        rgba(15,15,15,0.15) 85%,
        rgba(15,15,15,0) 100%
    );

    pointer-events: none;
    z-index: 2;
}
/* Fade at the BOTTOM of the hero (transparent → dark) */
.home::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    /* Height of the fade zone (adjustable) */
    height: 180px;

    /* Fade from transparent → #0f0f0f */
    background: linear-gradient(
        to bottom,
        rgba(15,15,15,0) 0%,
        rgba(15,15,15,0.35) 35%,
        rgba(15,15,15,0.7) 70%,
        rgba(15,15,15,0.9) 90%,
        rgba(15,15,15,1) 100%
    );

    pointer-events: none;
    z-index: 2; /* sits above the image but below the content */
}

/* Ensure hero text appears above the fade */
.home__container,
.home__data,
.home__title,
.home__description,
.home__buttons {
    position: relative;
    z-index: 3;
}

/*=============== HOME ===============*/
.home__container {
    display: grid;
    justify-content: center;
    row-gap: 2rem;
    padding-top: 3.5rem;
}

.home__data {
    position: relative;
    text-align: center;
    padding-bottom: 1rem;
}

.home__title {
    font-family: var(--font-bebas-neue);
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 0.9;
    /* margin-bottom: 1rem; */
    text-shadow:0 2px 6px rgba(0,0,0,.35);
}

.home__pretitle {
    font-size: 1rem;
    color: #ffffff99;
    padding-bottom: 0;
}

.home__description {
    font-size: 1rem;
    /* margin-bottom: 2.5rem; */
    margin-bottom: 1.5rem;
    color: #ffffff99;
    
    padding-inline: 1rem;
    padding-bottom: 0;
}

.home__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.home__images {
    position: relative;
    display: grid;
    place-items: center;
    justify-self: center;
}

/*======================================================
    HOME BREAKPOINTS
======================================================*/
@media screen and (max-width: 370px) {
    .home__title {
        font-size: 2.25rem;
    }
}

@media screen and (min-width: 540px) {
    .home__container {
        grid-template-columns: 400px;
    }

    .home__buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

@media screen and (min-width: 768px) {
    .home__container {
        grid-template-columns: 500px;
    }

    .home__description {
        padding-inline: 0;
    }

    .home__title {
        font-size: 5rem;
    }
}

@media screen and (min-width: 1200px) {
    .home__container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
        padding-top: 5rem;
    }

    .home__data {
        text-align: left;
        padding-bottom: 0;
    }

    .home__title {
        font-size: 6rem;
        margin-bottom: 1rem;
    }

    .home__description {
        margin-bottom: 2.5rem;
    }

    .home__buttons {
        justify-content: initial;
        margin-bottom: 5rem;
    }
}




/*=============== BANNER ===============*/

/* --- Base Mobile Styles --- */
.banner {
    padding-block: 2rem;
}

.banner__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 12px;
}

/* .banner__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;

    background: linear-gradient(100deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    background: linear-gradient(100deg, rgba(255, 173, 9, 0.36) 0%, rgba(255, 173, 9, 0.06) 74.52%);
    background: linear-gradient(100deg, rgba(217, 149, 255, 0.36) 0%, rgba(207, 122, 255, 0.06) 61.51%);
    border-width: 0.5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-image: initial;
    border-radius: 16px;
    overflow: hidden;
    padding: 1rem;
    transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
} */

.banner__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;

    background: linear-gradient(100deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    /* background: linear-gradient(100deg, rgba(255, 173, 9, 0.36) 0%, rgba(255, 173, 9, 0.06) 74.52%); */
    /* background: linear-gradient(100deg, rgba(217, 149, 255, 0.36) 0%, rgba(207, 122, 255, 0.06) 61.51%); */
    border-width: 0.5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-image: initial;
    border-radius: 8px;
    overflow: hidden;
    padding: 0.5rem 0.3rem;
    transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
}

.banner__step-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner__step-top::before {
    content: attr(data-step);
    position: absolute;
    left: 1%;
    top: 50%;
    transform: translate(-60%, -50%) rotate(-6deg);
    font-family: 'Bebas Neue', 'Titan One', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 0;
}

.banner__step-avatar {
    position: relative;
    z-index: 1;
    width: 60px;
    aspect-ratio: 1 / 1;
    /* border-radius: 32px; */
    overflow: hidden;
    /* box-shadow: 0 20px 20px rgba(0, 0, 0, 0.4); */
}

.banner__step-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner__step p {
    font-weight: var(--font-semi-bold);
    color: #fff;
    font-size: var(--normal-font-size);
    line-height: 1.2;
    z-index: 1;
}

/* On mobile, the arrows are hidden */
.banner__arrow {
    display: none;
}


/*======================================================
    BANNER BREAKPOINTS
======================================================*/

@media screen and (min-width: 768px) {
    /* .banner__grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    } */

    .banner__step {
        padding: 1rem;
        border-radius: 16px;
    }

    .banner__step-avatar {
        width: 120px;
    }

    .banner__step-top::before {
        font-size: 7rem;
        transform: translate(-60%, -55%) rotate(-6deg);
    }

    .banner__step p {
        font-size: var(--h3-font-size);
        font-size: 1rem;
    }

    .banner__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(10px);
    }

    .banner__arrow i {
        font-size: 3.5rem;
        color: var(--text-color-grey);
    }
}

/* --- Desktops --- */
@media screen and (min-width: 1150px) {
    .banner__step {
        flex-direction: row-reverse;
    }
    .banner__step-avatar {
        width: 150px;
    }

    .banner__step-top::before {
        font-size: 9rem;
        transform: translate(-65%, -55%) rotate(-6deg);
    }

    .banner__arrow i {
        font-size: 4rem;
    }

    .banner__step p {
        /* font-size: var(--h2-font-size); */
        font-size: 1rem;
    }
}




/*=============== FEATURED ===============*/
.featured__wrapper {
    background-color: transparent;
    width: 100%;
    max-width: none;
    padding: 0 12px 16px;
}

.featured__data {
    text-align: center;
    padding: 0 1rem;
}

.featured__data .featured__title {
    font-family: var(--font-bebas-neue);
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 0;
    
}

.featured__data .featured__subtitle {
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 500;
    color: #777;
    margin-bottom: 2rem;
}

.featured__gallery {
    width: 100%;
}

.featured__gallery .featured__grid {
    display: grid;
    width: 100%;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.featured__gallery .img-box {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 6;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.featured__gallery .img-box .profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0.7rem 0.5rem 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--text-color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: normal;
}

.featured__gallery .img-box .profile-name-age {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
}

/* Container for the two icons */
.featured__gallery .img-box .profile-actions {
    display: flex;
    gap: 0.5rem;
}

/* Style for the icons themselves */
.featured__gallery .img-box .profile-actions i {
    font-size: 1.25rem;
}


.featured__button {
    margin: 2rem 0 1rem 0;
    display: flex;
    justify-content: center;
}

/*=============== FEATURED BREAKPOINTS ===============*/

@media screen and (max-width: 639px) {
    .featured__gallery .featured__grid {
        gap: 8px;
        grid-template-columns: repeat(2, 1fr);
    }
}





/*=============== REVIEWS ===============*/
.reviews__container {
    color: var(--text-color-white);
    padding: 1rem 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews__data {
    text-align: left;
    padding: 0 1rem;
}

.reviews__data .reviews__data-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviews__data .reviews__title {
    font-size: 2.5rem;
    font-family: var(--font-bebas-neue);
    margin-bottom: 0;
    padding-bottom: 0;
    color: #fff;
}

.reviews__data .reviews__data-inner .reviews__nav {
    display: none;
}

/*=============== REVIEWS SWIPER CONTROLS ===============*/
.reviews__data .reviews__data-inner .reviews__nav .swiper-button-next,
.reviews__data .reviews__data-inner .reviews__nav .swiper-button-prev {
  position: static !important;   /* IMPORTANT: disable Swiper absolute positioning */
  top: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  transform: none !important;
}


.reviews__data .reviews__data-inner .reviews__nav .nav-btn {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    top: 18px;
    background-color: #222222;
    color: #ccc;
    transition: 0.2s;
}
.reviews__data .reviews__data-inner .reviews__nav .nav-btn:hover {
    background-color: #333333;
}
.reviews__data .reviews__data-inner .reviews__nav .nav-btn::after,
.reviews__data .reviews__data-inner .reviews__nav .nav-btn::before {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color-white);
}

/*=============== REVIEWS SWIPER PAGINATION ===============*/
.reviews .swiper-pagination{
  position: static !important;
  transform: none !important;
  left: auto !important;
  bottom: auto !important;
  margin-top: 1rem;
  width: 100% !important;
  max-width: 220px;        /* controls total length */
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.reviews .swiper-pagination-bullet{
  width: 18px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  opacity: 1;
  margin: 0 !important;    /* Swiper sometimes adds margins */
}

.reviews .swiper-pagination-bullet-active{
  background: rgba(255,255,255,0.9);
}

.reviews__data .reviews__subtitle {
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 500;
    color: #777;
    margin-bottom: 2rem;
}

.reviews__swiper {
    width: 100%;
    position: relative;
}

/* Make all review slides in a row share the same height */
.reviews__swiper .swiper-wrapper {
    display: flex !important;        /* make sure it's flex */
    align-items: stretch !important; /* stretch slides to tallest */
}

.reviews__slide {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
    height: auto;

    /* background: linear-gradient(100deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%); */
    background: linear-gradient(100deg, rgba(255, 173, 9, 0.36) 0%, rgba(255, 173, 9, 0.06) 74.52%);
    background: linear-gradient(100deg, rgba(217, 149, 255, 0.36) 0%, rgba(207, 122, 255, 0.06) 61.51%);
    border-width: 0.5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-image: initial;
    border-radius: 16px;
    overflow: hidden;
    transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
}

.reviews__slide .review_info {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 1rem;
}

.reviews__slide .review_info .review_user {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviews__slide .reviews__image {
    height: 120px;
    width: 120px;
    border-radius: 12px;
    /* border: 3px solid rgba(255, 255, 255, 0.5); */
    border: 3px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    /* filter: var(--shadow-img); */
    filter: none;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.review__stars {
    color: var(--color-yellow);
    font-size: 1.2rem;
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.reviews__slide .review_text {
    flex: 1;
    display: flex;
    align-items: center;   
}

.reviews__slide .review_text p {
    font-size: var(--normal-font-size);
    font-weight: 400;
    color: #FFFDF7;
    line-height: 1.6;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.reviews__slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--small-font-size);
    color: var(--text-color-white);
    line-height: 1.6;
    opacity: 0.9;
}

.reviews__slide .name {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
}

.reviews__slide .job {
    font-style: italic;
    opacity: 0.8;
}

/*=============== REVIEWS BREAKPOINTS ===============*/
@media screen and (max-width: 340px) {
    .reviews__image {
        width: 80px;
        height: 80px;
    }
}

@media screen and (min-width: 540px) {
    .reviews__slide p {
        padding: 0 1rem;
    }
    .reviews__data .reviews__data-inner .reviews__nav {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

@media screen and (min-width: 768px) {
    .reviews__container {
        padding: 2rem 1rem;
    }

    .reviews__image {
        width: 120px;
        height: 120px;
    }
    .reviews__slide p {
        padding: 0 2rem;
    }
}

@media screen and (min-width: 1200px) {
    .reviews__swiper {
        /* max-width: 900px; */
        margin: 0 auto;
    }

    .reviews__image {
        height: 140px !important;
        width: 140px !important;
    }

    .reviews__slide p {
        padding: 0 1rem;
        font-size: var(--normal-font-size);
    }

    .review__stars {
        font-size: 1.5rem;
    }
}

/*=============== QUESTIONS ===============*/
.questions__wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
}
.questions__content {
    display: grid;
    gap: 1rem;
}
.questions__data {
    text-align: center;
}
.questions__title {
    font-family: var(--font-bebas-neue);
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 0;
}
.questions__subtitle {
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 500;
    color: #777;
    /* margin-bottom: 2rem; */
}
.question__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    margin: 0 auto;
    padding-top: 1rem;
}
.question__image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Accordion structure */
.accordion__container {
    display: grid;
    row-gap: 0.5rem;
}
.accordion__item {
    border-bottom: 1px solid #ffffff14;
    transition: all 0.3s ease;
}
.accordion__item:last-child {
    border-bottom: none;
}
.accordion__header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
}
.accordion__icon {
    font-size: 2rem;
    color: #989898;
    transition: transform 0.3s ease;
}
.accordion__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    color: #707070;
}
.accordion__content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}
.accordion__content .accordion__description:last-of-type {
    padding-bottom: 1.25rem !important;
}
.accordion__description {
    color: #707070;
    font-size: 1rem;
    line-height: 1.6;
    list-style-type: disc;
}
.accordion-open .accordion__icon {
    transform: rotate(90deg);
    color: #ffffff;
}
.accordion-open .accordion__title {
    font-weight: var(--font-semi-bold);
    color: #ffffff;
}

/*=============== QUESTIONS BREAKPOINTS ===============*/
@media screen and (max-width: 340px) {
    .questions__title {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 540px) {
    .questions__wrapper {
        padding: 1rem 0.5rem;
    }
}

@media screen and (min-width: 768px) {
    .questions__wrapper {
        padding: 2rem 0.5rem;
    }
    .questions__content {
        grid-template-columns: 2fr 1fr;
        gap: 0;
        align-items: center;
    }
    .question__image {
        order: 2;
        padding-top: 0;
        width: 70%;
    }
    .questions__container {
        order: 1;
    }
    .questions__data {
        text-align: left;
    }
}





/*=============== JOIN US ===============*/
.joinUs__container {
    position: relative;
    background: transparent;
    overflow: hidden;
    position: relative;
    padding: 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.joinUs__content {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
}

.joinUs__data {
    max-width: 550px;
}

.joinUs__title {
    font-family: var(--font-bebas-neue);
    font-size: 40px;
    color: var(--text-color-white);
    padding-bottom: 0;
}

.joinUs__description {
    font-size: 1rem;
    font-weight: 500;
    color: #777;
}

/*=============== JOINUS BREAKPOINTS ===============*/
@media screen and (max-width: 340px) {
    .joinUs__title {
        font-size: 2rem;
    }
}


@media screen and (min-width: 768px) {
    .joinUs__content {
        gap: 2rem;
    }
    .joinUs__data {
        max-width: none;
    }
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: 0.6rem;
    background-color: hsl(170, 50%, 30%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(170, 50%, 20%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(170, 50%, 15%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: var(--color-green);
    color: var(--text-color-white);
    box-shadow: inset var(--shadow-button);
    display: inline-flex;
    padding: 6px;
    font-size: 1.25rem;
    border-radius: 0.25rem;
    z-index: var(--z-tooltip);
    transition: bottom 0.4s, transform 0.4s;
}

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

.show-scroll {
    bottom: 3rem;
}

@media screen and (min-width: 1200px) {
    .scrollup {
        right: 3rem;
    }
}
