@import 'swiper-bundle.min.css';
/* Purple 250 - Green 142 - Blue 230 - ¨Pink 340 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0 0 3rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  background-color: hsl(208, 60%, 99%);
  color: hsl(208, 8%, 45%);
}
h1,
h2,
h3,
h4 {
  color: hsl(208, 8%, 15%);
  font-weight: 600;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
.section {
  padding: 2rem 0 4rem;
}
.section__title {
  font-size: 1.5rem;
}
.section__subtitle {
  display: block;
  font-size: 0.938rem;
  margin-bottom: 3rem;
}
.section__title,
.section__subtitle {
  text-align: center;
}
img {
  background-color: hsl(208, 69%, 61%);
}
.button {
  display: inline-block;
  background-color: hsl(208, 69%, 61%);
  color: aliceblue;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
}
.button:hover {
  background-color: hsl(208, 57%, 53%);
}
.button .button__icon {
  font-size: 1.25rem;
  margin-left: 0.5rem;
  transition: 0.3s;
}
.button--white {
  background-color: white;
  color: hsl(208, 69%, 61%);
}
.button--white:hover {
  background-color: white;
  transition: 0.4s;
  transform: scale(1.025);
}
.button--flex {
  display: inline-flex;
  align-items: center;
}
.button--small {
  padding: 0.75rem 1rem;
}
.button--link {
  padding: 0;
  background-color: transparent;
  color: hsl(208, 69%, 61%);
}
.button--link:hover {
  background-color: transparent;
  color: hsl(208, 57%, 53%);
}
.github {
  display: block;
  background-image: url('/portfolio/assets/images/icons/github.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
}
.github:hover {
  transition: 0.4s;
  transform: scale(1.1);
}
.linkedin {
  display: block;
  background-image: url('/portfolio/assets/images/icons/linkedin.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
}
.linkedin:hover {
  transition: 0.4s;
  transform: scale(1.1);
}
.facebook {
  display: block;
  background-image: url('/portfolio/assets/images/icons/facebook.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
}
.facebook:hover {
  transition: 0.4s;
  transform: scale(1.1);
}
.fadeout {
  animation: fadeout 1s forwards;
}
.fadein {
  animation: fadein 1s forwards;
}
@keyframes fadeout {
  0% {
    display: block;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fadein {
  0% {
    display: none;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: hsl(208, 69%, 61%);
  opacity: 8;
  padding: 0 0.3rem;
  border-radius: 0.4rem;
  z-index: 10;
  transition: 0.4s;
}
.scrollup:hover {
  background-color: hsl(208, 57%, 53%);
}
.scrollup__icon {
  margin: 0.3rem 0;
  font-size: 1.5rem;
  color: white;
}
.show-scroll {
  bottom: 5rem;
}
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: hsl(208, 12%, 48%);
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb {
  background-color: hsl(208, 12%, 36%);
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: hsl(208, 8%, 65%);
}
.container {
  max-width: 768px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.header {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: hsl(208, 60%, 99%);
}
.nav {
  max-width: 968px;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo,
.nav__toggle {
  color: hsl(208, 8%, 15%);
  font-weight: 500;
}
.nav__logo:hover {
  color: hsl(208, 69%, 61%);
}
.nav__toggle {
  font-size: 1.1rem;
  cursor: pointer;
}
.nav__toggle:hover {
  color: hsl(208, 69%, 61%);
}
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: hsl(208, 60%, 99%);
    padding: 2rem 1.5rem 4rem;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 1.5rem 1.5rem 0 0;
    transition: 0.3s;
  }
}
.nav__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.938rem;
  color: hsl(208, 8%, 15%);
  font-weight: 500;
  white-space: nowrap;
}
.nav__link:hover {
  color: hsl(208, 69%, 61%);
}
.nav__icon {
  font-size: 1.2rem;
}
.nav__close {
  position: absolute;
  right: 1.3rem;
  bottom: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.nav__close:hover {
  color: hsl(208, 57%, 53%);
}
.show-menu {
  bottom: 0;
}
.active-link {
  color: hsl(208, 69%, 61%);
}
.scroll-header {
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
}
.home__container {
  gap: 1rem;
}
.home__content {
  grid-template-columns: 0.5fr 3fr;
  padding-top: 3.5rem;
  align-items: center;
}
.home__social {
  display: grid;
  grid-template-columns: max-content;
  row-gap: 1rem;
}
.home__img {
  width: 200px;
}
.home__img img {
  border-radius: 50%;
}
.home__data {
  grid-column: 1/3;
}
.home__title {
  font-size: 2rem;
}
.home__subtitle {
  font-size: 1.125rem;
  color: hsl(208, 8%, 45%);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.home__description {
  margin-bottom: 2rem;
}
.home__scroll {
  display: none;
  grid-column: 1/3;
}
.home__scroll-button {
  color: hsl(208, 69%, 61%);
  transition: 0.3s;
}
.home__scroll-button:hover {
  transform: translateY(0.25rem);
}
.home__scroll .home__scroll-mouse {
  font-size: 2rem;
}
.home__scroll-name {
  font-size: 0.938rem;
  color: hsl(208, 8%, 15%);
  font-weight: 500;
  margin-right: 0.75rem;
}
.home__scroll .home__scroll-arrow {
  font-size: 1.25rem;
}
.about__img {
  width: 200px;
  border-radius: 0.5rem;
  justify-self: center;
  align-self: center;
}
.about__description {
  text-align: center;
  margin-bottom: 2.5rem;
}
.about__info {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 2.5rem;
}
.about__info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(208, 8%, 15%);
}
.about__info-name {
  font-size: 0.938rem;
}
.about__info-title,
.about__info-name {
  display: block;
  text-align: center;
}
.about__buttons {
  display: flex;
  justify-content: center;
}
.skills__container {
  row-gap: 0;
  text-align: left;
  margin-top: 3rem;
}
.skills__header {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  cursor: pointer;
}
.skills__icon,
.skills__arrow {
  font-size: 2rem;
  color: hsl(208, 69%, 61%);
}
.skills__icon {
  margin-right: 0.75rem;
}
.skills__title {
  font-size: 1.125rem;
}
.skills__subtitle {
  font-size: 0.938rem;
  color: hsl(208, 8%, 65%);
}
.skills__arrow {
  margin-left: auto;
  transition: 0.4s;
}
.skills__list {
  row-gap: 1.5rem;
  padding-left: 2.7rem;
}
.skills__titles {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.skills__name {
  font-size: 1.125rem;
  font-weight: 500;
}
.skills__bar,
.skills__percentage {
  height: 5px;
  border-radius: 0.25rem;
}
.skills__bar {
  background-color: hsl(208, 92%, 85%);
}
.skills__percentage {
  display: block;
  background-color: hsl(208, 69%, 61%);
}
.skills__close.skills__list {
  display: none;
  transition: 0.3s;
}
.skills__open.skills__list {
  display: block;
  transition: 0.3s;
  margin-bottom: 2.5rem;
}
.skills__open .skills__arrow {
  transform: rotate(-180deg);
}
.qualification {
  transition: 1s;
  display: block;
}
.qualification__tabs {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 2rem;
}
.qualification__button {
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
}
.qualification__button:hover {
  color: hsl(208, 69%, 61%);
}
.qualification__button:active {
  color: hsl(208, 69%, 61%);
}
.qualification__icon {
  font-size: 1.8rem;
  margin-right: 0.75rem;
}
.qualification__data {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  column-gap: 1.5rem;
}
.qualification__title {
  font-size: 1.125rem;
  font-weight: 500;
}
.qualification__subtitle {
  display: inline-block;
  font-size: 0.938rem;
  margin-bottom: 1rem;
}
.qualification__calendar {
  color: hsl(208, 8%, 65%);
}
.qualification__calendar span {
  font-size: 0.75rem;
}
.qualification__rounder {
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: hsl(208, 69%, 61%);
  border-radius: 50%;
}
.qualification__line {
  display: block;
  width: 1px;
  height: 100%;
  background-color: hsl(208, 69%, 61%);
  transform: translate(6px, -7px);
}
.qualification__hidden {
  transition: 1s;
  display: none;
}
.services__container {
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.services__content {
  position: relative;
  background-color: #fff;
  padding: 3.5rem 0.5rem 1.25rem 1.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
.services__content:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.services .services__icon {
  display: block;
  font-size: 1.5rem;
  color: hsl(208, 69%, 61%);
  margin-bottom: 1rem;
}
.services__title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.services__button {
  cursor: pointer;
  font-size: 0.938rem;
}
.services__button:hover .button__icon {
  transform: translate(0.25rem);
}
.services__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.services__modal-content {
  position: relative;
  background-color: #fff;
  padding: 1.5rem;
}
.services__modal-services {
  row-gap: 1rem;
}
.services__modal-service {
  display: flex;
}
.services__modal-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.services__modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: hsl(208, 69%, 61%);
  cursor: pointer;
}
.services__modal-icon {
  color: hsl(208, 69%, 61%);
  margin-bottom: 0.75rem;
}
.active-modal {
  opacity: 1;
  visibility: visible;
}
.portfolio__container {
  overflow: initial;
}
.portfolio__content {
  padding: 0 1.5rem;
}
.portfolio__img {
  width: 265px;
  border-radius: 0.5rem;
  justify-self: center;
}
.portfolio__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.portfolio__description {
  margin-bottom: 0.75rem;
}
.portfolio__button:hover .button__icon {
  transform: translate(0.25rem);
}
.swiper-container .swiper-button-prev:after,
.swiper-container .swiper-button-next:after {
  content: '';
}
.swiper-container .swiper-portfolio-icon {
  font-size: 2rem;
  color: hsl(208, 69%, 61%);
}
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: -2.3rem;
}
.portfolio__container.swiper-container .swiper-pagination-bullet-active {
  background-color: hsl(208, 69%, 61%);
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-pagination-bullet {
  outline: none;
}
.project {
  text-align: center;
}
.project__bg {
  background-color: hsl(208, 69%, 61%);
  padding-top: 3rem;
}
.project__title {
  font-size: 1.25rem;
  margin: 0.75rem;
}
.project__description {
  margin-bottom: 1.5rem;
}
.project__title,
.project__description {
  color: white;
}
.project__img {
  border-radius: 1rem;
  width: 232px;
  justify-self: center;
}
.testimonial__data,
.testimonial__header {
  display: flex;
}
.testimonial__data {
  justify-content: space-between;
  margin-bottom: 1rem;
}
.testimonial__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 0.75rem;
}
.testimonial__name {
  font-size: 1.125rem;
  font-weight: 500;
}
.testimonial__client {
  font-size: 0.938rem;
  color: hsl(208, 8%, 65%);
}
.testimonial__description {
  margin-bottom: 2.5rem;
}
.testimonial__icon-star {
  width: 25px;
  color: hsl(208, 69%, 61%);
}
.testimonial__container {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.testimonial__container.swiper-container .swiper-pagination-testimonial {
  bottom: 0;
}
.contact__container {
  row-gap: 3rem;
}
.contact__information {
  display: flex;
  margin-bottom: 2rem;
}
.contact__icon {
  font-size: 2rem;
  color: hsl(208, 69%, 61%);
  margin-right: 0.75rem;
}
.contact__title {
  font-size: 1.125rem;
  font-weight: 500;
}
.contact__subtitle {
  font-size: 0.938rem;
  color: hsl(208, 8%, 65%);
}
.contact__content {
  background-color: hsl(208, 70%, 96%);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem 0.25rem;
}
.contact__label {
  font-size: 0.75rem;
  color: hsl(208, 8%, 15%);
}
.contact__input {
  width: 100%;
  background-color: hsl(208, 70%, 96%);
  color: hsl(208, 8%, 45%);
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  border: none;
  outline: none;
  padding: 0.25rem 0.5rem 0.5rem 0;
}
.contact .button {
  border: none;
  justify-self: center;
  justify-content: center;
  width: 200px;
  font-size: 1.2rem;
  font-weight: 600;
}
.footer {
  padding-top: 2rem;
}
.footer__container {
  row-gap: 3.5rem;
}
.footer__bg {
  background-color: hsl(208, 69%, 61%);
  padding: 2rem 0 3rem;
}
.footer__title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.footer__subtitle {
  font-size: 0.938rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.footer__link:hover {
  color: hsl(208, 92%, 85%);
}
.footer__socials {
  display: flex;
  flex-direction: row;
  margin-left: 1rem;
}
.footer__social {
  font-size: 1.2rem;
  margin-right: 1.5rem;
}
.footer__social:hover {
  color: hsl(208, 92%, 85%);
}
.footer__copy {
  font-size: 0.75rem;
  text-align: center;
  color: hsl(208, 8%, 65%);
}
.footer__title,
.footer__subtitle,
.footer__link {
  color: white;
  white-space: nowrap;
}
@media screen and (min-width: 350px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .nav__menu {
    padding: 2rem 0.25rem 4rem;
  }
  .nav__list {
    column-gap: 0;
  }
  .home__content {
    grid-template-columns: 0.25fr 3fr;
  }
  .skills__title {
    font-size: 1.125rem;
  }
  .qualification__data {
    gap: 0.5rem;
  }
  .services__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .services__content {
    padding-right: 3.5rem;
  }
  .services__modal {
    padding: 0 0.5rem;
  }
  .portfolio__data {
    text-align: center;
  }
  .testimonial__data,
  .testimonial__header {
    flex-direction: column;
    align-items: center;
  }
  .testimonial__img {
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
  .testimonial__data,
  .testimonial__description {
    text-align: center;
  }
}
@media screen and (min-width: 568px) {
  .container {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .home__content {
    grid-template-columns: max-content 1fr 1fr;
  }
  .home__data {
    grid-column: initial;
  }
  .home__img {
    order: 1;
    justify-self: center;
  }
  .about__container,
  .skills__container,
  .portfolio__content,
  .project__container,
  .services__container,
  .contact__container,
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .qualification__sections {
    display: grid;
    justify-content: center;
  }
  .portfolio__img {
    margin-left: 20px;
  }
  .portfolio__data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .portfolio__data p {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  body {
    margin: 0;
  }
  .section {
    padding: 6rem 0 2rem;
  }
  .header {
    top: 0;
    bottom: initial;
  }
  .header,
  .main,
  .footer__container {
    padding: 0 1rem;
  }
  .nav {
    height: calc(3rem + 1.5rem);
    column-gap: 1rem;
  }
  .nav__icon,
  .nav__close,
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 2rem;
  }
  .nav__menu {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .home__container {
    row-gap: 5rem;
  }
  .home__content {
    padding-top: 3rem;
    column-gap: 2rem;
  }
  .home__title {
    font-size: 2.5rem;
  }
  .home__subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .home__img {
    grid-column: 3/4;
    grid-row: 1/2;
    align-self: center;
    width: 280px;
  }
  .home__scroll {
    display: block;
  }
  .home__scroll-button {
    margin-left: 3rem;
  }
  .about__container {
    column-gap: 5rem;
  }
  .about__img {
    width: 350px;
  }
  .about__description {
    text-align: initial;
  }
  .about__info {
    justify-content: space-between;
  }
  .about__buttons {
    justify-content: initial;
  }
  .qualification__tabs {
    justify-content: center;
  }
  .qualification__button {
    margin: 0 1rem;
  }
  .services__container {
    grid-template-columns: repeat(3, 218px);
    justify-content: center;
  }
  .services .services__icon {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .services__content {
    padding: 6rem 0 2rem 2.5rem;
  }
  .services__modal-content {
    width: 450px;
  }
  .portfolio__img {
    width: 320px;
  }
  .portfolio__content {
    align-items: center;
  }
  .project {
    text-align: initial;
  }
  .project__bg {
    background: none;
  }
  .project__container {
    background-color: hsl(208, 69%, 61%);
    border-radius: 1rem;
    padding: 3rem 2.5rem 0;
    grid-template-columns: 1fr max-content;
    column-gap: 3rem;
  }
  .project__data {
    padding-top: 0.8rem;
  }
  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer_bg {
    padding: 3rem 0 3.5rem;
  }
  .footer__links {
    flex-direction: row;
    column-gap: 2rem;
  }
  .footer__socials {
    justify-content: flex-end;
  }
  .footer__copy {
    font-size: 1rem;
    grid-column: 1/4;
    margin-top: 4.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .section__title {
    font-size: 2rem;
  }
  .section__subtitle {
    font-size: 1.2rem;
  }
  .header,
  .main,
  .footer__container {
    padding: 0;
  }
  .home__content {
    padding: 0;
  }
  .home__title {
    font-size: 3.5rem;
  }
  .home__subtitle {
    font-size: 1.8rem;
  }
  .home__img {
    width: 320px;
  }
  .home__social {
    transform: translate(-6rem);
  }
  .home__social-icon {
    width: 3rem;
    height: 3rem;
  }
  .services__container {
    grid-template-columns: repeat(3, 238px);
  }
  .services__content {
    padding: 3rem 2rem;
    text-align: center;
  }
  .services__title {
    font-size: 1.6rem;
  }
  .services .services__icon {
    font-size: 4rem;
    margin-bottom: 2.3rem;
  }
  .portfolio__content {
    column-gap: 5rem;
  }
  .portfolio__data {
    margin-right: 2rem;
  }
  .project__container {
    grid-template-columns: 1fr;
  }
  .project__data {
    text-align: center;
  }
  .project__img {
    width: 260px;
  }
  .portfolio__container .swiper-portfolio-icon {
    font-size: 3.5rem;
  }
  .portfolio__container .swiper-button-prev {
    left: -3.5rem;
  }
  .portfolio__container .portfolio__container .swiper-button-next {
    left: 3.5rem;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: -4.5rem !important;
  }
  .testimonial__data,
  .testimonial__header {
    flex-direction: row;
    align-items: center;
  }
  .testimonial__data {
    text-align: initial;
  }
  .testimonial__data div:last-child {
    margin-right: 30px;
  }
  .testimonial__header > div {
    margin-left: 20px;
  }
  .contact__form {
    width: 480px;
  }
  .contact__inputs {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__inputs div:last-of-type,
  .contact__inputs a {
    grid-column: 1/3;
  }
  .contact .button {
    grid-column: 1/3;
  }
}
