/* -------------------------------------- MENU -------------------------------------- */
.burger-menu {
  display: none;
  font-size: 2em;
}

nav .nav-container ul.sidebar {
  display: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  width: 100%;
  height: 100px;
  background: #1e1e1e;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100px;
}
.nav-container .logo img {
  width: 160px;
  height: auto;
  cursor: pointer;
  margin-top: 15px;
}
.nav-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-container ul li {
  display: inline-block;
  margin: 0 2vw;
  position: relative;
  padding-right: 30px;
}
.nav-container ul li a {
  text-decoration: none;
  text-transform: capitalize;
  color: white;
  font-size: 1em;
  font-weight: 500;
  width: 100%;
}
.nav-container ul li a::after {
  content: "";
  display: block;
  border-bottom: 2px solid rgba(255, 166, 0, 0.5);
  width: 100%;
  transition: transform 0.3s ease-in-out;
  transform-origin: bottom left;
  transform: scaleX(0);
}
.nav-container ul li a:hover {
  color: orange;
}
.nav-container ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.nav-container ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  height: 20px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}
.nav-container ul li:last-child::after {
  display: none;
}
.nav-container ul li:last-child a {
  font-weight: 600;
  text-transform: uppercase;
}

/* -------------------------------------- INTRO -------------------------------------- */
.intro-background {
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.intro-background .intro-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 80vh;
  z-index: 1;
  position: absolute;
}
.intro-background .intro-text h1.name {
  font-size: 4.5em;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  white-space: nowrap;
}
.intro-background .intro-text h3.text {
  font-size: 2em;
  font-weight: 500;
  color: black;
}
.intro-background .intro-text h3.text span.typed {
  display: inline;
  color: rgb(50, 163, 200);
  padding-right: 3px;
  border-right: 2px solid rgb(50, 163, 200);
  animation: blink-caret 1.3s step-start infinite;
}
.intro-background .intro-text .socials {
  margin-top: 20px;
}
.intro-background .intro-text .socials a {
  font-size: 1.7em;
  margin: 0 10px;
  color: rgb(95, 95, 95);
  text-decoration: none;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  display: inline-block;
}
.intro-background .intro-text .socials a:hover {
  transform: scale(1.1);
  color: orange;
}

@keyframes blink-caret {
  0% {
    border-color: rgb(50, 163, 200);
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: rgb(50, 163, 200);
  }
}
.glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.container-bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0);
  }
  20% {
    transform: translateY(-10vh) translateX(-1.5076760284px);
  }
  40% {
    transform: translateY(-30vh) translateX(9.7997829814px);
  }
  60% {
    transform: translateY(-50vh) translateX(-11.9279622007px);
  }
  80% {
    transform: translateY(-70vh) translateX(-11.1811735567px);
  }
  100% {
    transform: translateY(-100vh) translateX(-21.4662727591px);
  }
}
@keyframes floatDown {
  0% {
    transform: translateY(0) translateX(0);
  }
  20% {
    transform: translateY(10vh) translateX(-4.718949763px);
  }
  40% {
    transform: translateY(30vh) translateX(12.0947903132px);
  }
  60% {
    transform: translateY(50vh) translateX(13.48405056px);
  }
  80% {
    transform: translateY(70vh) translateX(-3.5251170985px);
  }
  100% {
    transform: translateY(100vh) translateX(11.3379189837px);
  }
}
.bubble {
  position: absolute;
  border-radius: 45%;
  opacity: 0.7;
}

