@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap);
:root {
  /* Colors */
  --background-color-top: #1E1E1E;
  --background-color-bottom: #2A2750;
  --primary-color: #F2F2F2;
  --secondary-color: #F3CB5C;
  --background-menu: #2A2750;
  /* Font Families */
  --h1-home: "Boska", serif;
  --h1-cs: "ClashDisplay", sans-serif;
  --title-section: "Outfit", sans-serif;
  --text: "Poppins", sans-serif;
  /* Font Sizes */
  --h1-size-mb: 4.75rem;
  --h2-size-mb: 2rem;
  --h3-size-mb: 1.75rem;
  --h4-size-mb: 1.75rem;
  --text-size-big-mb: 1.313rem;
  --text-size-mb: 1rem;
  --text-small-mb: 0.875rem;
  --link-menu-mb: 3.188rem;
  --h1-size-dt: 8.438rem;
  --h2-size-dt: 3.563rem;
  --h3-size-dt: 2.688rem;
  --h4-size-dt: 2rem;
  --text-size-big-dt: 1.5rem;
  --text-size-dt: 1.125rem;
  --text-small-dt: 0.875rem;
  /* Font Weights */
  --black-weight: 900;
  --bold-weight: 700;
  --regular-weight: 400;
  /* Font Line Heights */
  --title-line-height: 1.2;
  --text-line-height: 1.4;
}

@font-face {
  font-family: "Boska";
  src: url("../assets/fonts/Boska-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Boska";
  src: url("../assets/fonts/Boska-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../assets/fonts/ClashDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to bottom, var(--background-color-top), var(--background-color-bottom));
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--primary-color);
  margin: 0;
}

.highlight--gradient {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--primary-color) 0%, var(--background-color-bottom) 100%);
  filter: blur(50px);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

.custom--cursor {
  display: none;
}

.cursor--outline {
  display: none;
}

#about,
#projects {
  scroll-margin-top: 100px;
}

/* ------- HOME PAGE ------- */
/* NAVIGATION */
.menu--btn {
  width: 25px;
  height: 20px;
  position: absolute;
  top: 30px;
  right: 25px;
  z-index: 10;
  background: transparent;
  color: transparent;
  border: 0;
  z-index: 99;
  cursor: pointer;
}
.menu--btn i {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  transition: all 0.3s ease;
}
.menu--btn i:nth-child(1) {
  top: 0;
}
.menu--btn i:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu--btn i:nth-child(3) {
  bottom: 0;
}

.nav {
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  position: fixed;
  height: 80px;
  border-bottom: 1px solid var(--primary-color);
  background-color: var(--background-color-top);
  z-index: 11;
}
.nav .img__logo {
  position: fixed;
  z-index: 99;
  width: 25px;
  height: auto;
  top: 25px;
  left: 20px;
}

/* Menu Open */
.menu--btn.open i:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: center;
}
.menu--btn.open i:nth-child(2) {
  opacity: 0;
}
.menu--btn.open i:nth-child(3) {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
  transform-origin: center;
}

.nav__mb {
  background-color: var(--background-menu);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  padding: 0;
  margin: 0;
  top: -100%;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-out;
  z-index: 10;
}
.nav__mb .nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav__mb .nav__list .nav__item {
  margin-bottom: 80px;
}
.nav__mb .nav__list .nav__item .nav__link {
  text-align: center;
  color: var(--primary-color);
  font-size: var(--link-menu-mb);
  line-height: var(--text-line-height);
  font-weight: var(--bold-weight);
  text-decoration: none;
  font-family: var(--h1-cs);
  transition: all 0.3s ease;
  opacity: 0;
  cursor: pointer;
}
.nav__mb .nav__list .nav__item .nav__link:hover {
  color: var(--secondary-color);
}
.nav__mb .nav__list .nav__item:last-child {
  margin-bottom: 0;
}

.nav__mb.open {
  top: 0;
  height: 100%;
}

