/*!********************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./assets/sass/styles.sass ***!
  \********************************************************************************************************************/
/* ROOT STYLES */
:root {
  --header-height: 3.5rem;
  --first-color: hsl(219, 69%, 56%);
  --first-color-alt: hsl(219, 69%, 52%);
  --title-color: hsl(219, 8%, 95%);
  --text-color: hsl(219, 8%, 75%);
  --text-color-light: hsl(219, 4%, 55%);
  --white-color: hsl(0, 0%, 100%);
  --body-color: hsl(219, 4%, 4%);
  --container-color: hsl(219, 4%, 7%);
  --body-font: "Exo", sans-serif;
  --body-font: "Kanit", sans-serif;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/* DARK THEME */
/* TYPOGRAPHY */
@font-face {
  font-family: "Exo";
  src: url(90cc95d6b8042e7fcfe7.woff2) format("woff2"), url(8dcdc61f6d3dbbb043f5.woff) format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Exo";
  src: url(922a076337be962cd9a0.woff2) format("woff2"), url(96d21b115d3e3ce4996e.woff) format("woff");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Exo";
  src: url(e61cd3e655d663e77695.woff2) format("woff2"), url(5b866b5afe530e058188.woff) format("woff");
  font-style: normal;
  font-weight: 600;
}
/* ANIMATIONS */
/* button animation */
@keyframes button {
  0% {
    box-shadow: 0 0 12px hsl(158deg, 98%, 43%);
  }
  50% {
    box-shadow: 0 0 24px hsl(158deg, 98%, 43%);
  }
}
/* BASE STYLES */
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--body-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

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

h1 {
  margin: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/* HEADER */
.header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

/* FOOTER */
.footer {
  position: relative;
  overflow: hidden;
}

.footer .shape__big,
.footer .shape__small {
  position: absolute;
}
.footer .shape__big {
  height: 300px;
  width: 300px;
  top: 6rem;
  left: -12rem;
}
.footer .shape__small {
  right: -13rem;
  bottom: -6rem;
}

.footer__container {
  row-gap: 2.5rem;
  position: relative;
}
@media screen and (min-width: 767px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1040px) {
  .footer__container {
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
  }
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  margin-bottom: 1.25rem;
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  transition: 0.3s;
}
.footer__logo:hover {
  color: var(--first-color);
}
@media screen and (min-width: 1040px) {
  .footer__logo {
    column-gap: 0.5rem;
  }
}

.footer__logo i {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 1040px) {
  .footer__logo i {
    font-size: 2rem;
  }
}

.footer__title {
  margin-bottom: 1.25rem;
  font-size: var(--h3-font-size);
}
@media screen and (min-width: 1040px) {
  .footer__title {
    margin-bottom: 1.5rem;
  }
}

.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media screen and (min-width: 1040px) {
  .footer__links {
    row-gap: 0.75rem;
  }
}

.footer__link,
.footer__social-link {
  color: var(--text-color);
  transition: 0.3s;
}
.footer__link:hover,
.footer__social-link:hover {
  color: var(--title-color);
}

.footer__social {
  display: flex;
  column-gap: 1.5rem;
}

.footer__social-link {
  font-size: 1.25rem;
}
@media screen and (min-width: 1040px) {
  .footer__social-link {
    font-size: 1.5rem;
  }
}

.footer__copy {
  display: block;
  margin-top: 4.5rem;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-align: center;
}
@media screen and (min-width: 1040px) {
  .footer__copy {
    margin-top: 8rem;
    padding-bottom: 1rem;
  }
}

/* CONTAINER */
.container {
  max-width: 1024px;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}
@media screen and (max-width: 320px) {
  .container {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 1040px) {
  .container {
    margin-right: auto;
    margin-left: auto;
  }
}

/* GRID */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* SECTION */
.section {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 767px) {
  .section {
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
}

.section__title {
  margin-bottom: 2.5rem;
  font-size: var(--h2-font-size);
  text-align: center;
}

/* MAIN */
.main {
  overflow: hidden;
}

/* SHAPE */
.shape {
  border-radius: 50%;
  background-color: hsla(219deg, 33%, 32%, 0.5);
  filter: blur(112px);
}

.shape__big {
  height: 400px;
  width: 400px;
}
@media screen and (min-width: 1040px) {
  .shape__big {
    height: 500px;
    width: 500px;
  }
}

.shape__small {
  height: 300px;
  width: 300px;
}
@media screen and (min-width: 1040px) {
  .shape__small {
    height: 400px;
    width: 400px;
  }
}

.shape__smaller {
  height: 180px;
  width: 180px;
  filter: blur(64px);
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}
@media screen and (min-width: 767px) {
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
}

.nav__logo,
.nav__toggle {
  display: inline-flex;
  color: var(--title-color);
}

.nav__logo {
  align-items: center;
  column-gap: 0.25rem;
  font-weight: var(--font-medium);
  transition: 0.3s;
}
.nav__logo:hover {
  color: var(--first-color);
}

.nav__logo i {
  font-size: 1.25rem;
}

@media screen and (min-width: 767px) {
  .nav__toggle,
.nav__close {
    display: none;
  }
}

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

@media screen and (max-width: 767px) {
  .nav__menu {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    transition: 0.3s;
    overflow: hidden;
  }
  @supports (backdrop-filter: blur()) {
    .nav__menu {
      background-color: hsla(0deg, 0%, 100%, 0.1);
      -webkit-backdrop-filter: blur(35px);
      backdrop-filter: blur(35px);
    }
  }
  @supports not (backdrop-filter: blur()) {
    .nav__menu {
      background-color: var(--body-color);
    }
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  padding-top: 9rem;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
    padding-top: 0;
  }
}

.nav__link {
  text-transform: uppercase;
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  color: var(--title-color);
  transition: 0.3s;
}
.nav__link:hover {
  color: var(--first-color);
}
@media screen and (min-width: 767px) {
  .nav__link {
    font-size: var(--normal-font-size);
    text-transform: initial;
  }
}

.nav__close {
  font-size: 2rem;
  color: var(--white-color);
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

/* HOME */
.home {
  position: relative;
  overflow: hidden;
}

.home .shape__big,
.home .shape__small {
  position: absolute;
}
.home .shape__big {
  top: -4rem;
  left: -9rem;
}
.home .shape__small {
  right: -10rem;
  bottom: 3rem;
}

.home__container {
  row-gap: 3rem;
  padding-top: 4rem;
  position: relative;
}
@media screen and (min-width: 1040px) {
  .home__container {
    padding-top: 2rem;
  }
}

.home__data {
  text-align: center;
}

.home__title {
  margin-bottom: 1rem;
  font-size: var(--h1-font-size);
}

.home__subtitle {
  margin-bottom: 0.25rem;
  font-size: var(--h3-font-size);
}

.home__elec {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  font-size: var(--small-font-size);
  font-weight: 400;
  color: var(--text-color);
}

.home__elec i {
  color: var(--first-color);
}

.home__img {
  justify-self: center;
  width: 280px;
}
@media screen and (min-width: 1040px) {
  .home__img {
    width: 380px;
  }
}

.home__car {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 320px) {
  .home__car {
    column-gap: 2rem;
  }
}
@media screen and (min-width: 1040px) {
  .home__car {
    column-gap: 7rem;
  }
}

.home__car-data {
  text-align: center;
}

.home__car-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.367rem;
  background-color: var(--container-color);
  border-radius: 50%;
  font-size: 0.875rem;
}
@media screen and (min-width: 1040px) {
  .home__car-icon {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}

.home__car-number {
  margin-bottom: 0.25rem;
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
}

.home__car-name {
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--text-color-light);
}

.home__button {
  display: flex;
  justify-self: center;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  border: 2px solid hsl(158deg, 89%, 30%);
  border-radius: 50%;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--white-color);
  position: relative;
}
.home__button:before {
  content: "";
  height: 90px;
  width: 90px;
  border: 2px solid hsl(158deg, 98%, 43%);
  border-radius: 50%;
  box-shadow: 0 0 12px hsl(158deg, 98%, 43%);
  position: absolute;
  transition: 0.3s;
  animation: button 3s infinite;
}

@supports (backdrop-filter: blur()) {
  .scroll-up, .features__card, .about__card {
    background-color: hsla(0deg, 0%, 100%, 0.1);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
}
@supports not (backdrop-filter: blur()) {
  .scroll-up, .features__card, .about__card {
    background-color: hsla(0deg, 0%, 100%, 0.1);
    box-shadow: inset 0 0 100px hsla(219deg, 4%, 7%, 0.4);
  }
}

.featured__title, .popular__title {
  margin-bottom: 0.25rem;
  font-size: var(--h2-font-size);
}

.featured__subtitle, .popular__subtitle {
  font-size: var(--normal-font-size);
  font-weight: 400;
  color: var(--text-color);
}

.featured__price, .popular__price {
  font-size: var(--h3-font-size);
}

.featured__button, .popular__button {
  border: none;
  outline: none;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.featured__button i, .popular__button i {
  font-size: 1.25rem;
}

/* ABOUT */
.about__container {
  row-gap: 6rem;
}
@media screen and (min-width: 767px) {
  .about__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1040px) {
  .about__container {
    align-items: center;
    column-gap: 6rem;
  }
}

.about__group {
  position: relative;
}
@media screen and (min-width: 576px) {
  .about__group {
    width: 350px;
    justify-self: center;
  }
}
@media screen and (min-width: 1040px) {
  .about__group {
    width: 480px;
  }
}

.about__img {
  width: 310px;
  border-radius: 0.5rem;
}
@media screen and (min-width: 1040px) {
  .about__img {
    width: 480px;
  }
}

.about__card {
  width: 180px;
  padding: 1rem 0.75rem;
  border-radius: 1.25rem;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: -2.5rem;
}
@media screen and (max-width: 320px) {
  .about__card {
    width: 150px;
  }
}
@media screen and (min-width: 1040px) {
  .about__card {
    width: 198px;
    padding: 1rem 1.25rem;
  }
}

.about__card-title {
  margin-bottom: 0.5rem;
  font-size: var(--h3-font-size);
  color: black;
}

.about__card-description {
  font-size: var(--smaller-font-size);
  color: orange;
}

.about__title {
  margin-bottom: 2rem;
  text-align: initial;
}

.about__description {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1040px) {
  .about__description {
    margin-bottom: 3rem;
    padding-right: 4rem;
  }
}

/* BUTTONS */
.button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--first-color);
  border-radius: 0.25rem;
  font-size: var(--normal-font-size);
  color: var(--white-color);
  transition: 0.3s;
}
.button:hover {
  background-color: var(--first-color-alt);
}

/* POPULAR */
.popular__container {
  padding-top: 1rem;
}
@media screen and (min-width: 1040px) {
  .popular__container {
    width: 875px;
    padding-top: 3rem;
  }
}

.popular__card {
  width: 238px;
  margin-bottom: 3.5rem;
  padding: 2rem 1.5rem 1.5rem;
  background-color: var(--container-color);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.popular__card:hover .popular__img {
  transform: translateY(-0.25rem);
}
@media screen and (min-width: 1040px) {
  .popular__card {
    width: 258px;
    margin-bottom: 5rem;
    border-radius: 1.25rem;
  }
}

.popular__card .shape__smaller {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
}

.popular__title,
.popular__subtitle,
.popular__img {
  position: relative;
}

.popular__img {
  width: 160px;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  margin-left: 1.5rem;
  transition: 0.3s;
}
@media screen and (min-width: 1040px) {
  .popular__img {
    width: 180px;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    margin-left: 2rem;
  }
}

.popular__data {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}

.popular__data-group {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: var(--small-font-size);
  color: var(--white-color);
}

.popular__data i {
  font-size: 1rem;
}

.popular__button {
  padding: 0.75rem 1rem;
  border-radius: 1rem 0 1rem;
}

/* SWIPER */
.swiper-pagination-bullet {
  background-color: var(--text-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
}

/* FEATURES */
.features {
  position: relative;
  overflow: hidden;
}

.features__container {
  grid-template-columns: 285px;
  justify-content: center;
  padding-top: 2rem;
}
@media screen and (min-width: 1040px) {
  .features__container {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}

.features__group {
  display: grid;
  position: relative;
  z-index: 10;
}

.features__img {
  justify-self: center;
  width: 150px;
}
@media screen and (min-width: 1040px) {
  .features__img {
    width: 200px;
  }
}

.features__card {
  width: 114px;
  padding: 0.75rem 2rem;
  border-radius: 1.25rem;
  text-align: center;
  color: var(--title-color);
  position: absolute;
}
@media screen and (min-width: 1040px) {
  .features__card {
    width: 134px;
    padding: 0.75rem 2.5rem;
  }
}

.features__card-1 {
  top: 4rem;
  left: 1.5rem;
}
@media screen and (min-width: 1040px) {
  .features__card-1 {
    left: -1rem;
  }
}

.features__card-2 {
  top: 8rem;
  right: 1rem;
}
@media screen and (min-width: 1040px) {
  .features__card-2 {
    right: -2.5rem;
  }
}

.features__card-3 {
  left: 1.5rem;
  bottom: 2rem;
}
@media screen and (min-width: 1040px) {
  .features__card-3 {
    left: -1rem;
    bottom: 7rem;
  }
}

.features__card-title {
  margin-bottom: 0.25rem;
  font-size: var(--h3-font-size);
}

.features__card-description {
  font-size: var(--smaller-font-size);
}

.features__map {
  max-width: initial;
  width: 450px;
  position: absolute;
  top: 8rem;
  left: -3rem;
  transform: rotate(-22deg);
}
@media screen and (min-width: 576px) {
  .features__map {
    left: 50%;
    transform: translateX(-50%) rotate(-22deg);
  }
}
@media screen and (min-width: 1040px) {
  .features__map {
    width: 650px;
    top: 11rem;
  }
}

/* FEATURED */
.featured__container {
  padding-top: 1rem;
}
@media screen and (min-width: 1040px) {
  .featured__container {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }
}

.featured__filters {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 1040px) {
  .featured__filters {
    column-gap: 2rem;
    margin-bottom: 4.5rem;
  }
}

.featured__item {
  height: 48px;
  width: 48px;
  padding: 0.75rem;
  border: none;
  border-radius: 0.75rem;
  background-color: var(--container-color);
  outline: none;
  font-size: var(--normal-font-size);
  color: var(--white-color);
  cursor: pointer;
  transition: 0.3s;
}
.featured__item:hover {
  background-color: var(--first-color);
}
.featured__item:hover span, .featured__item:hover img {
  opacity: 1;
}
@media screen and (min-width: 1040px) {
  .featured__item {
    height: 52px;
    width: 52px;
  }
}

.featured__item img {
  width: 1.5rem;
}
@media screen and (min-width: 1040px) {
  .featured__item img {
    width: 2rem;
  }
}

.featured__item span,
.featured__item img {
  opacity: 0.3;
  transition: 0.3s;
}

.featured__content {
  grid-template-columns: 228px;
  justify-content: center;
  row-gap: 2.5rem;
}
@media screen and (min-width: 576px) {
  .featured__content {
    grid-template-columns: repeat(2, 228px);
  }
}
@media screen and (min-width: 1040px) {
  .featured__content {
    grid-template-columns: repeat(3, 248px);
    gap: 4rem;
  }
}

.featured__card {
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1rem;
  background-color: var(--container-color);
  position: relative;
}
.featured__card:hover .featured__img {
  transform: translateX(-0.25rem);
}

.featured__card .shape__smaller {
  margin: auto;
  position: absolute;
  inset: 0;
}

.featured__title,
.featured__subtitle,
.featured__img {
  position: relative;
}

.featured__img {
  width: 180px;
  margin: 1.5rem 0;
  transition: 0.3s;
}

.featured__button {
  padding: 0.75rem 1rem;
  border-radius: 1rem 0 1rem;
}

/* MIXITUP */
.mixitup-control-active {
  background-color: var(--first-color);
}
.mixitup-control-active span, .mixitup-control-active img {
  opacity: 1;
}

/* OFFER */
.offer {
  position: relative;
}

.offer__container {
  grid-template-rows: max-content 224px;
}
@media screen and (max-width: 320px) {
  .offer__container {
    grid-template-rows: max-content 180px;
  }
}
@media screen and (min-width: 576px) {
  .offer__container {
    grid-template-columns: 0.5fr;
    grid-template-rows: initial;
    justify-content: center;
  }
}
@media screen and (min-width: 1040px) {
  .offer__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 5rem;
    padding-bottom: 2rem;
  }
}

.offer__bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.offer__data,
.offer__img {
  position: relative;
}

.offer__data {
  text-align: center;
}
@media screen and (min-width: 576px) {
  .offer__data {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1040px) {
  .offer__data {
    text-align: initial;
    margin-bottom: 0;
  }
}

.offer__title {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1040px) {
  .offer__title {
    text-align: initial;
  }
}

.offer__description {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1040px) {
  .offer__description {
    padding-right: 6rem;
  }
}

.offer__img {
  max-width: initial;
  width: 400px;
  position: absolute;
  right: -5.5rem;
  bottom: 2rem;
}
@media screen and (max-width: 320px) {
  .offer__img {
    width: 340px;
  }
}
@media screen and (min-width: 576px) {
  .offer__img {
    position: relative;
    right: initial;
    bottom: initial;
  }
}
@media screen and (min-width: 1040px) {
  .offer__img {
    width: 450px;
  }
}

/* LOGOS */
.logos__container {
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 320px) {
  .logos__container {
    gap: 2.5rem;
  }
}
@media screen and (min-width: 767px) {
  .logos__container {
    gap: 4rem 8rem;
  }
}
@media screen and (min-width: 1040px) {
  .logos__container {
    grid-template-columns: repeat(6, max-content);
  }
}

.logos__img {
  width: 40px;
  transition: 0.3s;
  opacity: 0.4;
}
.logos__img:hover {
  opacity: 1;
}
@media screen and (min-width: 1040px) {
  .logos__img {
    width: 50px;
  }
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: hsl(219deg, 4%, 16%);
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(219deg, 4%, 24%);
  border-radius: 1rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: hsl(219deg, 4%, 32%);
}

/* SCROLL UP */
.scroll-up {
  display: inline-flex;
  padding: 0.45rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  color: var(--white-color);
  position: fixed;
  right: 1rem;
  bottom: -30%;
  transition: 0.4s;
  z-index: var(--z-tooltip);
}
.scroll-up:hover {
  transform: translateY(-0.25rem);
}
@media screen and (min-width: 1040px) {
  .scroll-up {
    right: 3rem;
  }
}

/* MICRO CLASSES */
.active-link {
  color: var(--first-color);
}

.scroll-header {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background-color: var(--body-color);
  box-shadow: 0 2px 4px hsl(0deg, 0%, 1%);
}

.show-menu {
  right: 0;
}

.hide-svg {
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
}

@supports not (backdrop-filter: blur()) {
  .blurred-content {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    filter: url(#blur-effect);
    z-index: -1;
    opacity: 0.5;
  }
}

.show-scroll {
  bottom: 3rem;
}

/*# sourceMappingURL=9b3d4ef99f71542a9c91.css.map*/