/* -------------------------------------- CONTACT -------------------------------------- */
.section-contact {
  padding: 50px 8%;
  background-color: #101010;
  height: auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.section-contact .contact-title {
  font-size: 3em;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
  color: white;
}
@media screen and (max-width: 360px) {
  .section-contact .contact-title {
    font-size: 2.5em;
  }
}
.section-contact .contact-form-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: white;
}
.section-contact .contact-form-container .left-section {
  width: 20%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.section-contact .contact-form-container .left-section .btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-direction: column;
}
.section-contact .contact-form-container .left-section .btn-container .btn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  text-decoration: none;
  gap: 15px;
  width: auto;
}
.section-contact .contact-form-container .left-section .btn-container .btn i {
  font-size: 1.5em;
}
.section-contact .contact-form-container .left-section .btn-container .btn:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0 15px orange;
}
.section-contact .contact-form-container .right-section {
  width: 70%;
}
.section-contact .contact-form-container .right-section .form-group {
  position: relative;
  margin-bottom: 40px;
}
.section-contact .contact-form-container .right-section .form-group .select-wrapper {
  position: relative;
  width: 100%;
  color: white;
}
.section-contact .contact-form-container .right-section .form-group .select-wrapper select {
  margin-top: 4%;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  padding: 10px 0 10px 5px;
  outline: none;
  transition: border-bottom-color 0.3s ease, background-color 0.3s ease;
  font-size: 16px;
  color: white;
}
.section-contact .contact-form-container .right-section .form-group .select-wrapper select option {
  background-color: black;
  color: white;
}
.section-contact .contact-form-container .right-section .form-group .select-wrapper select:focus + label, .section-contact .contact-form-container .right-section .form-group .select-wrapper select:not(:placeholder-shown) + label {
  transform: translateY(-30px);
  font-size: 16px;
  color: white;
}
.section-contact .contact-form-container .right-section .form-group .select-wrapper select:not(:placeholder-shown) {
  background-color: white;
  color: black;
}
.section-contact .contact-form-container .right-section .form-group .select-wrapper label {
  margin-top: 3%;
  position: absolute;
  left: 0;
  top: 10px;
  color: white;
  pointer-events: none;
  transition: 0.3s ease all;
}
.section-contact .contact-form-container .right-section .form-group input, .section-contact .contact-form-container .right-section .form-group textarea, .section-contact .contact-form-container .right-section .form-group select {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid white;
  padding: 10px 0 10px 5px;
  outline: none;
  transition: border-bottom-color 0.3s ease, background-color 0.3s ease;
  font-size: 16px;
  color: white;
}
.section-contact .contact-form-container .right-section .form-group input:focus, .section-contact .contact-form-container .right-section .form-group textarea:focus, .section-contact .contact-form-container .right-section .form-group select:focus {
  box-shadow: 0px 3px 4px 1px rgba(255, 165, 0, 0.7);
  background-color: white;
  color: black;
}
.section-contact .contact-form-container .right-section .form-group input:focus + label, .section-contact .contact-form-container .right-section .form-group input:not(:placeholder-shown) + label, .section-contact .contact-form-container .right-section .form-group textarea:focus + label, .section-contact .contact-form-container .right-section .form-group textarea:not(:placeholder-shown) + label, .section-contact .contact-form-container .right-section .form-group select:focus + label, .section-contact .contact-form-container .right-section .form-group select:not(:placeholder-shown) + label {
  transform: translateY(-30px);
  font-size: 16px;
  color: white;
}
.section-contact .contact-form-container .right-section .form-group input:not(:placeholder-shown), .section-contact .contact-form-container .right-section .form-group textarea:not(:placeholder-shown), .section-contact .contact-form-container .right-section .form-group select:not(:placeholder-shown) {
  background-color: white;
  color: black;
}
.section-contact .contact-form-container .right-section .form-group label {
  position: absolute;
  left: 0;
  top: 10px;
  color: white;
  pointer-events: none;
  transition: 0.3s ease all;
}
.section-contact .contact-form-container .right-section .form-group textarea {
  resize: none;
  height: 220px;
  font-family: "Roboto", sans-serif;
}
.section-contact .contact-form-container .right-section .form-group .btn-submit-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-contact .contact-form-container .right-section .form-group .btn-submit-container .btn-submit {
  width: 20em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  cursor: pointer;
  text-transform: uppercase;
  background-color: orange;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.4s ease;
  border: 2px solid orange;
  font-weight: 500;
  font-weight: bold;
  letter-spacing: 1px;
}
.section-contact .contact-form-container .right-section .form-group .btn-submit-container .btn-submit:hover {
  background-color: white;
  color: orange;
}

