/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Roboto:wght@400;500&display=swap");
@import 'https://fonts.googleapis.com/css?family=Nova+Mono|Eczar';
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(207, 65%, 65%);
  --title-color: hsl(207, 4%, 16%);
  --text-color: hsl(207, 4%, 28%);
  --text-color-light: hsl(207, 4%, 56%);
  --body-color: hsl(207, 4%, 99%);
  --container-color: hsl(207, 4%, 95%);
  --success-color: #1f8905;
  --success-shadow: none;
  --danger-color: rgb(198, 6, 6);
  --danger-shadow: none;
  /* Change the first number */
  /* Blue: 207 - Purple: 250 - Pink: 356 - Teal: 174 */
  --gradient-color: linear-gradient(180deg, hsla(207, 48%, 72%, 0), hsla(207, 65%, 65%, 1));
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Roboto', sans-serif;
  --title-font: 'Lora', serif;
  --biggest-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --tiny-font-size: .625rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --logo-filter: none;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
    --tiny-font-size: .688rem;
  }
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

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

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

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: hsl(207, 4%, 95%);
  --text-color: hsl(207, 4%, 65%);
  --body-color: hsl(207, 4%, 10%);
  --container-color: hsl(207, 4%, 12%);
  --success-shadow: 2px 1px #00040a;
  --success-color: #0ad406;
  --danger-color: #ff0303;
  --danger-shadow: 2px 1px #00040a;
  --logo-filter: brightness(0) invert(1);
}

/*========== 
    Color changes in some parts of 
    the website, in light theme
==========*/
.dark-theme .nav, .dark-theme .nav__menu, .dark-theme .scrollup {
  background-color: var(--container-color);
  box-shadow: 0 4px 20px hsla(207, 24%, 8%, 0.4);
}

.dark-theme .home__social-link {
  color: var(--title-color);
}

.dark-theme::-webkit-scrollbar {
  background: hsl(207, 4%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
  background: hsl(207, 4%, 25%);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
  background: hsl(207, 4%, 45%);
}

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

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

.section {
  padding-block: 2.5rem;
}

.section__border {
  border-bottom: 1px solid var(--title-color);
  padding-bottom: 3.5rem;
}

.section__title,
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.25rem;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 3rem;
}

.main {
  overflow: hidden; /* For animation */
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  position: fixed;
  bottom: 2rem;
  left: 0;
  z-index: var(--z-fixed);
}

.nav {
  height: calc(var(--header-height) + 0.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--body-color);
  box-shadow: 0 10px 35px hsla(207, 24%, 35%, 0.1);
  padding-inline: 1.5rem;
  border-radius: 3rem;
  transition: background 0.4s;
}

.nav__logo, .nav__toggle, .nav__close {
  color: var(--title-color);
}

.nav__logo {
  font-family: var(--title-font);
  font-weight: var(--font-medium);
}

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

@media screen and (max-width: 1020px) {
  .nav__menu {
    position: fixed;
    width: 88%;
    left: 0;
    right: 0;
    bottom: -60%;
    margin: 0 auto;
    background-color: var(--body-color);
    box-shadow: 0 10px 35px hsla(207, 24%, 35%, 0.1);
    padding: 2rem 1.5rem 5rem;
    border-radius: 2rem;
    transition: bottom 0.3s;
  }
}
.nav__list {
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 2rem 3rem;
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.25rem;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  transition: color 0.3s;
}

.nav__link {
  color: var(--title-color);
}

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

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

/* Show menu */
.show-menu {
  bottom: 2rem;
}

/* Active link */
.active-link {
  color: hsl(207, 65%, 45%);
}

/*=============== HOME ===============*/
.home__container {
  row-gap: 4rem;
}

.home__data {
  row-gap: 1.5rem;
}

