/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap");

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

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: rgba(252, 61, 3, .85)/*hsl(14, 98%, 50%)*/;
  --black-color: hsl(0, 0%, 0%);
  --black-color-light: hsl(0, 0%, 40%);
  --white-color: hsl(0, 0%, 99%);
  --title-color: hsl(245, 16%, 27%);
  /*--title-color: hsl(0, 0%, 0%);*/
  --text-color: hsl(0, 0%, 35%);
  --text-color-light: hsl(0, 0%, 64%);
  --body-color: hsl(0, 0%, 91%); /*hsl(0, 0%, 87%)*/
  --container-color: hsl(0, 10%, 96%); /*hsl(0, 0%, 83%)*/
  --container-more-color: hsl(0, 0%, 93%);
  --social-link-color: hsl(0, 0%, 94.5%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Bai Jamjuree", sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 1.125rem;
  --small-font-size: 1rem;
  --smaller-font-size: 0.75rem;
  /*--biggest-font-size: 2.5rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;*/

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

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

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 14vh; /* height of sticky header */
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color 0.4s; /*for dark mode*/
  scroll-padding-top: 80px;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

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

p {
  text-align: justify;
  font-size: var(--normal-font-size);
}

/*=============== THEME ===============*/
.nav__buttons {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color 0.3s;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

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

.section {
  padding-block: 0 2rem;
}

/*about me*/
.section__title-1,
.section__title-2 {
  position: relative;
  font-size: var(--h1-font-size);
  width: max-content;
  margin: 0.75rem auto 2rem;
  color: var(--text-color);
}

.section__title-1 span,
.section__title-2 span {
  z-index: 5;
  position: relative;
}

/*.section__title-1::after,
.section__title-2::after {
  content: "";
  width: 40px;
  height: 28px;
  background-color: hsla(14, 98%, 50%, 0.2);
  position: absolute;
  top: -4px;
  right: -8px;
}*/
/*
.section__title-2::after {
  top: initial;
  bottom: -4px;
}

.geometric-box {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--first-color);
  rotate: -30deg;
}

.geometric-box::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--black-color);
  left: -5px;
  top: -5px;
}
*/
.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== OPENER ===============*/
.pre-opener {
  width: 100vw;
  height: 100vh;
  background-color: rgb(194, 194, 234);
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(
    circle,
    /*rgba(162, 239, 255, 0.4) 0%,*/ rgba(255, 249, 251, 0.8) 0%,
    rgba(239, 186, 250, 0.1) 35%,
    rgba(194, 194, 234, 0.5) 100%
  );
  /*background: radial-gradient(
    circle,
    rgba(238, 174, 202, 1) 0%,
    rgba(148, 187, 233, 1) 100%
  );*/
}

.pre-opener__img {
  /*width: 100%;*/
  max-height: 75vh;
  padding: 20px;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: box-shadow 0.4s, background-color 0.4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  position: relative;
}

.logo__img {
  position: absolute;
}

/*.nav__logo-circle,*/
.nav__toggle {
  width: 32px;
  height: 32px;
  background-color: var(--black-color);
  color: var(--white-color);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgb(158, 158, 247);
}

.nav__logo-circle {
  border-radius: 50%;
  width: 5vh;
}

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

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    /*top: 0;*/
    top: -100%;
    left: 0;
    background-color: hsla(0, 0%, 100%, 0.75);
    width: 100%;
    padding-block: 1.8rem 5rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: top 0.45s;
  }
}
.nav__title,
.nav__name {
  color: var(--white-color);
}

.nav__close {
  color: rgb(158, 158, 247);
}
/*
.nav__title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 3.5rem;
}*/

.nav__name {
  position: relative;
  width: max-content;
  margin: 0 auto 3rem;
  font-size: var(--h2-font-size);
  color: var(--text-color);
}

.nav__name::after,
.nav__name::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--text-color-light);
  /*background-image: url(/colors/14.png);*/
  position: absolute;
  top: 50%;
  left: -4rem;
}

.nav__name::before {
  left: initial;
  right: -4rem;
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  position: relative;
  color: var(--text-color-light);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  transition: all 0.7s;
  padding: 10px 20px;
}

/*.nav__link::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--white-color);
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  transition: width 0.5s;
}*/

.nav__link:hover {
  background-image: url(/colors/64-3.png);
  background-color: rgba(255, 255, 255, 0.1);
  /* background-blend-mode: hard-light;*/
  background-position: center;
  background-size: cover;
  color: var(--white-color);
  border-radius: 30px;
}

.nav__link:hover::after {
  /*width: 50%;*/
}

.nav__close {
  position: absolute;
  font-size: 1.5rem;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: 0;
}

/* Add shadow header */
.shadow-header {
  box-shadow: 0 1px 16px hsla(0, 0%, 0%, 0.12);
}

/* Active link */
.active__item {
  /* background-image: url(/colors/64-3.png);
  background-color: rgba(255, 255, 255, 0.1);
  */ /* background-blend-mode: hard-light;*/
  /*background-position: center;
  background-size: cover;
  color: var(--white-color);
  border-radius: 30px;
  padding: 10px 20px;*/
}

.active-link {
  color: var(--text-color);
  /*text-decoration: underline;*/
}

.active-link::after {
}

.nav__langs {
  margin-right: 1vw;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  color: var(--black-color);
  text-decoration: none;
}

.nav__lang-acronym:visited,
.nav__lang-acronym:active {
  color: var(--black-color);
}