.message-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px;
  text-align: center;
  font-size: 18px;
  color: white;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.message-box.show {
  opacity: 1;
}

.message-box.hidden {
  display: none;
}

.message-box.success {
  background-color: green;
}

.message-box.error {
  background-color: red;
}

/* -------------------------------------- FOOTER -------------------------------------- */
.footer {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #101010;
  color: white;
  font-size: 14px;
  margin-bottom: 0;
  border-top: 1px solid rgba(245, 245, 245, 0.2);
}

/* -------------------------------------- PROJECTS -------------------------------------- */
.section-projects {
  padding: 50px 8%;
}
.section-projects .project-title {
  font-size: 3em;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 360px) {
  .section-projects .project-title {
    font-size: 2.5em;
  }
}
.section-projects .projects-container {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.section-projects .projects-container a {
  text-decoration: none;
  color: white;
}
.section-projects .projects-container .project {
  background-color: #141414;
  border-radius: 20px 20px 20px 0px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  color: white;
  width: 100%;
  max-width: 330px;
  flex-grow: 1;
  position: relative;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.2), -8px -8px 15px rgba(255, 255, 255, 0.1);
}
.section-projects .projects-container .project img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top top;
  border-radius: 18px 18px 0 0;
  margin-bottom: 15px;
}
.section-projects .projects-container .project h3 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5em;
  margin-bottom: 5px;
  position: relative;
}
.section-projects .projects-container .project h3::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 39.5%;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgb(50, 163, 200), transparent);
}
.section-projects .projects-container .project div.project-date {
  margin-top: 5px;
  max-height: 25px;
  margin-bottom: 15px;
}
.section-projects .projects-container .project div.project-date p {
  font-size: 0.8em;
  font-weight: bold;
  color: white;
  text-align: right;
  padding-right: 20px;
  display: inline-block;
}
.section-projects .projects-container .project p {
  padding: 10px 15px;
  font-size: 1em;
  color: white;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
  min-height: 150px;
  overflow: hidden;
  text-align: justify;
}
.section-projects .projects-container .project p.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.section-projects .projects-container .project p.category-list span.category-item {
  display: inline-block;
  text-align: center;
  padding: 0.5em 0.8em;
  width: auto;
  border-radius: 7px;
  height: fit-content;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 500;
}
.section-projects .projects-container .project .btn {
  display: inline-block;
  margin-bottom: 10px;
  background-color: orange;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.4s ease;
  border: 2px solid orange;
  font-weight: 500;
}
.section-projects .projects-container .project .btn:hover {
  background-color: white;
  color: orange;
}
.section-projects .projects-container .project:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px orange;
}

/* -------------------------------------- CATEGORIES -------------------------------------- */
.section-categories {
  padding: 50px 8%;
  text-align: center;
  height: auto;
  margin-bottom: 2%;
}
.section-categories .category-title {
  font-size: 3em;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 360px) {
  .section-categories .category-title {
    font-size: 2.5em;
  }
}
.section-categories .categories-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5em;
  padding: 0 3%;
}
.section-categories .categories-container a {
  text-decoration: none;
}
.section-categories .category {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5em;
  border-radius: 20px 20px 20px 0px;
  background: #1a1a1a;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  width: 170px;
}
.section-categories .category .category-logo {
  margin-bottom: 0.5rem;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section-categories .category .category-logo img {
  object-fit: contain;
}
.section-categories .category h3 {
  font-size: 1.5em;
  text-transform: uppercase;
  margin-top: 0.6em;
  color: white;
}
.section-categories .category:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3), -10px -10px 20px rgba(255, 255, 255, 0.2);
}

