@charset "UTF-8";
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.rainstorm-animation,
.rainstorm-animation-hover {
  align-items: center;
  background-color: rgb(25, 25, 25);
  display: flex;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
  width: 100vw;
}
.rainstorm-animation hr.thunder,
.rainstorm-animation-hover hr.thunder {
  animation-name: thunder;
  animation-delay: 5s;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  border: unset;
  height: 100%;
  position: absolute;
  width: 100%;
}
@keyframes thunder {
  0% {
    background-color: transparent;
  }
  1% {
    background-color: white;
  }
  2% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  8% {
    background-color: transparent;
  }
}
.rainstorm-animation hr:not(.thunder),
.rainstorm-animation-hover hr:not(.thunder) {
  animation-name: rain;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background-color: rgb(250, 250, 250);
  border-color: transparent;
  border-right-color: rgba(255, 255, 255, 0.7);
  border-right-width: 50px;
  bottom: 100%;
  position: absolute;
  transform-origin: 100% 50%;
  width: 50px;
}
@keyframes rain {
  from {
    transform: rotate(105deg) translateX(0);
  }
  to {
    transform: rotate(105deg) translateX(calc(100vh + 20px));
  }
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/* Actually being used on Footer and "Tour" Index Page Section, it
  makes possible to have three columns */
.three-columns {
  float: left;
  width: 30%;
}
.three-columns:nth-child(odd) { /* Left and Right Column */
  margin: 0px 1% 0px 1%;
}

/* The component with this class cannot be selected */
.not-selectable {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE10+/Edge */
  -moz-user-select: none; /* Firefox */
  user-select: none; /* Standard */
}

/**
  * Vinicius Gabriel Personal Website
  * Author: Vinicius Gabriel
  * Contact: contact@monambike.com
  * Copyright (c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
  * This website and its contents are protected by copyright law. Unauthorized
  * reproduction or distribution of this material without express and written
  * permission from the author is strictly prohibited.
**/
h1, h2, h3, h4, h5, h6, p {
  margin: 0px;
}

html, body {
  height: 100%;
  margin: 0px;
}

a {
  text-decoration: none;
}

iframe {
  border: 0px;
}

ul {
  padding: 0px;
  margin: 0px;
}

li {
  list-style: none;
  margin: 0px;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
* {
  font-family: "Segoe UI", Arial, sans-serif;
}

h1 {
  font-size: 6rem;
}

h2 {
  font-size: 5rem;
}

p {
  font-size: 1.5rem;
  margin: 10px;
  text-align: justify;
  word-break: break-word;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.round-purple-button {
  background-color: rgb(77, 18, 161);
  border-radius: 5px;
  display: inline-block; /* Make the link behave like a block-level element */
  margin: auto;
  padding: 10px;
  position: relative;
  overflow: hidden; /* Hide any overflow text that doesn't fit */
  text-align: center;
  text-overflow: ellipsis; /* Add an ellipsis (...) if the text overflows */
  white-space: nowrap; /* Prevent text from wrapping to the next line */
}
.round-purple-button:hover {
  background-color: rgb(250, 250, 250);
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
img {
  max-width: 100%;
  transition: 0.5s;
}

img:hover + figcaption {
  opacity: 0;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
a {
  /* Variables that hold values from the line under links when hovered */
  /* Link attributes */
  color: rgb(250, 250, 250);
  padding-bottom: var(0.15em);
  background: linear-gradient(90deg, rgb(144, 100, 202) 50%, rgb(250, 250, 250) 0) calc(100% - var(--_p, 0%))/200% 100%, linear-gradient(rgb(144, 100, 202) 0 0) 0% 100%/var(--_p, 0%) 0.15em no-repeat;
  -webkit-background-clip: text, padding-box;
  transition: 0.5s;
}
a:hover {
  --_p: 100%;
  color: rgb(144, 100, 202);
}

p a[target=_blank]:after, li a[target=_blank]:after {
  content: "🡥";
  margin-left: 5px;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
/* Scrollbar Width */
::-webkit-scrollbar {
  width: 14px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
  background: rgb(227, 222, 236);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(144, 100, 202);
  /* Handle on hover */
  /* Handle when dragged */
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(95, 50, 155);
}
::-webkit-scrollbar-thumb:active {
  background: rgb(77, 18, 161);
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
select {
  background-color: rgb(30, 30, 30);
  color: rgb(250, 250, 250);
  cursor: pointer;
  padding: 5px;
  transition: 0.1s;
}
select:hover {
  background-color: rgb(40, 40, 40);
}
select:active {
  background-color: rgb(30, 30, 30);
}
select option {
  background-color: rgb(95, 50, 155);
  color: rgb(255, 255, 255);
  transition: 2s;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
::selection {
  background: rgb(95, 50, 155);
  color: rgb(250, 250, 250);
}

::-moz-selection {
  background: rgb(144, 100, 202);
  color: rgb(250, 250, 250);
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
.reveal-animation {
  position: relative;
}
.reveal-animation.translateY {
  opacity: 0;
  transform: translateY(144px);
  transition: transform 1s ease, opacity 1s ease;
}
.reveal-animation.translateY.revealed {
  transform: translateY(0);
  opacity: 1;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.section--about__container {
  padding: 0px 15% 0px 15%;
}
@media (max-width: 800px) {
  .section--about__container {
    padding: 0;
  }
}
.section--about .button-container {
  padding: 20px 0px;
  text-align: center;
}
@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 0;
  }
}
.section--about::before {
  content: "";
  height: 100%;
  opacity: 1;
  position: absolute;
  z-index: -1;
  width: 100%;
  background: radial-gradient(circle, transparent 20%, rgb(30, 30, 30) 20%, rgb(30, 30, 30) 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, rgb(30, 30, 30) 20%, rgb(30, 30, 30) 80%, transparent 80%, transparent) 80px 80px, linear-gradient(rgb(95, 50, 155) 6.4px, transparent 6.4px) 0 -3.2px, linear-gradient(90deg, rgb(95, 50, 155) 6.4px, rgb(30, 30, 30) 6.4px) -3.2px 0;
  background-size: 160px 160px, 160px 160px, 80px 80px, 80px 80px;
  animation: animatedBackground 75s linear infinite;
}

.interests-list {
  margin: 30px 10px 30px 10px;
}
.interests-list__title, .interests-list li {
  border: 1.82px solid rgb(30, 30, 30);
  border-radius: 2px;
  font-weight: 600;
  padding: 5px;
  margin: 2px 0px 2px 0px;
}
.interests-list__title {
  background-color: rgb(95, 50, 155);
  color: rgb(250, 250, 250);
  display: block;
  padding: 5px;
  font-weight: bold;
}
.interests-list li {
  transition: 0.5s;
}
.interests-list li:hover {
  transform: scale(1.05);
}
.interests-list li:nth-child(even) {
  background: rgb(144, 100, 202);
  border-color: rgb(77, 18, 161);
  color: rgb(250, 250, 250);
}
.interests-list li:nth-child(odd) {
  background: rgb(227, 222, 236);
  border-color: rgb(30, 30, 30);
}

.featured-image {
  border-left: 18px double rgb(120, 20, 220);
  display: table;
  margin: 0px auto 20px auto;
  padding: 20px;
  width: auto;
}
.featured-image__caption {
  color: rgb(120, 20, 220);
  text-align: center;
  transition: 0.25s;
}
.featured-image__image:hover {
  transform: scale(1.05);
}

.uppercase {
  text-transform: uppercase;
}

.highlight-purple {
  background: -webkit-linear-gradient(rgb(95, 50, 155), rgb(144, 100, 202));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.section--contact {
  background-color: rgb(250, 250, 250);
}
.section--contact .section__title {
  color: rgb(245, 245, 245);
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
html body {
  background-color: rgb(250, 250, 250);
}

* {
  transition: background-color 1s ease, color 1s ease;
}

.iframe-import-section {
  height: 100%;
  width: 100%;
  position: absolute;
}

.section {
  display: block;
  height: 100% !important;
  min-height: 50vh;
  overflow: hidden;
  padding: 10px 0px 10px 0px;
}
.section__title {
  color: rgb(250, 250, 250);
  font-size: 5rem;
  padding: 20px;
  text-align: center;
  text-shadow: 1px 1px 1px rgb(25, 25, 25);
}

.paragraph-block {
  background-color: rgb(235, 235, 235);
  color: rgb(25, 25, 25);
  padding: 20px;
}
.paragraph-block a {
  color: rgb(77, 18, 161);
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.section--presentation {
  align-items: center;
  color: rgb(250, 250, 250);
  background: -webkit-linear-gradient(rgb(77, 18, 161), rgb(95, 50, 155));
  display: flex;
  padding-left: 2.5%;
  text-transform: uppercase;
}

.presentation__name {
  align-self: flex-end;
  text-align: left;
  text-shadow: 5px 5px rgb(95, 50, 155);
}
.presentation__profession {
  text-shadow: 5px 5px rgb(95, 50, 155);
}
.presentation__skill {
  display: flex;
  font-size: 3rem;
  color: rgb(235, 235, 235);
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.section--social-media {
  height: 130vh !important;
  background-color: rgb(95, 50, 155);
  color: rgb(25, 25, 25);
  height: auto;
}
.section--social-media--containers {
  padding: 20px;
  margin-bottom: 20px;
  background-color: rgb(250, 250, 250);
  text-align: right;
}
.section--social-media--containers:nth-child(odd) {
  color: rgb(250, 250, 250);
  background-color: rgb(144, 100, 202);
  text-align: left;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
.section--tour {
  background-color: rgb(77, 18, 161);
}

.card-container {
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  align-content: space-evenly;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  box-shadow: 5px 5px rgb(144, 100, 202);
  height: 600px;
  transition: transform 0.35s ease-out; /* Apply transition to 'transform' property with 'ease-out' timing function */
  width: 400px;
}
.card:hover {
  animation-name: example;
  animation-duration: 0.5s;
  transform: scale(1.05);
  transition-delay: 1;
  transition-duration: 1s;
}
@keyframes example {
  25% {
    transform: rotate(0.005turn);
  }
  75% {
    transform: rotate(-0.005turn);
  }
}
.card__title {
  background-color: rgb(250, 250, 250);
  color: rgb(77, 18, 161);
  font-size: 2rem;
  padding: 20px 0px 20px 0px;
  text-align: center;
}
.card__content {
  color: rgb(250, 250, 250);
  height: 30%;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.card__image {
  min-height: 300px;
  width: 100%;
}
.card__image:hover {
  transform: scale(1) !important;
}
.card div {
  background-color: rgb(95, 50, 155);
  box-shadow: 5px 5px rgb(227, 222, 236);
}
@media (max-width: 800px) {
  .card:hover .three-columns {
    transform: scale(1);
  }
  .card .three-columns {
    margin: 15px 0px;
    width: 100%;
  }
  .card .three-columns p {
    text-align: center;
  }
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.warning {
  background-color: rgb(200, 20, 20);
  color: rgb(250, 250, 250);
  padding: 5px;
  text-align: center;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.footer {
  background-color: rgb(30, 30, 30);
  display: flex;
  flex-direction: column;
}
.footer--links {
  padding: 5% 0% 5% 0%;
}
.footer--links--three-columns {
  border-top: 6px solid rgb(40, 40, 40);
  margin: 0px 10% 0px 10%;
  padding: 20px;
  /* Footer Links */
  /* Container List Title */
  /* Container List */
  /* Every Item on the Container List */
}
.footer--links--three-columns span {
  color: rgb(144, 100, 202);
}
.footer--links--three-columns ul {
  margin-top: 8%;
}
.footer--links--three-columns li {
  margin: 5% 0% 5% 0%;
}
@media (max-width: 800px) {
  .footer--links .three-columns {
    margin: 15px 0px;
    width: 100%;
  }
}
.footer--copyright-and-translate {
  background-color: rgb(25, 25, 25);
  padding: 2.5%;
  text-align: center;
}
.footer--copyright-and-translate--copyright {
  color: rgb(250, 250, 250);
  margin: 2.5% 0% 2.5% 0%;
}

/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.header {
  background-color: rgb(25, 25, 25);
  display: flex;
  padding: 10px;
  z-index: 999; /* Add z-index to make sure it appears above other elements */
}
.header ul * {
  display: inline-block;
  margin: 0px 5px 0px 5px;
}

.header-presentation {
  flex: 1;
  margin: auto;
  display: flex;
  margin-left: 10px;
  align-items: center;
  /* Vertical Line */
}
.header-presentation__subtitle::before {
  content: "";
  border-left: 2px solid rgb(250, 250, 250);
  height: 1.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.hamburguer {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgb(250, 250, 250);
}

@media (max-width: 800px) {
  .header {
    position: fixed;
    width: 100%;
  }
  .hamburguer {
    display: block;
    margin-right: 20px;
  }
  .hamburguer.active .bar:nth-child(1) {
    opacity: 0;
  }
  .hamburguer.active .bar:nth-child(2) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburguer.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .navigation {
    position: fixed;
    left: -100%;
    top: 35px;
    gap: 0;
    flex-direction: column;
    background-color: rgb(25, 25, 25);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 999; /* Add z-index to make sure it appears above other elements */
    padding: 20px 0;
  }
  .navigation li {
    display: block;
    margin: 10px 0;
  }
  .navigation--active {
    left: 0px;
  }
}
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************/
/*$primary-color: $black;
$secondary-color: $white;
$primary-gray-color: $gray-dark;
$secondary-gray-color: $gray-dark-light;*/
.loading {
  background: url("../../images/karen-kujou/determined.gif") no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.9);
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
}
.loading .loading {
  display: table-cell;
  vertical-align: middle;
}
.loading .loading--background-filter {
  background-color: rgb(250, 250, 250);
}
.loading .loading--image {
  padding: 2% 0;
  text-align: center;
}
.loading .loading--image img {
  border: 5px solid rgb(95, 50, 155);
  border-radius: 5px;
}
.loading .loading--title, .loading .loading--body {
  padding: 20px;
  font-size: 16pt;
  color: white;
  font-weight: bold;
}
.loading .loading--title {
  background-color: rgb(77, 18, 161);
}
.loading .loading--body {
  background-color: rgb(95, 50, 155);
}
.loading .loading--curiosity {
  background-color: rgb(250, 250, 250);
  /*background-color: black;*/
  padding: 10px;
  font-size: 12pt;
  text-align: center;
}
.loading .loading p, .loading .loading img {
  margin: 0;
  padding: 0;
  display: inline-block;
}

/*# sourceMappingURL=main.css.map */