/*=============== HOME ===============*/
.home {
  background-image: url(/colors/59-2-2.png);
  background-size: cover; /* Optional, scales the image to cover the entire element */
  background-position: center;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  z-index: -3;
}

/*.home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
}*/

.home__container {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
}

.home__name {
  font-size: var(--biggest-font-size);
  text-align: center;
  color: white;
  /*text-shadow: 1px 1px 10px rgb(70, 0, 135);*/
  font-size: 10vh;
  z-index: 5;
}

.home__perfil {
  /*   position: relative;*/
  justify-self: center;
}

.home__image {
  width: 100px;
}

.home__img {
  width: 80%;
  position: relative;
  z-index: 10;
  border-radius: 40px;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/ /* Add a shadow here */
  box-shadow: 15px -15px 20px rgba(255, 253, 250, 0.5),
    -15px -15px 10px rgba(255, 253, 250, 0.5),
    -15px 15px 10px rgba(255, 253, 250, 0.3),
    15px 15px 8px rgba(255, 253, 250, 0.3); /* Add a shadow here */
}
/*
.home__shadow {
  width: 100%;
  height: 100%;
  background-color: var(--container-color);
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  border: 4px solid var(--black-color);
  z-index: 5;
  transition: background-color 0.4s;
}

.home__arrow,
.home__line {
  position: absolute;
  filter: invert(1);
  width: 50px;
  transition: filter 0.4s;
}

.home__arrow {
  left: 40%;
  bottom: -4rem;
}

.home__line {
  right: -2rem;
  left: -0.5rem;
}
*/
.home__perfil,
.geometric-box {
  top: 2.5rem;
  left: -0.7rem;
  z-index: 10;
}
/*
.home__social {
  height: max-content;
  position: absolute;
  left: -3rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: grid;
  row-gap: 1rem;
}

.home__social-link {
  background-color: var(--black-color-light);
  color: var(--white-color);
  font-size: 1.25rem;
  padding: 6px;
  display: grid;
  place-items: center;
  transition: background-color 0.3s;
}

.home__social-link:hover {
  background-color: var(--black-color);
}*/

.home__info {
  margin-top: 4rem;
}

.home__description {
  text-align: center;
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

.home__description b {
  background: linear-gradient(
    90deg,
    hsla(14, 98%, 50%, 0.3),
    hsla(14, 98%, 50%, 0)
  );
}

.home__scroll {
  display: block;
  width: max-content;
  margin: 0 auto;
}

.home__scroll-text {
  display: none;
}

.home__scroll-box {
  background-color: var(--black-color);
  color: var(--white-color);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.4s;
}

.home__scroll-box i {
  animation: scroll-down 3s infinite;
}

/* Animate scroll icon */
@keyframes scroll-down {
  0% {
    transform: translateY(-1rem);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0.6rem);
    opacity: 0;
  }
}

/*=============== BUTTON ===============*/
.button,
.button__ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.button {
  background-color: var(--black-color);
  padding: 1.1rem;
  color: var(--white-color);
  font-weight: var(--font-medium);
  transition: background-golor 0.4s;
}

button i {
  font-size: 1.25rem;
}

.button:hover {
  background-color: var(--first-color);
}

.button__ghost {
  border: 3px solid var(--black-color);
  color: var(--black-color);
  padding: 0.5rem;
  transition: border 0.4s, color 0.4s;
}

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

.button__ghost:hover {
  border: 3px solid var(--first-color);
}

/*=============== ABOUT ===============*/
.profile {
  background-color: var(--container-color);
  transition: background-color 0.4s;
}

.profile__container {
  row-gap: 0;
  align-items: center;
  justify-items: center;
}

.profile__perfil {
  position: relative;
  justify-self: center;
  margin-block: 2.5rem 4.5rem;
}

.profile__image {
  width: 220px;
}

.profile__img {
  position: relative;
  border: 4px solid var(--white-color);
  z-index: 1;
}

.profile__shadow {
  position: absolute;
  width: 280px;
  height: 420px;
  top: -4rem;
  right: 10rem;
  opacity: 0.6;
  background-image: url(/colors/8-1.png);
  border-radius: 6px 38px;
  /*    border-bottom: 6px solid var(--first-color);*/
}

/*.about__shadow,
.about__line,
.about__box {
  position: absolute;
}*/

/*.about__shadow {
  width: 150px;
  height: 385px;
  background-color: var(--body-color);
  top: -2.5rem;
  right: -3.5rem;
  border-bottom: 4px solid var(--first-color);
  transition: background-color 0.4s;
}

.about__perfil .geometric-box {
  top: 1.5rem;
  right: -2.8rem;
}

.about__line {
  filter: invert(1);
  right: -1.25rem;
  top: 6rem;
  width: 50px;
  transition: filter 0.4s;
}

.about__box {
  width: 40px;
  height: 40px;
  background-color: var(--first-color);
  right: -0.5rem;
  bottom: 1.5rem;
}
*/
.profile__info {
  padding-left: 1.25rem;
  align-items: center;
  justify-content: center;
}