/* -------------------------------------- 404 -------------------------------------- */
.header-404 {
  height: 100px;
  background: #1e1e1e;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.header-404 .logo img {
  height: 100px;
  width: 160px;
}

.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 158px);
  text-align: center;
}
.error-page section {
  padding: 0 5%;
}
.error-page section h1 {
  font-size: 10rem;
  font-weight: bold;
  color: #f44336;
  margin: 0;
}
.error-page section h2 {
  font-size: 2rem;
  margin: 10px 0;
}
.error-page section p {
  font-size: 1.2rem;
  color: #848484;
  margin-bottom: 30px;
}
.error-page section .btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  color: white;
  background: red;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, transform 0.3s;
  font-weight: 500;
}
.error-page section .btn:hover {
  background: #d32f2f;
}

/* -------------------------------------- ABOUT -------------------------------------- */
section.section-about {
  height: 100vh;
  max-height: 180vh;
  height: auto;
  background: #101010;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 8%;
  box-sizing: border-box;
}
section.section-about .about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
section.section-about .about-container .about-img {
  flex: 1;
  box-sizing: border-box;
  min-width: 250px;
  perspective: 1500px;
}
section.section-about .about-container .about-img img {
  min-width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
section.section-about .about-container .about-img img:hover {
  box-shadow: 0 0 15px orange;
}
section.section-about .about-container .about-text {
  flex: 2;
  margin-left: 10%;
  box-sizing: border-box;
  color: white;
  text-align: justify;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
section.section-about .about-container .about-text mark {
  font-weight: 900;
  background: none;
  color: orange;
}
section.section-about .about-container .about-text .see-more-btn {
  display: none;
}
section.section-about .about-container .about-text .about-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
}
section.section-about .about-container .about-text p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 20px;
}
section.section-about .about-container .about-text p .more-text {
  display: block;
}
section.section-about .about-container .about-text .about-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
section.section-about .about-container .about-text .about-buttons .btn {
  background-color: orange;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.4s ease;
  border: 2px solid orange;
  font-weight: 500;
}
section.section-about .about-container .about-text .about-buttons .btn:hover {
  background-color: white;
  color: orange;
}