/* HEADER */
.section--header {
  height: 100vh;
  z-index: -1;
}
.section--header .header__text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
.section--header .header__text .star--header {
  width: 45px;
  height: auto;
  position: absolute;
  z-index: -1;
  top: 35%;
  right: 30%;
}
.section--header .header__text .header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 340px;
}
.section--header .header__text .header__content .title--big {
  font-family: var(--h1-home);
  font-size: var(--h1-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0;
  color: var(--primary-color);
  z-index: -1;
  width: 100%;
  text-align: left;
}
.section--header .header__text .header__content .title--big__bold {
  font-weight: var(--black-weight);
  font-family: var(--h1-home);
  font-size: var(--h1-size-mb);
  line-height: var(--title-line-height);
  width: 100%;
  margin: 0 0 24px auto;
  padding: 0;
  z-index: -1;
  text-align: right;
  font-style: italic;
}
.section--header .header__text .header__content .title--subtitle {
  font-family: var(--h1-home);
  font-size: var(--h2-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--title-line-height);
  margin: 0 0 0 auto;
  width: 100%;
  padding: 0;
  font-style: italic;
  color: var(--primary-color);
  z-index: -1;
  text-align: right;
}
.section--header .page--breakline {
  max-width: calc(100vw - 12%);
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: relative;
  bottom: 80px;
  padding: 0 20px;
  z-index: -1;
}
.section--header .page--breakline img {
  width: 40px;
  height: auto;
}
.section--header .page--breakline .breakline {
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 19px 0 0 15px;
}

/* MAIN */
.section--main {
  padding: 0 20px;
}
.section--main .section--about__content {
  margin: 160px 0;
}
.section--main .section--about__content .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
}
.section--main .section--about__content .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main .section--about__content .text--big {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
  max-width: 400px;
}
.section--main .section--about__content .group--about {
  display: flex;
  flex-direction: row;
  gap: 25px;
}
.section--main .section--about__content .group--about .btn--about {
  display: inline-flex;
  padding: 10px 30px 10px 20px;
  margin: 24px 0 0 0;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--background-menu);
  font-family: var(--text);
  font-weight: var(--regular-weight);
  line-height: var(--title-line-height);
  width: 170px;
  height: 25px;
  background-color: var(--primary-color);
  border-radius: 10px;
  border: 1px solid var(--background-menu);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: none;
}
.section--main .section--about__content .group--about .btn--about .star--about {
  width: 20px;
  height: auto;
  transition: all 0.3s ease;
}
.section--main .section--about__content .group--about .btn--about:hover {
  background-color: var(--background-menu);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.section--main .section--about__content .group--about .btn--about:hover .star--about {
  transform: rotate(360deg);
}
.section--main .section--about__content .group--about .iconMailto {
  width: 40px;
  height: auto;
  display: inline-flex;
  padding: 28px 0 0 0;
  background-color: transparent;
  border: none;
  cursor: none;
}
.section--main .section--about__content .group--about .iconMailto svg {
  width: 40px;
  fill: var(--primary-color);
  transition: all 0.3s ease;
}
.section--main .section--about__content .group--about .iconMailto svg:hover {
  fill: var(--secondary-color);
}
.section--main .section--projects__intro {
  margin: 160px 0 80px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section--main .section--projects__intro img {
  width: 25px;
  height: auto;
  margin-bottom: 5px;
}
.section--main .section--projects__intro .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
}
.section--main .section--projects__intro .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main .section--projects__intro .text--big {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main .section--projects__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 160px;
}
.section--main .section--projects__content .project .project--title .title--card {
  font-family: var(--title-section);
  font-size: var(--h4-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 8px 0;
  color: var(--primary-color);
}
.section--main .section--projects__content .project .project--title .text {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main .section--projects__content .project .text {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 48px 0;
  color: var(--primary-color);
}
.section--main .section--projects__content .project .card {
  width: 280px;
  height: 400px;
  margin-bottom: 40px;
  background-color: var(--background-color-top);
  border-radius: 15px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  filter: grayscale(100%);
  z-index: -1;
  transition: all 0.3s ease;
}
.section--main .section--projects__content .project .card img {
  padding: 5px;
  margin: auto;
  width: 260px;
  height: 380px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid gray;
  z-index: -1;
  cursor: pointer;
}
.section--main .section--projects__content .project .card--janus {
  transform: scale(1) rotate(-3deg);
  transition: all 0.3s ease;
  cursor: none;
}
.section--main .section--projects__content .project .card--janus:hover {
  transform: scale(1.08) rotate(0deg);
}
.section--main .section--projects__content .project .card--dataplay {
  transform: scale(1) rotate(3deg);
  transition: all 0.3s ease;
  cursor: none;
}
.section--main .section--projects__content .project .card--dataplay:hover {
  transform: scale(1.08) rotate(0deg);
}
.section--main .section--projects__content .project .card--designfiction {
  transform: scale(1) rotate(-4deg);
  transition: all 0.3s ease;
  cursor: none;
}
.section--main .section--projects__content .project .card--designfiction:hover {
  transform: scale(1.08) rotate(0deg);
}
.section--main .section--projects__content .project .card:hover {
  filter: grayscale(0%);
  background-color: var(--secondary-color);
  transform: scale(1.08), rotate(0deg);
}
.section--main .section--projects__content .project img:hover {
  border: 4px solid var(--primary-color);
}
.section--main .section--projects__other {
  margin: 160px 0 200px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section--main .section--projects__other img {
  width: 25px;
  height: auto;
  margin-bottom: 5px;
}
.section--main .section--projects__other .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
}
.section--main .section--projects__other .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main .section--projects__other .text--big {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main .section--projects__other .btn--other {
  display: inline-flex;
  padding: 10px 30px 10px 20px;
  margin: 24px 0 0 0;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--background-menu);
  font-family: var(--text);
  font-weight: var(--regular-weight);
  line-height: var(--title-line-height);
  width: 170px;
  height: 25px;
  background-color: var(--primary-color);
  border-radius: 10px;
  border: 1px solid var(--background-menu);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: none;
}
.section--main .section--projects__other .btn--other .star--about {
  width: 20px;
  height: auto;
  transition: all 0.3s ease;
}
.section--main .section--projects__other .btn--other:hover {
  background-color: var(--background-menu);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.section--main .section--projects__other .btn--other:hover .star--about {
  transform: rotate(360deg);
}

/* FOOTER */
.page--breakline {
  max-width: calc(100vw - 12%);
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: relative;
  bottom: 80px;
  padding: 0 20px;
  z-index: -1;
}
.page--breakline img {
  width: 40px;
  height: auto;
}
.page--breakline .breakline {
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 19px 0 0 15px;
}

.credits {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 40px 0;
}
.credits .text--footer {
  font-family: var(--text);
  font-size: var(--text-small-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
}
.credits a {
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--text);
  font-size: var(--text-small-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.credits a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ------- CASE STUDIES ------- */
/* HEADER */
.section--header__cs {
  height: 100vh;
  z-index: -1;
}
.section--header__cs .header__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 0 20px;
}
.section--header__cs .header__text .star--header {
  width: 45px;
  height: auto;
  margin: 0 0 24px 0;
  z-index: -1;
}
.section--header__cs .header__text .header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 340px;
}
.section--header__cs .header__text .header__content .title--big {
  font-family: var(--h1-cs);
  font-size: var(--h1-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
  z-index: -1;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.section--header__cs .header__text .header__content .title--subtitle {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  width: 100%;
  padding: 0;
  color: var(--primary-color);
  z-index: -1;
  text-align: center;
  max-width: 350px;
}
.section--header__cs .header__text .header__content .title--subtitle .text--highlight {
  color: var(--secondary-color);
}
.section--header__cs .header__text a {
  display: inline-flex;
  padding: 10px 30px 10px 20px;
  margin: 40px 0 0 0;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--background-menu);
  font-family: var(--text);
  font-weight: var(--regular-weight);
  line-height: var(--title-line-height);
  width: 170px;
  height: 25px;
  background-color: var(--primary-color);
  border-radius: 10px;
  border: 1px solid var(--background-menu);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}
.section--header__cs .header__text a .star--about {
  width: 20px;
  height: auto;
  transition: all 0.3s ease;
}
.section--header__cs .header__text a:hover {
  background-color: var(--background-menu);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.section--header__cs .header__text a:hover .star--about {
  transform: rotate(360deg);
}
.section--header__cs .page--breakline {
  max-width: calc(100vw - 12%);
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: relative;
  bottom: 80px;
  padding: 0 20px;
  z-index: -1;
}
.section--header__cs .page--breakline img {
  width: 40px;
  height: auto;
}
.section--header__cs .page--breakline .breakline {
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 19px 0 0 15px;
}

/* MAIN */
.section--main__cs {
  margin: 80px 0 0 0;
}
.section--main__cs .section--content {
  margin: 0 0 160px 0;
}
.section--main__cs .section--content .text--number {
  font-family: var(--h1-cs);
  font-size: var(--h1-size-mb);
  font-weight: var(--black-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0;
  color: var(--primary-color);
  z-index: -1;
}
.section--main__cs .section--content .content__intro .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 16px 0 32px 0;
  color: var(--primary-color);
}
.section--main__cs .section--content .content__intro .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main__cs .section--content .content__intro .text--big {
  font-family: var(--text);
  font-size: var(--text-size-big-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main__cs .section--content img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  margin: 0 0 40px 0;
}
.section--main__cs .section--content .content__details .text {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main__cs .section--content .page--breakline {
  max-width: calc(100vw - 10%);
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: relative;
  width: 100%;
  bottom: 0;
  left: -20px;
  z-index: -1;
}
.section--main__cs .section--content .page--breakline img {
  width: 40px;
  height: auto;
  box-shadow: none;
  border-radius: 0;
  filter: grayscale(0%);
}
.section--main__cs .section--content .page--breakline .breakline {
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 19px 0 0 15px;
}
.section--main__cs .section--projects__intro {
  margin: 160px 0 0 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section--main__cs .section--projects__intro img {
  width: 25px;
  height: auto;
  margin-bottom: 5px;
}
.section--main__cs .section--projects__intro .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
}
.section--main__cs .section--projects__intro .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main__cs .section--projects__intro .text--big {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 20px 24px 20px;
  max-width: 400px;
  color: var(--primary-color);
}
.section--main__cs .section--projects__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 160px;
}
.section--main__cs .section--projects__content .project .project--title .title--card {
  font-family: var(--title-section);
  font-size: var(--h4-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 8px 0;
  color: var(--primary-color);
}
.section--main__cs .section--projects__content .project .project--title .text {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main__cs .section--projects__content .project .text {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 48px 0;
  color: var(--primary-color);
}
.section--main__cs .section--projects__content .project .card {
  width: 280px;
  height: 400px;
  margin-bottom: 40px;
  background-color: var(--background-color-top);
  border-radius: 15px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  filter: grayscale(100%);
  z-index: -1;
  transition: all 0.3s ease;
}
.section--main__cs .section--projects__content .project .card img {
  padding: 5px;
  margin: auto;
  width: 260px;
  height: 380px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid gray;
  z-index: -1;
  cursor: pointer;
}
.section--main__cs .section--projects__content .project .card--janus {
  transform: scale(1) rotate(-3deg);
  transition: all 0.3s ease;
  cursor: pointer;
}
.section--main__cs .section--projects__content .project .card--janus:hover {
  transform: scale(1.08) rotate(0deg);
}
.section--main__cs .section--projects__content .project .card--dataplay {
  transform: scale(1) rotate(3deg);
  transition: all 0.3s ease;
  cursor: pointer;
}
.section--main__cs .section--projects__content .project .card--dataplay:hover {
  transform: scale(1.08) rotate(0deg);
}
.section--main__cs .section--projects__content .project .card--designfiction {
  transform: scale(1) rotate(-4deg);
  transition: all 0.3s ease;
  cursor: pointer;
}
.section--main__cs .section--projects__content .project .card--designfiction:hover {
  transform: scale(1.08) rotate(0deg);
}
.section--main__cs .section--projects__content .project .card:hover {
  filter: grayscale(0%);
  background-color: var(--secondary-color);
  transform: scale(1.08), rotate(0deg);
}
.section--main__cs .section--projects__content .project img:hover {
  border: 4px solid var(--primary-color);
}
.section--main__cs .link--site {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 80px;
}
.section--main__cs .link--site .btn--about {
  display: inline-flex;
  padding: 10px 30px 10px 20px;
  margin: 40px 0 80px 0;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--background-menu);
  font-family: var(--text);
  font-weight: var(--regular-weight);
  line-height: var(--title-line-height);
  width: 170px;
  height: 25px;
  background-color: var(--primary-color);
  border-radius: 10px;
  border: 1px solid var(--background-menu);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}
.section--main__cs .link--site .btn--about .star--about {
  width: 20px;
  height: auto;
  transition: all 0.3s ease;
}
.section--main__cs .link--site .btn--about:hover {
  background-color: var(--background-menu);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.section--main__cs .link--site .btn--about:hover .star--about {
  transform: rotate(360deg);
}

/* ------- ABOUT ------- */
.section--main__about {
  margin: 80px 0 0 0;
  padding: 0 20px;
}
.section--main__about .section--about__educ {
  margin: 0 0 160px 0;
  max-width: 400px;
}
.section--main__about .section--about__educ .educ__intro .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__educ .educ__intro .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main__about .section--about__educ .educ__intro .text--big {
  font-family: var(--text);
  font-size: var(--text-size-big-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__educ .educ__timeline .timeline__tag {
  margin: 40px 0 0 0;
}
.section--main__about .section--about__educ .educ__timeline .timeline__tag .title--timeline {
  font-family: var(--text);
  font-size: var(--text-size-big-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 16px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__educ .educ__timeline .timeline__tag .title--timeline .text--highlight {
  color: var(--secondary-color);
}
.section--main__about .section--about__educ .educ__timeline .timeline__tag .text--small {
  font-family: var(--text);
  font-size: var(--text-small-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 16px 0;
  color: var(--primary-color);
  font-style: italic;
}
.section--main__about .section--about__educ .educ__timeline .timeline__tag .text--big {
  font-family: var(--text);
  font-size: var(--text-size-dt);
  font-weight: var(--bold-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 16px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__educ .educ__timeline .timeline__tag .text {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 8px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__exp {
  margin: 0 0 160px 0;
  max-width: 400px;
}
.section--main__about .section--about__exp .exp__intro .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__exp .exp__intro .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main__about .section--about__exp .exp__intro .text--big {
  font-family: var(--text);
  font-size: var(--text-size-big-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__exp .exp__timeline .timeline__tag {
  margin: 40px 0 0 0;
}
.section--main__about .section--about__exp .exp__timeline .timeline__tag .title--timeline {
  font-family: var(--text);
  font-size: var(--text-size-big-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 16px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__exp .exp__timeline .timeline__tag .title--timeline .text--highlight {
  color: var(--secondary-color);
}
.section--main__about .section--about__exp .exp__timeline .timeline__tag .text--small {
  font-family: var(--text);
  font-size: var(--text-small-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 16px 0;
  color: var(--primary-color);
  font-style: italic;
}
.section--main__about .section--about__exp .exp__timeline .timeline__tag .text--big {
  font-family: var(--text);
  font-size: var(--text-size-dt);
  font-weight: var(--bold-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 16px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__exp .exp__timeline .timeline__tag .text {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 8px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__skills {
  margin: 0 0 160px 0;
}
.section--main__about .section--about__skills .skills__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 500px;
}
.section--main__about .section--about__skills .skills__intro .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__skills .skills__intro .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main__about .section--about__skills .skills__intro .text--big {
  font-family: var(--text);
  font-size: var(--text-size-big-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__skills .skills__content {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.section--main__about .section--about__skills .skills__content .skills__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}
.section--main__about .section--about__skills .skills__content .skills__box svg {
  height: 50px;
  width: auto;
  padding-bottom: 15px;
  fill: var(--primary-color);
}
.section--main__about .section--about__skills .skills__content .skills__box .text--big {
  font-family: var(--text);
  font-size: var(--text-size-big-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 16px 0;
  color: var(--primary-color);
}
.section--main__about .section--about__skills .skills__content .skills__box .skills__level {
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
}
.section--main__about .section--about__skills .skills__content .skills__box .skills__level .star__level {
  width: 20px;
  height: auto;
}

/* GRID */
.grid__cs {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 20px;
}

.gridAbout {
  display: grid;
  grid-template-columns: 1fr;
}

/* ------- OTHER ------- */
/* MAIN OTHER */
.section--main__other {
  margin: 80px 0 80px 0;
  padding: 0 20px;
}
.section--main__other .section--other__content {
  max-width: 400px;
  margin-bottom: 120px;
}
.section--main__other .section--other__content .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
}
.section--main__other .section--other__content .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main__other .section--other__content .text {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 16px 0;
  color: var(--primary-color);
}
.section--main__other .section--other__content .img--other {
  margin-top: 20px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

/* ------- CREDITS ------- */
/* HEADER */
.section--header__cs .header__text .header__content .title--big__cd {
  font-family: var(--h1-cs);
  font-size: var(--h1-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0 0 32px 0;
  color: var(--primary-color);
  z-index: -1;
  width: 100%;
  text-align: center;
  text-transform: none;
}

/* MAIN */
.section--main__cd {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 80px 0 0 0;
  padding: 0 20px;
}
.section--main__cd .section--content {
  margin: 0 0 160px 0;
}
.section--main__cd .section--content .text--number {
  font-family: var(--h1-cs);
  font-size: var(--h1-size-mb);
  font-weight: var(--black-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 0;
  color: var(--primary-color);
  z-index: -1;
}
.section--main__cd .section--content .content__intro {
  max-width: 425px;
  margin: 0 0 16px 0;
}
.section--main__cd .section--content .content__intro .title--section {
  font-family: var(--title-section);
  font-size: var(--h3-size-mb);
  font-weight: var(--bold-weight);
  line-height: var(--title-line-height);
  margin: 0;
  padding: 16px 0 32px 0;
  color: var(--primary-color);
}
.section--main__cd .section--content .content__intro .title--section .text--highlight {
  color: var(--secondary-color);
}
.section--main__cd .section--content .content__intro .text--big {
  font-family: var(--text);
  font-size: var(--text-size-big-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main__cd .section--content .content__details {
  max-width: 425px;
}
.section--main__cd .section--content .content__details .text {
  font-family: var(--text);
  font-size: var(--text-size-mb);
  font-weight: var(--regular-weight);
  line-height: var(--text-line-height);
  margin: 0;
  padding: 0 0 24px 0;
  color: var(--primary-color);
}
.section--main__cd .section--content .content__details .text .links--cd {
  text-decoration: none;
  color: var(--secondary-color);
  cursor: pointer;
}
.section--main__cd .section--content .content__details .text .links--cd:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
.section--main__cd .section--content .content__details .text--highlight {
  color: var(--secondary-color);
  font-weight: var(--bold-weight);
}

/* ------- MEDIA QUERIES ------- */
/* Large Mobile */
@media (min-width: 500px) {
  .menu--btn {
    right: 40px;
  }

  .nav .img__logo {
    left: 40px;
  }

  .section--main {
    padding: 0 40px;
  }

  .section--header .header__text {
    padding: 0 40px;
    max-width: calc(100vw - 6%);
  }
  .section--header .page--breakline {
    padding: 0 40px;
    max-width: calc(100vw - 6%);
  }

  .section--footer .page--breakline {
    max-width: calc(100vw - 6%);
    padding: 0 40px;
  }

  .section--header__cs .page--breakline {
    max-width: calc(100vw - 6%);
    padding: 0 40px;
  }

  .section--main__cs .page--breakline {
    max-width: calc(100vw - 6%);
    padding: 0 40px;
  }

  .section--main__about {
    padding: 0 40px;
  }

  .section--main__other {
    padding: 0 40px;
  }

  .grid__cs {
    padding: 0 40px;
  }
}
@media (min-width: 650px) {
  .section--projects .section--projects__intro .text--big {
    max-width: 500px;
  }
  .section--projects .section--projects__other .text--big {
    max-width: 500px;
  }

  .section--main__other .section--other__content {
    max-width: 500px;
  }

  .grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
  }

  .homeTb-end1 {
    grid-column: 1/1;
  }

  .grid__cs {
    grid-template-columns: 60px 1fr 60px;
    gap: 20px;
    padding: 0 40px;
  }

  .grid__csMb-start1 {
    grid-column: 1/4;
  }

  .grid__csMb-start2 {
    grid-column: 2/3;
  }

  .gridAbout {
    grid-template-columns: 150px 1fr;
  }

  .gridAbout__Mb-start1 {
    grid-column: 1/3;
  }

  .gridAbout__Mb-start2 {
    grid-column: 2/3;
  }
}
/* Tablet */
@media (min-width: 768px) {
  .nav {
    background: none;
    border: none;
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr 3fr 2fr;
    gap: 40px;
  }

  .homeTb-end1 {
    grid-column: 2/3;
  }

  .section--main__cs .section--content .content__intro .title--section {
    padding: 40px 0 32px 0;
  }
  .section--main__cs .section--content img {
    margin: 0;
    height: 100%;
  }
  .section--main__cs .section--content .content__details .text:last-child {
    padding: 0;
  }

  .grid__cs {
    grid-template-columns: 120px 1fr 1fr;
    gap: 20px;
    padding: 0 40px;
  }

  .grid__csTb-start1 {
    grid-column: 1/2;
  }

  .grid__csTb-start3 {
    grid-area: 2/3/3/4;
  }

  .grid__csTb-end4 {
    grid-column: 1/4;
  }

  .gridAbout {
    grid-template-columns: 100px 1fr 2fr;
  }

  .gridAbout__Tb-start2 {
    grid-column: 2/4;
  }

  .gridAbout__Tb-start3 {
    grid-column: 3/4;
  }

  .gridOther {
    display: grid;
    grid-template-columns: 80px 40px 1fr;
    gap: 20px;
  }

  .gridOther__Tb-start2 {
    grid-column: 2/4;
  }

  .gridOther__Tb-start3 {
    grid-column: 3/4;
  }
}
@media (min-width: 875px) {
  .gridAbout {
    grid-template-columns: 200px 1fr 2fr;
  }

  .gridOther {
    grid-template-columns: 80px 1fr 3fr;
  }
}
/* Desktop */
@media (min-width: 1024px) {
  body {
    cursor: none;
  }

  .custom--cursor {
    display: block;
    width: 25px;
    height: 25px;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
  }

  .cursor--outline {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s ease;
  }

  .nav {
    background-color: transparent;
    border: none;
    width: 100%;
  }
  .nav .menu--btn {
    display: none;
  }
  .nav .nav__mb {
    top: 0;
    height: 80px;
    transform: none;
    display: flex;
    align-items: flex-end;
    background-color: transparent;
  }
  .nav .nav__mb .nav__list {
    flex-direction: row;
    gap: 40px;
    padding-right: 40px;
  }
  .nav .nav__mb .nav__list .nav__item {
    margin-bottom: 0;
  }
  .nav .nav__mb .nav__list .nav__item .nav__link {
    font-size: var(--text-size-dt);
    line-height: var(--text-line-height);
    font-weight: var(--regular-weight);
    text-decoration: none;
    font-family: var(--h1-cs);
    transition: all 0.3s ease;
    opacity: 1;
    cursor: none;
  }

  .section--header .header__text .star--header {
    width: 60px;
    height: auto;
    top: 25%;
    right: 35%;
  }
  .section--header .header__text .header__content {
    min-width: 700px;
  }
  .section--header .header__text .header__content .title--big {
    font-size: var(--h1-size-dt);
  }
  .section--header .header__text .header__content .title--big__bold {
    font-size: var(--h1-size-dt);
  }
  .section--header .header__text .header__content .title--subtitle {
    font-size: var(--h2-size-dt);
  }

  .section--about .section--about__content .title--section {
    font-size: var(--h3-size-dt);
    padding: 0 0 52px 0;
  }
  .section--about .section--about__content .text--big {
    font-size: var(--text-size-big-dt);
    padding: 0 0 32px 0;
    max-width: 600px;
  }
  .section--about .section--about__content .btn--about {
    width: 200px;
    height: 30px;
    padding: 10px 40px 10px 30px;
    gap: 30px;
    font-size: var(--text-size-dt);
    cursor: none;
  }
  .section--about .section--about__content .btn--about .star--about {
    width: 25px;
    height: auto;
  }

  .section--projects .section--projects__intro {
    margin: 160px 0 160px 0;
  }
  .section--projects .section--projects__intro .title--section {
    font-size: var(--h3-size-dt);
    padding: 0 0 52px 0;
  }
  .section--projects .section--projects__intro .text--big {
    max-width: 800px;
    font-size: var(--text-size-big-dt);
    padding: 0 0 32px 0;
  }
  .section--projects .section--projects__content {
    flex-direction: row;
    gap: 6%;
  }
  .section--projects .section--projects__content .project .project--title .title--card {
    font-size: var(--h4-size-dt);
  }
  .section--projects .section--projects__content .project .project--title .text {
    font-size: var(--text-size-dt);
    padding: 0 0 32px 0;
  }
  .section--projects .section--projects__content .project .text {
    font-size: var(--text-size-dt);
    padding: 0 0 80px 0;
  }
  .section--projects .section--projects__content .project .card a img {
    cursor: none;
  }
  .section--projects .section--projects__other {
    margin: 160px 0 160px 0;
  }
  .section--projects .section--projects__other .title--section {
    font-size: var(--h3-size-dt);
    padding: 0 0 52px 0;
  }
  .section--projects .section--projects__other .text--big {
    max-width: 800px;
    font-size: var(--text-size-big-dt);
    padding: 0 0 32px 0;
  }
  .section--projects .section--projects__other .btn--other {
    width: 180px;
    height: 30px;
    padding: 10px 40px 10px 30px;
    gap: 30px;
    font-size: var(--text-size-dt);
    cursor: none;
  }
  .section--projects .section--projects__other .btn--other .star--about {
    padding-top: 5px;
    width: 23px;
    height: auto;
  }

  .section--footer .credits {
    flex-direction: row;
    gap: 80px;
    padding: 0;
  }
  .section--footer .credits .text--footer a {
    cursor: none;
  }

  .section--header__cs .header__text {
    padding: 0 40px;
  }
  .section--header__cs .header__text .star--header {
    width: 60px;
    height: auto;
    margin: 0 0 24px 0;
  }
  .section--header__cs .header__text .header__content {
    min-width: 700px;
    width: 1000px;
  }
  .section--header__cs .header__text .header__content .title--big {
    font-size: var(--h1-size-dt);
  }
  .section--header__cs .header__text .header__content .title--subtitle {
    font-size: var(--h3-size-dt);
    max-width: 500px;
  }
  .section--header__cs .header__text .header__content a {
    width: 200px;
    height: 30px;
    padding: 10px 40px 10px 30px;
    gap: 30px;
    font-size: var(--text-size-dt);
    cursor: none;
  }
  .section--header__cs .header__text .header__content a .star--about {
    width: 25px;
    height: auto;
  }

  .section--main__cs .section--content .text--number {
    font-size: var(--h1-size-dt);
  }
  .section--main__cs .section--content .content__intro .title--section {
    font-size: var(--h3-size-dt);
    padding: 84px 0 52px 0;
  }
  .section--main__cs .section--content .content__intro .text--big {
    font-size: var(--text-size-big-dt);
    padding: 0 0 40px 0;
    max-width: 560px;
  }
  .section--main__cs .section--content .img--big {
    height: 100%;
  }
  .section--main__cs .section--content .content__details .text {
    font-size: var(--text-size-dt);
    max-width: 500px;
  }
  .section--main__cs .section--projects .section--projects__content {
    gap: 20%;
  }
  .section--main__cs .link--site .btn--about {
    width: 200px;
    height: 30px;
    padding: 10px 40px 10px 30px;
    gap: 30px;
    font-size: var(--text-size-dt);
    cursor: none;
  }
  .section--main__cs .link--site .btn--about .star--about {
    width: 25px;
    height: auto;
  }

  .section--main__cd {
    padding: 0 40px;
  }
  .section--main__cd .section--content .text--number {
    font-size: var(--h1-size-dt);
  }
  .section--main__cd .section--content .content__intro {
    max-width: 600px;
  }
  .section--main__cd .section--content .content__intro .title--section {
    font-size: var(--h3-size-dt);
  }
  .section--main__cd .section--content .content__intro .text--big {
    font-size: var(--text-size-big-dt);
  }
  .section--main__cd .section--content .content__details {
    max-width: 600px;
  }
  .section--main__cd .section--content .content__details .text {
    font-size: var(--text-size-dt);
    max-width: 600px;
  }
  .section--main__cd .section--content .content__details .text .links--cd {
    cursor: none;
  }

  .section--main__about {
    padding: 0 40px;
  }
  .section--main__about .section--about__educ {
    max-width: 600px;
  }
  .section--main__about .section--about__educ .educ__intro .title--section {
    font-size: var(--h3-size-dt);
    padding: 0 0 52px 0;
  }
  .section--main__about .section--about__educ .educ__intro .text--big {
    font-size: var(--text-size-big-dt);
    padding: 0 0 32px 0;
  }
  .section--main__about .section--about__educ .educ__timeline .timeline__tag {
    margin: 40px 0 0 0;
  }
  .section--main__about .section--about__educ .educ__timeline .timeline__tag .title--timeline {
    font-size: var(--text-size-big-dt);
  }
  .section--main__about .section--about__educ .educ__timeline .timeline__tag .text--small {
    font-size: var(--text-size-dt);
  }
  .section--main__about .section--about__educ .educ__timeline .timeline__tag .text--big {
    font-size: var(--text-size-dt);
  }
  .section--main__about .section--about__educ .educ__timeline .timeline__tag .text {
    font-size: var(--text-size-dt);
  }
  .section--main__about .section--about__exp {
    max-width: 600px;
  }
  .section--main__about .section--about__exp .exp__intro .title--section {
    font-size: var(--h3-size-dt);
    padding: 0 0 52px 0;
  }
  .section--main__about .section--about__exp .exp__intro .text--big {
    font-size: var(--text-size-big-dt);
    padding: 0 0 32px 0;
  }
  .section--main__about .section--about__exp .exp__timeline .timeline__tag {
    margin: 40px 0 0 0;
  }
  .section--main__about .section--about__exp .exp__timeline .timeline__tag .title--timeline {
    font-size: var(--text-size-big-dt);
  }
  .section--main__about .section--about__exp .exp__timeline .timeline__tag .text--small {
    font-size: var(--text-size-dt);
  }
  .section--main__about .section--about__exp .exp__timeline .timeline__tag .text--big {
    font-size: var(--text-size-dt);
  }
  .section--main__about .section--about__exp .exp__timeline .timeline__tag .text {
    font-size: var(--text-size-dt);
  }
  .section--main__about .section--about__skills {
    margin: 60px 0 240px 0;
  }
  .section--main__about .section--about__skills .skills__intro {
    max-width: 600px;
  }
  .section--main__about .section--about__skills .skills__intro .title--section {
    font-size: var(--h3-size-dt);
    padding: 0 0 52px 0;
  }
  .section--main__about .section--about__skills .skills__intro .text--big {
    font-size: var(--text-size-big-dt);
    padding: 0 0 32px 0;
  }
  .section--main__about .section--about__skills .skills__content {
    gap: 40px;
  }
  .section--main__about .section--about__skills .skills__content .skills__box svg {
    height: 60px;
    width: auto;
    padding-bottom: 20px;
  }
  .section--main__about .section--about__skills .skills__content .skills__box .text--big {
    font-size: var(--text-size-dt);
    padding: 0 0 16px 0;
  }
  .section--main__about .section--about__skills .skills__content .skills__box .skills__level .star__level {
    width: 25px;
    height: auto;
  }

  .section--main__other {
    padding: 0 40px;
  }
  .section--main__other .section--other__content {
    max-width: 600px;
  }
  .section--main__other .section--other__content .title--section {
    font-size: var(--h3-size-dt);
    padding: 0 0 52px 0;
  }
  .section--main__other .section--other__content .text {
    font-size: var(--text-size-dt);
    padding: 0 0 32px 0;
  }
  .section--main__other .section--other__content .img--other {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  }

  .grid__cs {
    grid-template-columns: 200px 1fr 1fr;
    gap: 40px;
  }

  .grid__csDt-start3 {
    grid-area: 1/3/3/4;
  }

  .section--header__cs .header__text .header__content .title--big__cd {
    font-size: var(--h1-size-dt);
    text-transform: uppercase;
  }
}
/* Large Desktop */
@media (min-width: 1400px) {
  .section--projects .section--projects__content {
    gap: 10%;
  }
  .section--projects .section--projects__content .project .card {
    width: 300px;
    height: 440px;
  }
  .section--projects .section--projects__content .project .card img {
    width: 280px;
    height: 420px;
  }

  .grid__cs {
    gap: 60px;
  }

  .gridAbout {
    grid-template-columns: 200px 2fr 3fr;
  }

  .gridOther {
    grid-template-columns: 200px 1fr 2fr;
  }
}
@media (min-width: 1600px) {
  .section--main__cd {
    flex-direction: row;
    gap: 80px;
  }
}

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