.profile__description {
  position: relative;
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

/*.about__description::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--title-color);
  position: absolute;
  left: -1.75rem;
  top: 0.5rem;
}

.about__list {
  list-style: square;
  color: var(--title-color);
  margin-bottom: 3rem;
}

.about__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}
*/

.about__container {
  position: relative;
}
.about__bkg {
  /*overflow: hidden;*/
  border-radius: 20px;
  position: absolute;
  z-index: -2;
  opacity: 0.8;
  transform: rotate(125deg);
  right: -105vh;
  top: -30vh;
}

.about__image {
  max-width: 350px;
}

.about__content {
  width: 100%;
  overflow: auto;
}

.about__content img {
  float: right;
  margin: 0 0 2rem 2rem;
  border-radius: 8px;
}

.about__description {
  text-align: center;
}

/*=============== SERVICES ===============*/
.title__bkg-services {
  background-image: url(/colors/65-1.png);
  background-position: center;
  display: flex;
  height: 55vh;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title__services,
.title__top {
  align-self: center;
  top: 10px;
  font-size: var(--biggest-font-size);
  color: var(--white-color);
  -webkit-text-stroke: 0.5px #d9c2ea;
  /*text-shadow: 2px 2px 2px purple;*/
}

.services__section {
  background-color: var(--container-color);
}
.services__container {
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-around;
  row-gap: 2rem;
  background-color: var(--container-color);
  height: 45vh;
}

.services__container .grid {
  padding: 0;
}

.services__card__new {
  color: var(--white-color);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 0.2rem solid var(--white-color);
  background-image: url(/colors/37-1.png);
  background-size: cover; /* Optional, scales the image to cover the entire element */
  background-position: center;
  align-items: center;
  /* align-content: center;*/
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transition: transform 0.5s;
  text-align: center;
}

.services__card__new:hover {
  transform: scale(1.1);
}

.services__card__new a {
}

.services__name {
  color: var(--white-color);
}

.services__grid {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10vh 0;
  position: relative;
}

.services__bkg-1 {
  position: absolute;
  background-image: url(/colors/62-2.png);
  height: 100vh;
  width: auto;
}
.services__bkg-2 {
}

.services__info {
  max-width: 1100px;
  margin: 0px;
  padding: 0px;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
}

.services__info h2 {
  margin-bottom: 10px;
}

/*.services__info h2 {
  padding-top: 10rem;
}*/

.services-title {
  background-image: url('../../colors/37-1.png');
  background-size: cover;
  background-position: center;
  width: fit-content;
  border-radius: 5px 20px;
  margin-bottom: .5rem;
}

.services__content-1 h2, .services__content-2 h2, .services__content-3 h2{
  color: var(--white-color);
  background-color: rgba(254, 254, 254, 0.25);
  margin: 0 !important;
  width: fit-content;
  padding: .5rem;
  border-radius: 5px 20px;
  /*-webkit-text-stroke: 0.5px #d9c2ea;*/
  /*text-shadow: 2px 2px 2px purple;*/
 }

.services__details-1 {
  /*margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(
    2,
    1fr
  ); */ /* Three columns with a 1:2:1 width ratio */
  /* gap: 2rem;
  align-items: center;*/
  max-width: max-content;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  /*grid-template-areas:
    "content-1 content-1 content-1 content-1 image-1 image-1"
    "content-2 content-2 content-2 content-2 image-1 image-1"
    "image-2 image-2 image-2 content-3 content-3 content-3";*/
  align-items: center;
  margin-bottom: 2rem;
}

.services__details-2 {
  max-width: max-content;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.services__content-1 {
  /*grid-area: content-1;*/
  grid-column: 1/5;
  grid-row: 1/2;
}
.services__content-2 {
  /* grid-area: content-2;*/
  grid-column: 1/5;
  grid-row: 2/3;
  align-self: baseline;
}

.services__image-1 {
  /*grid-area: image-1;*/
  grid-column: 5/6;
  grid-row: 1/3;
  border-radius: 8px;
  max-width: 250px;
  justify-self: end;
}

.services__image-2 {
  /* grid-area: image-2;*/
  grid-column: 1/2;
  grid-row: 1/2;
  border-radius: 8px;
  max-width: 500px;
}

.services__content-3 {
  /*grid-area: content-3;*/
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: center;
}

.services__card {
  position: relative;
}

.services__content {
  height: 100%;
  background-color: var(--body-color);
  border: 4px solid var(--black-color);
  padding: 6rem 1rem 3rem;
  z-index: 5;
  position: relative;
  transition: background-color 0.4s, border 4s;
}

.services__border {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid var(--first-color);
  top: 0;
  left: 0;
  transition: transform 0.4s;
}

.services__card:hover .services__border {
  transform: translate(0.75rem, 0.75rem);
}

.services__icon {
  position: relative;
  display: inline-block;
}

.services__icon i {
  font-size: 2rem;
  color: var(--black-color);
  position: relative;
  z-index: 5;
}

.services__box {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--first-color);
  right: -2px;
  top: -2px;
}

.services__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1.25rem;
}

/*=============== PROJECTS ===============*/
.projects {
  background-color: var(--container-color);
  transition: background-color 0.4s;
}

.projects__container {
  /*display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  justify-content: center;
  row-gap: 2rem;*/
}

.projects__card {
  padding: 1rem 1rem;
  transition: background-color 0.4s;
  background-color: var(--white-color);
  border-radius: 6px;
  gap: 2rem;
  height: 450px;
  position: relative;
  /* display: grid;*/
}

.projects__image {
  position: relative;
  width: 100%;
  height: auto;
  /*align-self: flex-start;*/
  border-radius: 4px;
  /*background-color: var(--blue-10-102);
  background-image: url(https://uploads-ssl.webflow.com/5ce10a4…/5de4ce9…_Image-Default.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;*/
  /* border-top-left-radius: 20px;
  justify-content: flex-end;
  display: flex;
  position: relative;
  overflow: hidden;
  text-align: center;*/
}

.projects__content {
  /*align-self: flex-start;*/
  margin-top: 20px;
}

.article__btn__container {
  position: absolute;
  bottom: 22px;
}
.article__buttons {
  /*position: absolute;
  bottom: 20px;
  display: grid;
  justify-content: center;*/
}

.article__button {
  margin-right: 20px;
}
.projects__button {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
}

.projects__content {
  margin-bottom: 1.25rem;
  align-self: flex-end;
}

.projects__subtitle {
  position: relative;
  display: inline-block;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
}

.projects__subtitle::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--text-color);
  position: absolute;
  top: 50%;
  left: 0;
}