.home__title {
  text-align: center;
  font-size: var(--biggest-font-size);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.home__blob {
  position: relative;
  width: 200px;
  height: 290px;
  background-color: var(--body-color);
  border: 2px solid var(--text-color);
  justify-self: center;
  border-radius: 6.25rem;
  place-items: center;
  transition: background 0.4s;
}

.home__perfil {
  width: 170px;
  height: 260px;
  background: var(--gradient-color);
  border-radius: 5.5rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.home__perfil img {
  width: 8rem;
}

.home__shape-waves, .home__shape-circle {
  position: absolute;
  opacity: 0.1;
}

.home__shape-waves {
  width: 50px;
  left: -1.5rem;
  top: 5rem;
}

.home__shape-circle {
  width: 150px;
  bottom: -2rem;
  right: -3rem;
  transform: rotate(15deg);
  z-index: -1;
}

.home__social {
  justify-self: center;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.home__social-link {
  font-size: 1.25rem;
  color: var(--text-color-light);
  transition: all 0.3s;
}

.home__social-link:hover {
  transform: translateY(-0.15rem);
  color: #287ABD;
}

.home__info {
  display: grid;
  row-gap: 2rem;
}

.home__info-title {
  font-family: var(--body-font);
  font-size: var(--smaller-font-size);
  font-weight: 400;
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.home__info-description, .home__info-number {
  font-family: var(--title-font);
  color: var(--title-color);
}

.home__info-description {
  padding-right: 4rem;
}

.home__info-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
}

/*=============== SKILLS ===============*/
.skills__container {
  row-gap: 3.5rem;
}

.skills__title {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 2.5rem;
}

.skills__title i {
  font-size: 1rem;
  font-weight: initial;
}

.skills__info, .skills__data, .skills__blob {
  display: grid;
}

.skills__info {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.skills__data {
  justify-content: center;
  text-align: center;
}

.skills__blob {
  width: 80px;
  height: 100px;
  background-color: var(--container-color);
  border-radius: 3rem;
  place-items: center;
  margin-bottom: 1rem;
  transition: background 0.4s;
  justify-self: center;
}

.skills__blob img {
  width: 50px;
}

.skills__blob.theme_icon img {
  filter: var(--logo-filter);
}

.skills__name {
  font-size: var(--small-font-size);
  margin-bottom: 0.25rem;
}

.skills__subtitle {
  font-size: var(--tiny-font-size);
  color: var(--text-color-light);
}

.skills__blob:hover img {
  animation: bounce-skills 0.6s;
}

@keyframes bounce-skills {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(-6px);
  }
  40% {
    transform: translate(0);
  }
  60% {
    transform: translateY(-3px);
  }
  80% {
    transform: translate(0);
  }
}
/* Animation skills */
/*=============== QUALIFICATION ===============*/
.qualification {
  position: relative;
}

.qualification__container {
  row-gap: 3.5rem;
}

.qualification__title {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 2rem;
}

.qualification__title i {
  font-size: 1rem;
  font-weight: initial;
}

.qualification__info {
  display: grid;
  row-gap: 2rem;
}

.qualification__name {
  font-size: var(--normal-font-size);
  margin-bottom: 1.25rem;
}

.qualification__country, .qualification__year {
  display: block;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.qualification__country {
  margin-bottom: 0.75rem;
}

.qualification__img {
  width: 150px;
  position: absolute;
  right: -3rem;
  bottom: 12rem;
  transform: rotate(15deg);
  opacity: 0.1;
}

/*=============== SERVICES ===============*/
.services__container {
  row-gap: 2.5rem;
  justify-content: center;
}

.services__card {
  position: relative;
  width: 280px;
  height: 390px;
  background-color: var(--container-color);
  text-align: center;
  padding: 3.5rem 1rem;
  border-radius: 7.25rem;
  transition: background 0.4s;
}

.services__card i {
  display: block;
  font-size: 2rem;
  color: var(--title-color);
  margin-bottom: 0.75rem;
  transition: transform 0.8s;
}

.services__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1.5rem;
}

.services__border {
  width: 289px;
  height: 398px;
  border: 1px solid var(--text-color-light);
  border-radius: 7.75rem;
  position: absolute;
  inset: 0;
  left: -4px;
  margin: auto;
  z-index: -1;
  transition: opacity 0.3s;
  opacity: 0;
}

.services__card:hover i {
  transform: rotateY(360deg);
}

.services__card:hover .services__border {
  opacity: 1;
}

/*=============== PROJECTS ===============*/
.projects__container {
  overflow: initial;
}

.projects__content {
  display: grid;
  justify-content: center;
}

.projects__img {
  width: 450px;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  max-height: 217px;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects__subtitle {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

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

.projects__button {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  color: var(--title-color);
  font-size: var(--small-font-size);
}

.projects__button i {
  font-size: 1rem;
  transition: transform 0.3s;
}

.projects__button:hover i {
  transform: translateX(0.25rem);
}

/* Swiper class */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  margin: initial;
  font-size: 2.5rem;
  color: var(--title-color);
}

.swiper-button-prev {
  left: 1rem;
  top: 4.5rem;
}

.swiper-button-next {
  right: 1rem;
  top: 4.5rem;
}

.swiper-slide {
  margin-bottom: 4.5rem;
}

.swiper-pagination-bullets {
  bottom: 0;
}

.swiper-pagination-bullet {
  background-color: var(--text-color-light);
  opacity: initial;
}

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

/*=============== TESTIMONIAL ===============*/
.testimonial {
  position: relative;
}

.testimonial__container {
  overflow: initial;
}

.testimonial__content {
  text-align: center;
}

.testimonial__description {
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

.testimonial__name {
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  margin-bottom: 0.25rem;
}

.testimonial__subtitle {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.testimonial__img {
  width: 70px;
  transform: rotate(30deg);
  position: absolute;
  top: 5rem;
  right: -1.5rem;
  opacity: 0.1;
}

/* Swiper class */
/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 3.5rem;
}

.contact__title {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 2.5rem;
}

.contact__title i {
  font-size: 1rem;
  font-weight: initial;
}

.contact__info, .contact__data, .contact__form {
  display: grid;
}

.contact__info {
  row-gap: 2rem;
}

.contact__data {
  row-gap: 0.75rem;
}

.contact__data-title {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.contact__data-info {
  font-size: var(--small-font-size);
  font-family: var(--title-font);
  color: var(--title-color);
}

.contact__button {
  width: -moz-max-content;
  width: max-content;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  color: var(--title-color);
  font-size: var(--small-font-size);
}

.contact__button i {
  font-size: 1rem;
  transition: transform 0.3s;
}

.contact__button:hover i {
  transform: translateX(0.25rem);
}

.contact__form {
  position: relative;
  row-gap: 2rem;
}

.contact__form-div {
  position: relative;
  height: 4rem;
}

.contact__form-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--text-color-light);
  border-radius: 2rem;
  padding: 1.5rem;
  font-size: var(--normal-font-size);
  font-family: var(--title-font);
  color: var(--title-color);
  background: none;
  outline: none;
  z-index: 1;
}

.contact__form-tag {
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  z-index: 10;
  background-color: var(--body-color);
  color: var(--title-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  padding: 0.35rem;
  transition: background 0.4s;
}

.contact__form-area {
  height: 10rem;
}

.contact__form-area textarea {
  resize: none;
}

.contact__form .contact__button {
  border: none;
  background: none;
  font-size: var(--h2-font-size);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  cursor: pointer;
  outline: none;
  margin-top: 0.75rem;
}

.contact__form .contact__button i {
  font-size: 1.5rem;
  font-weight: initial;
}

.al {
  display: none;
}

/*VALIDATION*/
.success {
  border: 2px solid green;
}

.danger {
  border: 2px solid red;
}

.alert-simple, .alert-success {
  display: none;
  border: 1px solid rgba(36, 241, 6, 0.46);
  background-color: rgba(7, 149, 66, 0.1215686275);
  box-shadow: 0px 0px 2px #259c08;
  color: var(--success-color);
  text-shadow: var(--success-shadow);
  transition: 0.5s;
  cursor: pointer;
  padding-left: 5px;
  align-items: center;
}

.alert-success:hover {
  background-color: rgba(7, 149, 66, 0.35);
  transition: 0.5s;
}

.alert-simple-danger, .alert-danger {
  display: none;
  border: 1px solid rgba(241, 6, 6, 0.81);
  background-color: rgba(220, 17, 1, 0.16);
  box-shadow: 0px 0px 2px #ff0303;
  color: rgb(198, 6, 6);
  text-shadow: none;
  transition: 0.5s;
  cursor: pointer;
}

.alert-danger:hover {
  background-color: rgba(220, 17, 1, 0.33);
  transition: 0.5s;
}

.show-message {
  display: flex;
}

/* Status color */
/*=============== FOOTER ===============*/
.footer__container {
  padding: 3rem 0 7rem;
  text-align: center;
}

.footer__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
}

.footer__list, .footer__social {
  display: flex;
  justify-content: center;
}

.footer__list {
  margin: 2.5rem 0;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.footer__link {
  color: var(--title-color);
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__social {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.footer__social-link {
  font-size: 1.25rem;
  color: var(--title-color);
  transition: all 0.3s;
}

.footer__social-link:hover {
  transform: translateY(-0.15rem);
  color: #287ABD;
}

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

::-webkit-scrollbar-thumb {
  background-color: hsl(207, 4%, 65%);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(207, 4%, 55%);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-inline: 1rem;
  }
  .nav__menu {
    padding-bottom: 4rem;
  }
  .nav__list {
    gap: 1rem 1.25rem;
  }
  .skills__info {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects__img {
    width: 68vw;
    justify-self: center;
  }
  .projects__content > div {
    width: 68vw;
  }
  .swiper-button-prev {
    left: -1rem;
    top: 2rem;
  }
  .swiper-button-next {
    right: -1rem;
    top: 2rem;
  }
  .footer__list {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .dots {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
  }
  .dots::before {
    content: "";
    position: absolute;
    top: -2px;
    width: 12px;
    height: 12px;
    background: var(--clr);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--clr), 0 0 60px var(--clr);
  }
}
@media screen and (max-width: 590px) {
  #time {
    width: 100%;
    display: flex;
    gap: 20px;
    color: var(--text-color);
    text-align: center;
    justify-content: center;
    padding: 3rem 0 2rem 0;
    /* border: 2px solid red; */
  }
  #time .circle {
    position: relative;
    width: 25vw;
    height: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #time .circle svg {
    position: relative;
    transform: rotate(270deg);
  }
  #time .circle svg circle {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: var(--text-color);
    stroke-width: 3;
    transform: translate(5px, 5px);
  }
  #time .circle svg circle:nth-child(2) {
    stroke: var(--clr);
    stroke-dasharray: 440;
  }
  #time div {
    position: absolute;
    text-align: center;
    font-weight: var(--font-semi-bold);
    font-size: 3.25vw;
  }
  #time .ap {
    position: relative;
    font-size: 1em;
    transform: translateX(-15px);
  }
}
@media screen and (min-width: 350px) {
  .projects__container {
    width: 87.5vw;
  }
  .projects__img {
    justify-self: center;
    width: 75vw;
  }
  .projects__content > div {
    width: 75vw;
  }
  .swiper-button-prev {
    left: -1rem;
    top: 3rem;
  }
  .swiper-button-next {
    right: -1rem;
    top: 3rem;
  }
  .testimonial__container {
    width: 100%;
    padding-inline: 16px;
  }
  .testimonial__description {
    font-size: 14px;
    padding-inline: 24px;
    line-height: 20px;
  }
  .al2 {
    display: none;
  }
  .dots {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
  }
  .dots::before {
    content: "";
    position: absolute;
    top: -3px;
    width: 14px;
    height: 14px;
    background: var(--clr);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--clr), 0 0 60px var(--clr);
  }
}
@media screen and (min-width: 490px) {
  .projects__container {
    width: 85vw;
    /* border: 2px solid red; */
  }
  .projects__img {
    width: 74vw;
  }
  .swiper-button-prev {
    left: -1rem;
    top: 5rem;
  }
  .swiper-button-next {
    right: -1rem;
    top: 5rem;
  }
  .testimonial__container .swiper-button-prev {
    left: 0;
    top: 2rem;
  }
  .testimonial__container .swiper-button-next {
    right: 0;
    top: 2rem;
  }
  .testimonial__container {
    width: 470px;
    padding-inline: 16px;
  }
  .testimonial__description {
    padding-inline: 28px;
  }
}
/* For medium devices */
@media screen and (min-width: 590px) {
  .nav, .nav__menu {
    width: 535px;
  }
  .nav {
    margin: 0 auto;
  }
  .skills__container {
    justify-content: center;
  }
  .projects__container, .testimonial__container {
    width: 500px;
  }
  .testimonial__container {
    overflow: hidden;
  }
  .testimonial__container .swiper-wrapper {
    align-items: initial;
  }
  .projects__container {
    overflow: hidden;
  }
  .projects__img {
    width: 55vw;
  }
  .projects__content > div {
    width: 55vw;
  }
  .swiper-button-prev {
    left: -0.5rem;
  }
  .swiper-button-next {
    right: -0.5rem;
  }
  .testimonial .container {
    display: flex;
    justify-content: center;
  }
  .testimonial__container {
    width: 570px;
  }
  .testimonial__description {
    padding-inline: 28px;
  }
  #time {
    width: 100%;
    display: flex;
    gap: 35px;
    color: var(--text-color);
    text-align: center;
    justify-content: center;
    padding: 3rem 0 2rem 0;
  }
  #time .circle {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #time .circle svg {
    position: relative;
    width: 150px;
    height: 150px;
    transform: rotate(270deg);
  }
  #time .circle svg circle {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: var(--text-color);
    stroke-width: 4;
    transform: translate(5px, 7px);
  }
  #time .circle svg circle:nth-child(2) {
    stroke: var(--clr);
    stroke-dasharray: 440;
  }
  #time div {
    position: absolute;
    text-align: center;
    font-weight: var(--font-semi-bold);
    font-size: 1.2rem;
  }
  #time .ap {
    position: relative;
    font-size: 1em;
    transform: translateX(-40px);
  }
  .dots {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
  }
  .dots::before {
    content: "";
    position: absolute;
    top: -3px;
    width: 15px;
    height: 15px;
    background: var(--clr);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--clr), 0 0 60px var(--clr);
  }
}
@media screen and (min-width: 767px) {
  .home__container {
    grid-template-columns: 1fr 2fr 1fr;
    padding-top: 2rem;
  }
  .home__data {
    order: 2;
  }
  .home__info:nth-child(3) {
    order: 3;
    text-align: right;
  }
  .home__info {
    margin-top: 10rem;
  }
  .home__info-description {
    padding-right: 0;
  }
  .skills__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .skills__content {
    max-width: 330px;
  }
  .skills__container, .qualification__container, .services__container, .contact__container {
    grid-template-columns: repeat(2, max-content);
  }
  .skills__container, .services__container {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .qualification__container {
    justify-content: center;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }
  .projects__container {
    width: 680px;
  }
  .projects__img {
    width: 550px;
  }
  .swiper-button-next {
    top: 7rem;
  }
  .swiper-button-prev {
    top: 7rem;
  }
  .testimonial__container {
    width: 700px;
  }
  .testimonial__description {
    padding-inline: 64px;
  }
  .contact__form {
    width: 360px;
  }
  .contact__container {
    justify-content: center;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
  #time {
    display: flex;
    gap: 40px;
    color: var(--text-color);
    text-align: center;
    justify-content: center;
    padding: 3rem 0 2rem 0;
  }
  #time .circle {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #time .circle svg {
    position: relative;
    width: 150px;
    height: 150px;
    transform: rotate(270deg);
  }
  #time .circle svg circle {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: var(--text-color);
    stroke-width: 4;
    transform: translate(5px, 5px);
  }
  #time .circle svg circle:nth-child(2) {
    stroke: var(--clr);
    stroke-dasharray: 440;
  }
  #time div {
    position: absolute;
    text-align: center;
    font-weight: var(--font-semi-bold);
    font-size: 1.5rem;
  }
  #time div span {
    position: absolute;
    font-size: 0.6em;
    font-weight: var(--font-semi-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateX(-45%) translateY(5px);
  }
  #time .ap {
    position: relative;
    font-size: 1em;
    transform: translateX(-20px);
  }
}
@media (min-width: 767px) and (max-width: 1200px) {
  .projects__img {
    max-height: 300px;
  }
}
/* For large devices */
@media screen and (min-width: 1025px) {
  .header {
    top: 0;
    bottom: initial;
    background-color: var(--body-color);
    transition: 0.4s;
  }
  .nav {
    width: initial;
    height: calc(var(--header-height) + 1.5rem);
    box-shadow: none;
    border-radius: none;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    margin-inline: 0;
  }
  .nav__link i, .nav__toggle, .nav__close {
    display: none;
  }
  .nav__menu {
    width: initial;
    margin-left: auto;
    background-color: var(--body-color);
    transition: background 0.4s;
  }
  .nav__list {
    display: flex;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .nav__link {
    font-size: var(--normal-font-size);
  }
  .dark-theme .nav,
  .dark-theme .nav__menu {
    background-color: var(--body-color);
    box-shadow: none;
  }
  .change-theme {
    color: var(--text-color-light);
  }
  .change-theme:hover {
    color: var(--title-color);
  }
  .section {
    padding-block: 5rem 0;
  }
  .home__title {
    font-size: 2.25rem;
  }
  .skills__content {
    max-width: 357px;
  }
  .projects__container {
    width: 800px;
  }
  .projects__img {
    width: 600px;
  }
  .projects__content > div {
    width: 600px;
  }
  .projects__container .swiper-button-next {
    top: 7rem;
  }
  .projects__container .swiper-button-prev {
    top: 7rem;
  }
  /* Change background header */
  /* Change background header */
}
@media screen and (min-width: 1200px) {
  .section__border {
    padding-bottom: 6rem;
  }
  .section__subtitle {
    margin-bottom: 5rem;
  }
  .home__title {
    font-size: var(--biggest-font-size);
  }
  .home__blob {
    width: 400px;
    height: 580px;
    border-radius: 12.5rem;
  }
  .home__perfil {
    width: 340px;
    height: 520px;
    border-radius: 10.6rem;
  }
  .home__perfil img {
    width: 15.5rem;
  }
  .home__data {
    row-gap: 2.5rem;
  }
  .home__social {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .home__social-link {
    font-size: 1.5rem;
  }
  .home__info {
    grid-template-rows: repeat();
  }
  .home__info {
    grid-template-rows: repeat(3, 130px);
    row-gap: 4rem;
    margin-top: 16rem;
  }
  .skills__container {
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }
  .skills__content {
    max-width: 367px;
  }
  .skills__title {
    margin-bottom: 3rem;
  }
  .skills__title i {
    font-size: 1.25rem;
  }
  .skills__name {
    font-size: var(--normal-font-size);
  }
  .skills__info {
    gap: 2.3rem;
  }
  .qualification__container {
    margin-bottom: 3rem;
  }
  .qualification__title i {
    font-size: 1.25rem;
  }
  .qualification__name {
    font-size: var(--h3-font-size);
  }
  .qualification__img {
    width: 300px;
    left: -6rem;
    bottom: 5rem;
  }
  .services__container {
    grid-template-columns: repeat(3, max-content);
  }
  .services__card i {
    font-size: 2.5rem;
  }
  .services__border {
    width: 288px;
    height: 405px;
    border-radius: 8.25rem;
    border: 1.5px solid;
  }
  .services__description {
    font-size: 0.95rem;
  }
  .projects__container {
    width: 1100px;
  }
  .projects__content > div {
    max-width: 460px;
  }
  .projects__img {
    width: 460px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    font-size: 3rem;
  }
  .swiper-button-prev {
    left: -1rem;
  }
  .swiper-button-next {
    right: -1rem;
  }
  .swiper-slide {
    margin-bottom: 6.5rem;
  }
  .projects__img {
    margin-bottom: 2rem;
  }
  .testimonial__container {
    width: 950px;
  }
  .testimonial__description {
    font-size: var(--h3-font-size);
    margin-bottom: 2rem;
    padding-inline: 96px;
    line-height: 28px;
  }
  .contact__title {
    margin-bottom: 3rem;
    margin-left: 5rem;
  }
  .contact__title i {
    font-size: 1.25rem;
  }
  .contact__info {
    row-gap: 3rem;
  }
  .contact__data-info {
    font-size: var(--normal-font-size);
  }
  .contact__form-input {
    width: 100%;
  }
  .contact__form-area {
    width: 215%;
  }
  .contact__form {
    gap: 2rem 3rem;
    width: 40rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .al {
    display: block;
  }
  .footer__container {
    padding: 4rem 0 3rem;
  }
  .footer__list {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    margin: 3rem 0;
  }
  .footer__social {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .footer__social-link {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1390px) {
  .services__container {
    grid-template-columns: repeat(4, max-content);
  }
}/*# sourceMappingURL=styles.css.map */