/* -------------------------------------- MEDIA QUERIES -------------------------------------- */
@media screen and (max-width: 1300px) {
  section.section-about {
    padding: 50px 4%;
  }
}
@media screen and (max-width: 1200px) {
  div.about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  div.about-container .about-img {
    width: 30%;
  }
  div.about-container .about-img img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
  div.about-container div.about-text {
    width: auto;
    left: -5%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: auto;
  }
}
@media screen and (max-width: 900px) {
  .burger-menu {
    display: block;
    font-size: 2em;
    color: white;
  }
  ul {
    display: none;
  }
  nav .nav-container ul.sidebar {
    position: fixed;
    display: none;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    color: white;
    transition: right 0.6s ease;
    list-style: none;
    padding: 20px;
    z-index: 0;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    background: #1e1e1e;
  }
  nav .nav-container ul.sidebar.active {
    right: 0;
    display: flex;
    z-index: 999;
  }
  .intro-background {
    position: relative;
    z-index: -1;
  }
  .intro-background .glass .intro-text {
    position: relative;
    z-index: 2;
  }
  .intro-background .glass .intro-text .socials {
    pointer-events: visible;
  }
  nav .nav-container ul.sidebar li {
    margin-top: 3%;
    margin: 20px 0;
    padding: 0;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  nav .nav-container ul.sidebar li a {
    text-decoration: none;
    color: white;
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    width: 100%;
  }
  nav .nav-container ul.sidebar li a:hover {
    color: orange;
  }
  nav .nav-container ul.sidebar .close-button {
    position: absolute;
    top: 5%;
    right: 7%;
    font-size: 2.5em;
    color: white;
    transition: color 0.5s ease-in-out;
  }
  .socials {
    display: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  ul.sidebar.active .socials {
    display: flex;
    gap: 50px;
    font-size: 2em;
    width: 100%;
    margin-top: 8%;
  }
  ul.sidebar.active .socials a {
    text-decoration: none;
    color: white;
  }
  ul.sidebar.active .socials:focus {
    color: orange;
  }
}
@media screen and (max-width: 800px) {
  .section-categories {
    padding: 50px 0;
  }
  nav .nav-container ul.sidebar .close-button {
    top: 4.8%;
    right: 7.5%;
  }
}
@media screen and (max-width: 768px) {
  nav .nav-container ul.sidebar .close-button {
    right: 7.8%;
  }
  section.section-about .about-container .about-img img {
    width: 100%;
    height: auto;
  }
  section.section-about .about-container .about-text .about-title {
    font-size: 2em;
  }
  section.section-about .about-container .about-text p {
    font-size: 1em;
  }
  button#scrollToTopBtn {
    bottom: 50px;
    right: 50px;
  }
  section.section-contact .contact-form-container {
    flex-direction: column;
  }
  section.section-contact .contact-form-container .left-section {
    width: 100%;
    margin-bottom: 40px;
    flex-direction: column;
  }
  section.section-contact .contact-form-container .left-section .btn-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  section.section-contact .contact-form-container .left-section .btn {
    width: auto;
  }
  section.section-contact .contact-form-container .right-section {
    width: 100%;
    margin: 0 0;
  }
}
@media (max-width: 630px) {
  .project {
    margin: 0 auto;
  }
  nav .nav-container ul.sidebar .close-button {
    right: 10%;
  }
}
@media screen and (max-width: 540px) {
  button#scrollToTopBtn {
    bottom: 30px;
    right: 30px;
  }
  .intro-background .intro-text h1.name {
    font-size: 3.5em;
  }
  .intro-background .intro-text h3.text {
    font-size: 1.8em;
  }
  nav .nav-container ul.sidebar .close-button {
    right: 11%;
  }
}
@media screen and (max-width: 470px) {
  .section-categories .categories-container {
    gap: 1.5em;
  }
  nav .nav-container ul.sidebar .close-button {
    right: 13%;
  }
}
@media screen and (max-width: 420px) {
  nav .nav-container ul.sidebar .close-button {
    right: 14%;
  }
  .intro-background .intro-text {
    margin-top: 5%;
  }
  .intro-background .intro-text h1.name {
    font-size: 2.5em;
  }
  .intro-background .intro-text h3.text {
    font-size: 1.8em;
  }
  section.section-about .about-container .about-text .about-buttons .btn {
    padding: 2% 3%;
    font-size: 1em;
    white-space: nowrap;
  }
  section.section-about .about-container .about-text .see-more-btn {
    display: block;
    background-color: transparent;
    color: rgb(50, 163, 200);
    border: none;
    font-size: 0.8em;
    border-radius: 5px;
    margin-left: 80%;
    white-space: nowrap;
    margin-top: 0;
    cursor: pointer;
  }
  section.section-about .about-container .about-text .text-content {
    overflow: hidden;
    max-height: 4.8em;
    position: relative;
    transition: max-height 0.5s ease-out;
  }
  section.section-about .about-container .about-text p {
    margin-bottom: 7px;
  }
  section.section-about .about-container .about-text p .more-text {
    display: none;
  }
}
@media screen and (max-width: 330px) {
  nav .nav-container ul.sidebar .close-button {
    right: 9%;
  }
  .nav-container .logo {
    margin-left: -20%;
  }
  .nav-container .burger-menu {
    margin-right: -15%;
  }
  .intro-background .intro-text h1.name {
    font-size: 2.3em;
  }
  .intro-background .intro-text h3.text {
    font-size: 1.6em;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::selection {
  background-color: orange;
  color: white;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: rgb(228, 228, 228);
}

body, html {
  height: 100%;
  scroll-behavior: smooth;
}

/* -------------------------------------- SCROLLL TO TOP BUTTON -------------------------------------- */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  background-color: rgba(255, 166, 0, 0.678);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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