.projects__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.75rem;
}

.projects__button {
  /*projects__buttons ?*/
  display: flex;
  align-items: flex-start;
  justify-content: baseline;
  column-gap: 1rem;
}

.projects__link {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  transition: color 0.4s;
}

.projects__link i {
  font-size: 1rem;
  color: var(--title-color);
  transition: color 0.4s;
}

.projects__link:hover,
.projects__link:hover i {
  color: var(--first-color);
}

.projects__card:hover {
  background-color: var(--white-color);
}

.article__btn__container {
}

.article__buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  align-self: flex-end;
  /*display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: left;*/
  /*justify-items: center;*/

  /* display: flex;
  align-items: center;
  justify-content: space-around;*/
}
.article__button {
  background-image: url(/colors/50-1.png);
  background-position: center;
  background-size: cover;
  padding: 10px 0px;
  border-radius: 25px;
}
.article__button-link {
  background-color: white;
  margin: 9px 2px;
  padding: 8px 20px;
  border-radius: 25px;
  color: var(--black-color);

  /* border: 2px solid transparent;
  border-image: url(/colors/50-1.png) 20 round;
 border-radius: 25px;
  padding: 10px 20px;*/
}
.article__button-link:hover {
  /*background-image: url(/colors/50-1.png);
  text-shadow: 1px 1px 1px violet;
  background-position: center;
  background-size: cover;*/
  background-color: transparent;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/*================ ARTICLE ==================*/
/*.title__container {
  padding: 1rem 0;
  background-color: white;
}*/

.title__container {
  background-image: url(../../colors/58-1-2.png);
  background-repeat: cover;
  background-position: center;
  position: relative;
}

.article__title {
  color: white;
  padding: 80px;
  font-size: var(--h1-font-size) /*2.5rem*/;
  text-align: center;
  margin-top: -1rem;
  text-shadow: -1px 1px 2px rgb(250, 91, 6);
}

.article__title-sub {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
}

.article__title-sub p {
  color: white;
  text-align: center;
  /*margin-top: -1rem;*/
  text-shadow: -1px 1px 2px rgb(250, 91, 6);
  
}

.article__pdf {
  display: flex;
  margin: auto;
  width: 750px;
  height: 980px;
}

.article__image__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  margin: 80px auto 70px;
}

.article__image-slo {
  margin-top: 20px;
  border-radius: 6px;
}

.article__en p {
  margin-bottom: 15px;
}
.article__en h3 {
  margin: 10px 0 5px;
}

.article__en-love .article__h3 {
  background-image: url('../../colors/58-1-2.png');
  background-size: 130%;
  background-position: 50% 50%;
  width: fit-content;
  border-radius: 5px 20px 20px 5px;
  margin-bottom: .5rem;
}

.article__en-love .article__h3 h3 {
  color: var(--white-color);
  background-color: rgba(254, 254, 254, 0.05);
  margin: 0 !important;
  width: fit-content;
  padding: .5rem 1.5rem .5rem .3rem;
  border-radius: 5px 20px 20px 5px;
  -webkit-text-stroke: 0.5px #d9c2ea;
  /*text-shadow: 2px 2px 2px purple;*/
}

.article-aura-photo {
  max-width: 350px;
  float: right;
  margin: 2rem 0 0 2rem;
}

.article-aura-photo img {
  border-radius: 8px;
}

.foto_by {
  font-style: italic;
  font-size: var(--small-font-size);
}


.article__en {
  position: relative;
}

/*.hidden__overflow {
  overflow: hidden;
}*/

.article__bkg-1 {
  /*overflow: hidden;*/
  border-radius: 20px;
  position: absolute;
  z-index: -2;
  opacity: 0.3;
  transform: rotate(25deg);
  right: -70vh;
  top: 30vh;
  height: 80vh;
  width: 35vw;
}

.article__bkg-2 {
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  z-index: -2;
  opacity: 0.3;
  transform: rotate(25deg);
  left: -75vh;
  top: 120vh;
  height: 100vh;
  width: 35vw;
}

.article__bkg-3 {
 /*overflow: hidden;*/
 border-radius: 20px;
 position: absolute;
 z-index: -2;
 opacity: 0.3;
 transform: rotate(25deg);
 right: -70vh;
 top: 280vh;
 height: 100vh;
  width: 35vw;
}

.article__bkg-4 {
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  z-index: -2;
  opacity: 0.3;
  transform: rotate(25deg);
  left: -75vh;
  top: 380vh;
  height: 100vh;
  width: 35vw;
}

/*.article__bkg-5 {
  display: none;
}*/

/*
.article__bkg-5 {}

.article__image__container {
  
}

.article__image__container__bkg{
  background-image: url(../../colors/39-1-v.png);
  background-position:center;
  background-size:cover;
}

.article__en-universe {
  background-color: rgba(245, 245, 245, 0.7);
  padding: 2rem;
}
*/
/*============== MORE ==============*/
/*
.masked__title {
  width: 300px;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.masked__image {
  width: 400px;
  height: 400px;
  background-image: url("/colors/56.png"); 
  background-size: cover;
}

.masked__title {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  text-align: center;
  line-height: 200px;/* /* Center text vertically */ /*
}
*/
/*=============== CONTACT ===============*/
.contact {
  padding-bottom: 0;
}

.contact__container {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  /* grid-template-rows: 300px max-content max-content;
  row-gap: 0;*/
  background-color: var(--container-color);
}
/*
.contact__data {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: var(--container-color);
  padding: 3rem 1.5rem 3.5rem;
  margin-left: auto;
  border-bottom: 4px solid var(--first-color);
  z-index: 5;
  transition: background-color 0.4s;
}*/

.contact__data .section__title-2 {
  margin: 0 0 1.5rem;
  transform: translateX(-3rem);
}

.contact__description-1 {
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-bottom: 2rem;
}

.contact__description-2 {
  color: var(--title-color);
  font-size: var(--small-font-size);
}

/*.contact__data .geometric-box {
  top: 2rem;
  right: 2.5rem;
}*/

.contact__mail__container {
  position: relative;
  background-image: url(../../colors/56-1.png);
  background-position: center;
  background-repeat: cover;
  background-size: 125%;
  margin: 4rem .75rem;
  transition: background-color 0.4s;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.1);
}

.contact__mail {
  position: relative;
  padding: 5rem 1.5rem 2.7rem;
  margin: 1rem;
  transition: background-color 0.4s;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.2);
}

/*.contact__mail::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
}*/

.contact__title {
  color: var(--white-color);
  font-size: 2.1rem;
  margin-bottom: 2rem;
  text-align: center;
  -webkit-text-stroke: .3px var(--first-color);
  /*text-shadow: 2px 2px 2px purple;*/
}

.contact__form,
.contact__group {
  /*1:15:46*/
  display: grid;
  row-gap: 1.25rem;
}

.contact__form {
  position: relative;
}

.contact__box {
  position: relative;
  width: 100%;
  height: 58px;
}

.contact__input,
.contact__button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  outline: none;
  border: none;
  border-radius: 6px;
}

.contact__input {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.98);
  border: 2px solid var(--text-color-light);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  font-weight: var(--font-medium);
  transition: border 0.4s, background-color 0.4s;
  border-radius: 6px;
}

.contact__input::placeholder {
  color: var(--text-color-light);
  transition: opacity 0.4s;
}

.contact__input:focus {
  border: 2px solid var(--text-color-light);
}

.contact__input:-webkit-autofill {
  transition: background-color 6000s, color 6000s;
}

.contact__label {
  position: absolute;
  top: -16px;
  left: 10px;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  background-color: rgba(245, 245, 245, 0.98);
  border-radius: 6px;
  padding: 8px;
  pointer-events: none;
  transition: top 0.4s, opacity 0.4s, background-color 0.4s;
  opacity: 0;
}

.contact__form .contact__area {
  height: 10rem;
}

.contact__area textarea {
  resize: none;
  padding-top: 1rem;
}

.contact__button {
  background-color: var(--first-color);
  cursor: pointer;
}

/* Opaque placeholder */
.contact__input:focus::placeholder {
  opacity: 0;
  border: 2px solid var(--text-color-light);
}

/* Move label up & sticky label */
.contact__input:focus + .contact__label,
.contact__input:not(:placeholder-shown).contact__input:not(:focus)
  + .contact__label {
  opacity: 1;
  top: -16px;
}

.contact__social {
  display: grid;
  row-gap: 1rem;
  /*background-color: hsl(0, 0%, 10%);*/
  padding-block: 0rem 2rem;
  text-align: center;
}
/*
.contact__social-arrow {
  width: 32px;
  margin: 0 auto;
}
*/
.contact__social-data {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.contact__social-description-1 {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  margin-bottom: 0.5rem;
}

.contact__social-description-2 {
  color: var(--white-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
}

.contact__social-links {
  display: flex;
  justify-content: center;
  column-gap: 2.75rem;
}

.contact__social-link {
  background-color: var(--social-link-color);
  padding: 1rem;
  border-radius: 20%;
  color: var(--first-color);
  font-size: 2rem;
  display: grid;
  place-items: center;
  transition: background-color 0.3s;
}

.contact__social-link:hover {
  background-color: var(--first-color);
  color: var(--white-color);
}

.contact__message {
  color: var(--white-color);
  font-size: var(--small-font-size);
  position: absolute;
  bottom: -1.5rem;
  left: 0;
}

.contact__email {
  margin-top: 1rem;
  color: var(--text-color);
  color: var(--first-color);
  background-color: var(--social-link-color);
  width: fit-content;
  align-self: center;
  margin: 1.25rem auto 0;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all ease-in-out 100ms;
}

.contact__email:hover {
  transform: scale(1.05);
  /*transition: all ease-in-out 100ms;*/
}

/*================= MORE ===============*/
.more {
  background-color: var(--container-color);
  padding: 0px;
  padding-bottom: 7rem !important;
  position: relative;
}

.more__2 {
  background-color: var(--container-more-color);
}
.more__container {
  padding: 5px;
  border-radius: 20px;
  background-image: url(/colors/50-1.png) /*url(/colors/37\ -\ Copy.png)*/;
  background-position: center;
  background-size: cover;
  height: 100%;
  max-width: 800px;
}

/*
.more__container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
}*/

.more__content {
  margin: 0;
  padding: 20px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.9);
}
.more__buttons {
  margin: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  /* display: flex;
  align-items: center;
  justify-content: space-around;*/
}
.more__button {
  background-image: url(/colors/50-1.png);
  background-position: center;
  background-size: cover;
  padding: 10px 0px;
  border-radius: 25px;
}
.more__button-link {
  background-color: white;
  margin: 9px 2px;
  padding: 8px 20px;
  border-radius: 25px;
  /* border: 2px solid transparent;
  border-image: url(/colors/50-1.png) 20 round;
 border-radius: 25px;
  padding: 10px 20px;*/
}
.more__button-link:hover {
  /*background-image: url(/colors/50-1.png);
  text-shadow: 1px 1px 1px violet;
  background-position: center;
  background-size: cover;*/
  background-color: transparent;
  color: white;
  font-weight: bold;
}


/*============== PRIVACY POLICY =============*/
.policy__titles {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.policy__list li {
  list-style-type: disc;
  margin-left: 2rem;
  margin-top: 0.5rem;
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--body-color);
}

.footer__container {
  padding-block: 3rem 2rem;
  /*row-gap: 2.5rem;*/
}

.footer__links {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
}

.footer__link {
  color: var(--white-color);
  transition: color 0.4s;
}

.footer__link:hover {
  color: var(--text-color-light);
}

.footer__copy {
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
  text-align: center;
}

.footer__copy a {
  color: var(--text-color-light);
  font-weight: var(--font-medium);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: hsl(0, 0%, 65%);
}

::-webkit-scrollbar-thumb {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: hsl(0, 0%, 50%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 40%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: 3rem; /*-50%*/
  border-radius: 50%;
  background-color: rgba(252, 252, 252, 0.8);
  border: 1px solid rgb(158, 158, 247);
  display: inline-flex;
  padding: 8px;
  font-size: 1.25rem;
  color: var(--white-color);
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s, background-color 0.4s;
}

.ri-arrow-up-s-line {
  color: rgb(158, 158, 247);
  font-weight: normal;
}

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

/* Show scroll up*/
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 415px) {
  .container {
    margin-inline: 1rem;
  }

  /*.home::before {
    transform: rotate(50deg);
  }*/

  .home {
    background-image: url(../../colors/59-2-v.png);
    background-position: 0%;
  }
  

  .home__image {
    width: 240px;
  }

  .profile__image {
    width: 240px;
  }

  .profile__shadow {
    height: 330px;
    right: -2.5rem;
  }

 /* .about__bkg {
    height: 60vh;
    right: -35vh;
    top: 20vh;
    transform: rotate(-140deg) !important;
   */ /*transform: matrix3d(-0.573576, 0.819152, 0, 0, -0.819152, -0.573576, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);*/
    /*transition: opacity 2.2s cubic-bezier(0.5, 0, 0, 1) 0.4s, transform 2.2s cubic-bezier(0.5, 0, 0, 1) 0.4s;
 }*/
.about {
 /* background-image: url(../../colors/62-2.png);
  background-position: center;
  background-size: contain;
  border-radius: 6px;
  margin: 0 auto;
  opacity: 0.5;*/
}

/*.about h2 {
  background-image: url(/colors/62-2.png);
  background-size: cover;
  background-position: center;
  padding: 10px 20px;
  border-radius: 10px;
  height: 40vh;
  width: 100vw;
  display: block;
  align-items: center;
}

.about h2 span {
  background-color: rgba(245, 245, 245, 0.3);
  padding: 20px !important;
}
*/
/*.about__img__container {
  background-image: url(../../colors/62-2.png);
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  margin: 0 auto;
  padding: 20px;
  height: fit-content;
}*/

.about__image {
  /*max-width: 350px;*/
  position: relative;
  display: block;
  margin: 0 auto;
  float: none !important;
}

.about__content img {
  margin: 0 auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.about__bkg {
  display: none;
}

.about__bkg-s-1 {
   /*overflow: hidden;*/
   border-radius: 20px;
   position: absolute;
   z-index: -2;
   opacity: 0.3;
   transform: rotate(25deg);
   right: -80%;
   top: 5%;
   height: 25%;
}

.about__bkg-s-2 {
   /*overflow: hidden;*/
   border-radius: 20px;
   position: absolute;
   z-index: -2;
   opacity: 0.3;
   transform: rotate(25deg);
   left: -80%;
   top: 42%;
   height: 25%;
}

.about__bkg-s-3 {
  /*overflow: hidden;*/
  border-radius: 20px;
  position: absolute;
  z-index: -2;
  opacity: 0.3;
  transform: rotate(25deg);
  right: -80%;
  top: 80%;
  height: 25%;
}

  /*.h3__bkg {
    background-image: url(../../colors/62-2.png);
    background-position: center;
    background-size: cover;
    padding: 1rem;
    border-radius: 6px;
  }*/

  .articles__container {
    /*height: 60vh;*/
    padding-top: 0px !important;
    margin-top: 2rem;
  }

  .article__container {
    height: 100%;
    width: 90vw;
    padding-bottom: 50px;
  }
  .article__pdf {
    /*width: 80vw;
    height: 50vh;
*/
    width: 90%;
    height: 60vh;
  }


.article__en {
  position: relative;
}

.article__bkg-1 {
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  z-index: -2;
  opacity: 0.3;
  transform: rotate(25deg);
  right: -80%;
  top: 2%;
  height: 10%;
  width: 100%;
}

.article__bkg-2 {
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  z-index: -2;
  opacity: 0.3;
  transform: rotate(25deg);
  left: -68%;
  top: 20%;
  height: 10%;
  width: 100%;
}

.article__bkg-3 {
 overflow: hidden;
 border-radius: 20px;
 position: absolute;
 z-index: -2;
 opacity: 0.3;
 transform: rotate(25deg);
 right: -80%;
 top: 42%;
 height: 10%;
  width: 100%;
}

.article__bkg-4 {
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  z-index: -2;
  opacity: 0.3;
  transform: rotate(25deg);
  left: -68%;
  top: 70%;
  height: 10%;
  width: 100%;
}

.article__bkg-5 {
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  z-index: -2;
  opacity: 0.3;
  transform: rotate(25deg);
  right: -80%;
  top: 94.5%;
  height: 10%;
  width: 100%;
}
 

.article__title-sub {
  position: relative;
}

  .title__container {
    margin-top: 6vh;
  }

  .contact__data {
    width: 100%;
  }

  .contact__data .section__title-2 {
    transform: translateX(0);
  }

  .section__title-1 span, .section__title-2 span {
    font-size: 3.5rem;
  }

  .contact__mail__container {
    position: relative;
    background-image: url(../../colors/56-1.png);
    background-position: center;
    background-repeat: cover;
    background-size: 150%;
    margin: 4rem .75rem;
    transition: background-color 0.4s;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .more {
    padding: 0;
    margin: auto;
  }

  .more__container {
    margin: 0;
    width: 80vw;
    background-position: right;
  }

  .more__buttons {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 790px) {
  .title__bkg-services {
    margin-top: 6vh;
    height: 20vh;
    padding-bottom: 0;
  }
  .services__info {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }

  .services__details-1,
  .services__details-2 {
    display: flex;
    flex-direction: column;
  }
  .services__image-1 {
    display: none;
  }
  .services__image-2 {}

  .more__buttons {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .more__button {
    margin-bottom: 1.25rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__logo-circle {
    width: 4vh;
  }

  .home__container,
  .profile__container,
  .projects__container {
    grid-template-columns: 350px;
    justify-content: center;
  }

  .contact__data {
    width: 350px;
    padding: 4rem 1.5rem;
    margin-inline: auto;
  }

  .contact__container {
    grid-template-columns: 500px;
    justify-content: center;
  }

  .contact__group {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
  }

  .contact__social {
    background-color: transparent;
  }

  .contact__social-arrow {
    filter: invert(1);
  }

  .contact__social-description-1 {
    color: var(--text-color);
  }

  .contact__social-description-2 {
    color: var(--title-color);
  }

  .dark-theme .contact__social-arrow {
    filter: none;
  }
}

@media screen and (min-width: 768px) {
  .services__container {
    grid-template-columns: repeat(2, 250px);
  }
  .projects__container {
    grid-template-columns: repeat(2, 350px);
  }
  .article__pdf {
  }
}

@media screen and (max-width: 1149px) {
  .profile {
  }
  .profile__container {
    padding: 50px;
  }
  .profile__perfil {
    justify-content: center;
    align-items: center;
  }
  .profile__image {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .profile__img {
    border-radius: 20px;
  }
  .profile__shadow {
    display: none;
    width: 180px;
    height: 260px;
    top: -2rem;
    right: 5rem;
    border-radius: 38px;
  }
  .services__container {
    display: none;
  }

  .services__grid {
    padding: auto 40px;
  }
  .title__bkg-services {
    padding: 0;
    height: 40vh;
  }
  .projects__container {
    padding-top: 10vh;
  }
  .more {
    display: flex;
    padding-top: 7rem;
    align-items: center;
    justify-content: center;
  }
}
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 6.5rem 2rem;
  }

  .section__title-1::after,
  .section__title-2::after {
    width: 70px;
    height: 48px;
  }

  .geometric-box {
    transform: scale(1.2);
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    column-gap: 4rem;
  }

  .nav__logo-circle {
    width: 5vh;
  }

  .nav__close,
  .nav__toggle,
  .nav__title,
  .nav__name {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__menu {
    margin-left: auto;
  }
  .nav__link {
    color: var(--text-color);
    font-size: var(--normal-font-size);
  }
  .nav__link:hover {
    color: var(--title-color);
  }
  .nav__link::after {
    background-color: var(--title-color);
  }

  .active__item::after {
    /* background-image: url(/colors/64-3.png);
    background-color: rgba(255, 255, 255, 0.1);*/
    /* background-blend-mode: hard-light;*/
    /* background-position: center;
    background-size: cover;
    color: var(--white-color);
    border-radius: 30px;
    padding: 10px 20px;*/

    background-image: url(../colors/50-1.png);
    background-position: center;
    background-size: cover;
    /*padding: 10px 0px;*/
    border-radius: 25px;
  }

  /*.active-link {
    color: var(--title-color);
    font-weight: bold;
*/
  /* background-color: white;*/ /*
    margin: 9px 2px;
    padding: 8px 20px;
    border-radius: 25px;
  }*/
  .nav__link-button {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 1.1rem 1.5rem;
  }
  .nav__link-button:hover {
    color: var(--white-color);
  }
  .nav__link-button::after {
    background-color: transparent;
  }

  .change-theme {
    color: var(--text-color);
  }

  .change-theme:hover {
    color: var(--title-color);
  }

  .home__container {
    grid-template-columns: repeat(2, 460px);
    gap: 2rem 4rem;
    align-items: center;
    padding-block: 5.5rem;
  }
  .home__perfil {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
  .home__image {
    width: 350px;
  }
  .home__shadow {
    right: -1.25rem;
    bottom: -1.25rem;
    border: 6px solid var(--black-color);
  }
  .home__name,
  .home__description {
    text-align: initial;
  }
  .home__name {
    align-self: flex-end;
  }
  .home__info {
    margin-top: 0;
    align-self: flex-start;
  }
  .home__description {
    position: relative;
    font-size: var(--h2-font-size);
    margin-bottom: 5.5rem;
    padding-left: 3rem;
  }
  .home__description::after {
    content: "";
    width: 32px;
    height: 2px;
    background-color: var(--title-color);
    position: absolute;
    left: 0;
    top: 14px;
  }
  .home__scroll {
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
  }
  .home__scroll-text {
    display: block;
    color: var(--text-color);
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
  }
  .home__scroll-box {
    width: 44px;
    height: 44px;
  }
  .home__scroll-box i {
    font-size: 1.25rem;
  }
  .home__perfil .geometric-box {
    top: 15rem;
  }
  .home__arrow {
    top: 4.5rem;
    left: -8rem;
    rotate: 80deg;
    width: 80px;
  }
  .home__line {
    left: -15rem;
    bottom: 4rem;
    width: 80px;
    rotate: 30deg;
  }
  .home__social {
    left: initial;
    right: -6rem;
  }
  .home__social-link {
    font-size: 1.5rem;
    padding: 0.5rem;
  }

  .profile__container {
    grid-template-columns: 440px 525px;
    align-items: center;
    justify-items: center;

    /*padding-block: 1rem;*/
  }

  .profile__perfil {
    order: -1;
  }

  /*.about__img {
    border: 8px solid var(--white-color);
  }*/
  .profile__shadow {
    position: absolute;
    width: 280px;
    height: 420px;
    top: -4rem;
    right: 10rem;
    opacity: 0.6;
    background-image: url(/colors/8-1.png);
    border-radius: 6px 38px;
    /*    border-bottom: 6px solid var(--first-color);*/
  }
  /*
  .about__perfil .geometric-box {
    right: -4rem;
    top: 4.5rem;
  }
  .about__line {
    width: 80px;
    right: -2rem;
    top: 10rem;
  }
  .about__box {
    width: 64px;
    height: 64px;
    right: -0.75rem;
  }*/
  .about__container .section__title-1 {
    align-self: flex-end;
    margin-inline: 0;
  }
  .about__image {
    width: 350px;
    position: relative;
  }
  .about__info {
    justify-content: center;
    /*align-self: flex-start;
    padding-left: 3rem;*/
  }
  .about__description {
    font-size: var(--h2-font-size);
    margin-bottom: 2rem;
  }
  .about__description::after {
    width: 32px;
    height: 2px;
    left: -3rem;
    top: 14px;
  }
  .about__list {
    margin-bottom: 5rem;
  }
  .about__buttons {
    justify-content: initial;
  }

  .button__ghost {
    padding: 0.7rem;
  }
  .button__ghost i {
    font-size: 1.5rem;
  }

  .services__container {
    grid-template-columns: repeat(3, 282px);
    column-gap: 5rem;
  }
  .services__content {
    padding: 6.5rem 1.5rem 3.5rem;
    border: 6px solid var(--black-color);
  }
  .services__icon i {
    font-size: 3rem;
  }
  .services__box {
    width: 32px;
    height: 32px;
  }
  .services__title {
    margin-bottom: 1.5rem;
  }
  .services__card:hover .services__border {
    transform: translate(1.25rem, 1.25rem);
  }
  .projects__container {
    grid-template-columns: repeat(3, 350px);
    padding: 6rem 1rem;
  }
  .projects__card {
    /*padding: 1.25rem 1.25rem 2.5rem;*/
  } /*
  .projects__image {
    margin-bottom: 1rem;
  }
  .projects__content {
    margin-bottom: 2rem;
  }
  .projects__button {
    right: 1.25rem;
  }

  .article__pdf {
    width: 800px;
    height: 1050px;
  }

  .contact__container {
    grid-template-columns: 440px 670px;
    grid-template-rows: initial;
    padding-bottom: 2rem;
  }
  .contact__mail {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    padding: 7rem 5.5rem 6rem 7.5rem;
    margin-top: 0;
  }
  .contact__title {
    font-size: var(--h3-font-size);
    text-align: initial;
  }
  .contact__box {
    height: 60px;
  }
  .contact__form .contact__area {
    height: 11rem;
  }
  .contact__button {
    margin-top: 1.25rem;
    width: max-content;
  }
  .contact__data {
    width: 392px;
    height: 375px;
    padding: 4.5rem 3.5rem 3.5rem;
    margin: 7.5rem 0 0 8rem;
    border-bottom: 6px solid var(--first-color);
  }
  .contact__data .section__title-2 {
    margin: 0 0 2rem;
    transform: translateX(-6.5rem);
  }
  .contact__social {
    margin-left: 8rem;
    text-align: initial;
  }
  */
  /*cut this out*/
  /* .contact__social-data {
      flex-direction: row;
      align-items: center;
      column-gap: 1.25rem;
    }
    .contact__social-arrow {
      width: 40px;
    }
    .contact__social-link {
      font-size: 1.5rem;
      padding: 0.5rem;
    }*/
  /*after message sent*/

  /* .dark-theme .contact__data {
      box-shadow: 4px 0 8px hsla(0, 0%, 4%, 0.3);
    }*/
  .contact__message {
    bottom: -2rem;
  }
  .footer__container {
    padding-block: 4rem;
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
  .footer__links {
    column-gap: 3rem;
    order: 1;
  }

  .scrollup {
    right: 3rem;
  }
}
