@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
:root {
  --hue-color: 290;
  --first-color: hsl(var(--hue-color), 69%, 61%);
  --first-color-second: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 57%, 53%);
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
  --title-color: hsl(var(--hue-color), 8%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --text-color-light: hsl(var(--hue-color), 8%, 95%);
  --body-color: hsl(var(--hue-color), 60%, 99%);
  --container-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.anim {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: pulse;
  animation-duration: 1s;
}

body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 30%, 8%);
  --title-color: hsl(var(--hue-color), 8%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 28%, 12%);
  --container-color: hsl(var(--hue-color), 29%, 16%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
}

.nav__btns {
  display: flex;
  align-items: center;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
}
.change-theme:hover {
  color: hsl(290, 69%, 61%);
}
.change-language {
  font-size: 1rem;
  margin-right: 1rem;
  font-style: normal;
  cursor: pointer;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0 3rem 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.938rem;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.5s;
}

header {
  transition: 0.5s;
}

footer div {
  transition: 0.5s;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

.section {
  padding: 2rem 0 4rem;
}
.section__title {
  font-size: 1.5rem;
}
.section__subtitle {
  display: block;
  font-size: 0.813rem;
  margin-bottom: 3rem;
}
.section__subtitle-indexname {
  font-size: 1.5rem;
}
.section__title, .section__subtitle {
  text-align: center;
}
.section__404 {
  height: calc(100vh - 3rem);
  place-items: center;
}
.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: var(--body-color);
}

.nav {
  max-width: 968px;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo, .nav__toggle {
  color: var(--title-color);
  font-weight: 500;
}
.nav__logo:hover {
  color: hsl(290, 69%, 61%);
}
.nav__toggle {
  font-size: 1.1rem;
  cursor: pointer;
}
.nav__toggle:hover {
  color: hsl(290, 69%, 61%);
}
.nav__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.813rem;
  color: var(--title-color);
  font-weight: 500;
}
.nav__link:hover {
  color: hsl(290, 69%, 61%);
}
.nav__icon {
  font-size: 1.2rem;
}
.nav__close {
  position: absolute;
  right: 1.3rem;
  bottom: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: hsl(290, 69%, 61%);
}
.nav__close:hover {
  color: hsl(290, 57%, 53%);
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--body-color);
    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;
  }
  .apps-menu {
    margin-left: 1rem;
  }
}
.show-menu {
  bottom: 0;
}

.active-link {
  color: hsl(290, 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__social-icon {
  font-size: 1.25rem;
  color: hsl(290, 69%, 61%);
}
.home__social-icon:hover {
  color: hsl(290, 57%, 53%);
}
.home__blob {
  width: 200px;
  border-radius: 0 85px 0 85px;
}
.home__blob-img {
  width: 170px;
}
.home__data {
  grid-column: 1/3;
}
.home__title {
  font-size: 2rem;
}
.home__subtitle {
  font-size: 1.125rem;
  color: var(--text-color);
  font-weight: 0.75rem;
}
.home__description {
  margin-bottom: 2rem;
}
.home__scroll {
  display: none;
}
.home__scroll-button {
  color: hsl(290, 69%, 61%);
  transition: 0.3s;
}
.home__scroll-button:hover {
  transform: translateY(0.25rem);
}
.home__scroll-mouse {
  font-size: 2rem;
}
.home__scroll-name {
  font-size: 0.813rem;
  color: var(--title-color);
  font-weight: 500;
  margin-right: 0.25rem;
}
.home__scroll-arrow {
  font-size: 1.25rem;
}

.button {
  display: inline-block;
  background-color: hsl(290, 69%, 61%);
  color: #FFF;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
}
.button:hover {
  background-color: hsl(290, 57%, 53%);
}
.button__icon {
  font-size: 1.25rem;
  margin-left: 0.5rem;
  transition: 0.3s;
}
.button--white {
  background-color: #FFF;
  color: hsl(290, 69%, 61%);
}
.button--white:hover {
  background-color: #FFF;
}
.button--flex {
  display: inline-flex;
  align-items: center;
}
.button--small {
  padding: 0.75rem 1rem;
}
.button--link {
  padding: 0;
  background-color: transparent;
  color: hsl(290, 69%, 61%);
}
.button--link:hover {
  background: transparent;
  color: hsl(290, 57%, 53%);
}
.button--no-style {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.about__container {
  justify-items: center;
}
.about__img {
  width: 100%;
}
.about__data {
  display: grid;
  justify-items: center;
}
.about__logo {
  fill: hsl(290, 57%, 53%);
}
.about__description {
  text-align: initial;
}
.about__info {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 2.5rem;
}
.about__info-name {
  font-size: 0.75rem;
}
.about__info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--title-color);
}
.about__info-title, .about__info-name {
  display: block;
  text-align: center;
}
.about__buttons {
  display: flex;
  justify-content: center;
}

.skills__container {
  row-gap: 0;
}
.skills__global {
  margin-bottom: 3rem;
}
.skills__header {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
.skills__icon, .skills__arrow {
  font-size: 2rem;
  color: hsl(290, 69%, 61%);
}
.skills__icon {
  margin-right: 0.75rem;
}
.skills__title {
  font-size: 1.125rem;
}
.skills__subtitle {
  font-size: 0.813rem;
  color: hsl(290, 8%, 65%);
}
.skills__arrow {
  margin-left: auto;
  transition: 0.4s;
}
.skills__titles {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.skills__name {
  font-size: 0.938rem;
  font-weight: 500;
}
.skills__bar, .skills__percentage {
  height: 1px;
  border-radius: 0.25rem;
}
.skills__bar {
  background: hsl(290, 92%, 85%);
}
.skills__percentage {
  display: block;
  background-color: hsl(290, 69%, 61%);
}
.skills__list {
  row-gap: 1.5rem;
  padding-left: 2.7rem;
}
.skills__learned {
  width: 100%;
}
.skills__learning {
  width: 50%;
}
.skills__coming {
  width: 5%;
}
.skills__close .skills__list {
  height: 0;
  overflow: hidden;
}
.skills__open .skills__list {
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 2.5rem;
}
.skills__open .skills__arrow {
  transform: rotate(-180deg);
}

.qualification__container {
  margin-bottom: 3rem;
}
.qualification__tabs {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 2rem;
}
.qualification__button {
  font-size: 1.125rem;
  font-weight: 500;
}
.qualification__icon {
  font-size: 1.8rem;
  margin-right: 0.25rem;
}
.qualification__data {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.qualification__title {
  font-size: 0.938rem;
  font-weight: 500;
}
.qualification__subtitle {
  display: inline-block;
  font-size: small;
  margin-bottom: 1rem;
}
.qualification__calendar {
  font-size: 0.75rem;
  color: hsl(290, 8%, 65%);
}
.qualification__rounder {
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: hsl(290, 69%, 61%);
  border-radius: 50%;
}
.qualification__line {
  display: block;
  width: 1px;
  height: 100%;
  background-color: hsl(290, 69%, 61%);
  transform: translate(6px, -7px);
}
.qualification [data-content] {
  display: none;
}
.qualification__active[data-content] {
  display: block;
}
.qualification__button .qualification__active {
  color: hsl(290, 69%, 61%);
}

.services__container {
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.services__content {
  position: relative;
  background-color: var(--container-color);
  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__icon {
  display: block;
  font-size: 1.5rem;
  color: hsl(290, 69%, 61%);
  margin-bottom: 1rem;
}
.services__title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.services__button {
  cursor: pointer;
  font-size: 0.813rem;
}
.services__button:hover .button__icon {
  transform: translateX(0.25rem);
}
.services__button-l {
  padding-left: 0.5rem;
}
.services__button-l:hover .button__icon {
  transform: translateX(-0.25rem);
}
.services__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  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: var(--container-color);
  padding: 1.5rem;
  border-radius: 0.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(290, 69%, 61%);
  cursor: pointer;
}
.services__modal-icon {
  color: hsl(290, 69%, 61%);
  margin-right: 0.5rem;
}

.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: translateX(0.25rem);
}

.portfolio2__container {
  row-gap: 3rem;
  justify-items: center;
}
.portfolio2__container iframe {
  height: 165px;
  width: 100%;
}
.portfolio2__content {
  transition: 0.3s;
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
  cursor: pointer;
  grid-template-rows: auto auto;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0.5) 100%);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.portfolio2__content:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.portfolio2__content:hover .portfolio2__content-button {
  background-color: var(--first-color-alt);
  padding-left: 0.25rem;
}
.portfolio2__content:hover .portfolio2__content-img {
  transform: scale(1.03);
}
.portfolio2__content-img {
  transition: 1s;
  z-index: -1;
  height: 100%;
  grid-column: 1/2;
  grid-row: 1/3;
}
.portfolio2__content-bar {
  width: 100%;
  display: flex;
  justify-self: center;
  justify-content: space-between;
  align-items: center;
  grid-column: 1/2;
  grid-row: 2/3;
}
.portfolio2__content-title {
  font-size: 0.938rem;
  font-weight: 500;
  color: #FFF;
  padding-left: 15px;
}
.portfolio2__content-button {
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  color: #FFF;
  background-color: var(--first-color);
  border-radius: 5px 0 0 0;
}
.portfolio2__content-link {
  justify-items: center;
  gap: 1rem;
}
.portfolio2__button {
  cursor: pointer;
  font-size: 0.813rem;
}
.portfolio2__button:hover .button__icon {
  transform: translateX(0.25rem);
}
.portfolio2__button-l:hover .button__icon {
  transform: translateX(-0.25rem);
}
.portfolio2__be {
  color: var(--first-color);
  font-size: 2rem;
}

.swiper-button-prev::after, .swiper-button-next::after {
  content: "";
}
.swiper-portfolio-icon {
  font-size: 2rem;
  color: hsl(290, 69%, 61%);
}
.swiper-button-prev {
  left: -0.5rem;
}
.swiper-button-next {
  right: -0.5rem;
}
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: -2.5rem;
}
.swiper-pagination-bullet-active {
  background: hsl(290, 69%, 61%);
}
.swiper-button-prev, .swiper-button-next, .swiper-pagination-bullet {
  outline: none;
}

.project {
  text-align: center;
}
.project__bg {
  background-color: var(--first-color-second);
  padding-top: 3rem;
}
.project__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.project__description {
  margin-bottom: 1.5rem;
}
.project__title, .project__description {
  color: #FFF;
}
.project__img {
  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.813rem;
  color: hsl(290, 8%, 65%);
}
.testimonial__description {
  margin-bottom: 2.5rem;
}
.testimonial__icon-star {
  color: hsl(290, 69%, 61%);
}

.swiper-container .swiper-pagination-testimonial {
  bottom: 0;
}

.contact__container {
  row-gap: 3rem;
}
.contact__container textarea {
  resize: none;
}
.contact__information {
  display: flex;
  margin-bottom: 2rem;
}
.contact__icon {
  font-size: 2rem;
  margin-right: 0.75rem;
  color: var(--first-color);
}
.contact__icon-links {
  font-size: 2rem;
  margin-right: 0.75rem;
}
.contact__title {
  font-size: 1.125rem;
  font-weight: 500;
}
.contact__subtitle {
  font-size: 0.813rem;
  color: hsl(290, 8%, 65%);
}
.contact__content {
  background-color: var(--input-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem 0.25rem;
}
.contact__label {
  font-size: 0.75rem;
  color: var(--title-color);
}
.contact__input {
  width: 100%;
  background-color: var(--input-color);
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  font-size: 0.938rem;
  border: none;
  outline: none;
  padding: 0.25rem 0.5rem 0.5rem 0;
}
.contact__links {
  transition: 0.3s;
  color: var(--first-color);
}
.contact__links:hover {
  padding-left: 0.75rem;
  color: var(--title-color);
  border-left: 1px solid var(--title-color);
}
.contact__button {
  margin-top: 3rem;
}

.footer {
  padding-top: 2rem;
}
.footer__container {
  row-gap: 3.5rem;
}
.footer__bg {
  background-color: var(--first-color-second);
  padding: 2rem 0 3rem;
}
.footer__title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.footer__subtitle {
  font-size: 0.813rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.footer__link:hover {
  color: hsl(290, 92%, 85%);
}
.footer__social {
  font-size: 1.25rem;
  margin-right: 1.5rem;
}
.footer__social:hover {
  color: hsl(290, 92%, 85%);
}
.footer__copy {
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-color-light);
  margin-top: 3rem;
}
.footer__title, .footer__subtitle, .footer__link, .footer__social {
  color: #FFF;
}

.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: hsl(290, 69%, 61%);
  opacity: 0.8;
  padding: 0 0.3rem;
  border-radius: 0.4rem;
  z-index: 10;
  transition: 0.3s;
}
.scrollup:hover {
  background-color: hsl(290, 57%, 53%);
}
.scrollup__icon {
  font-size: 1.5rem;
  color: #FFF;
}

.show-scroll {
  bottom: 5rem;
}

::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb-color);
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: hsl(290, 8%, 65%);
}

@media screen and (max-width: 350px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .nav__menu {
    padding: 2rem 0.25rem 2rem;
  }
  .nav__list {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .home__content {
    grid-template-columns: 0.25fr 3fr;
  }
  .home__blob {
    width: 180px;
  }
  .skills__title {
    font-size: 0.938rem;
  }
  .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;
  }
  .project__img {
    width: 200px;
  }
  .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) {
  .portfolio2__container iframe {
    height: 210px;
    width: 100%;
  }
  .home__content {
    grid-template-columns: max-content 1fr 1fr;
  }
  .home__data {
    grid-column: initial;
  }
  .home__img {
    order: 1;
    justify-content: center;
  }
  .skills__container, .project__container, .portfolio2__container, .contact__container, .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio__content {
    grid-template-columns: repeat(2, 1fr);
  }
  .qualification__sections {
    display: grid;
    grid-template-columns: 0.6fr;
    justify-content: center;
  }
  .portfolio2__content-link {
    grid-column: 1/3;
  }
  .about__img, .about__data {
    width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .portfolio2__container iframe {
    height: 280px;
    width: 100%;
  }
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  body {
    margin: 0;
  }
  .section {
    padding: 6rem 0 2rem;
  }
  .section__subtitle {
    margin-bottom: 4rem;
  }
  .header {
    top: 0;
    bottom: initial;
  }
  .header, .main, .footer__container {
    padding: 0 1rem;
  }
  .nav {
    height: calc(3rem + 1.5rem);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .nav__icon, .nav__close, .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .nav__menu {
    margin-left: auto;
  }
  .change-theme {
    margin: 0;
  }
  .home__container {
    row-gap: 5rem;
  }
  .home__content {
    padding-top: 5.5rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .home__blob {
    width: 270px;
  }
  .home__scroll {
    display: block;
  }
  .home__scroll-button {
    margin-left: 3rem;
  }
  .about__info {
    justify-content: space-between;
  }
  .about__buttons {
    justify-content: initial;
  }
  .about__img {
    width: 80%;
    margin-bottom: 1.5rem;
  }
  .about__description {
    text-align: center;
  }
  .qualification__tabs {
    justify-content: center;
  }
  .qualification__button {
    margin: 0 1rem;
  }
  .qualification__sections {
    grid-template-columns: 0.5fr;
  }
  .services__container {
    grid-template-columns: repeat(3, 218px);
    justify-content: center;
  }
  .services__icon {
    font-size: 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: var(--first-color-second);
    border-radius: 1rem;
    padding: 3rem 2.5rem 0;
    grid-template-columns: 1fr max-content;
    -moz-column-gap: 3rem;
         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;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .footer__socials {
    justify-self: flex-end;
  }
  .footer__copy {
    margin-top: 4.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .header, .main, .footer__container {
    padding: 0;
  }
  .home__blob {
    width: 320px;
  }
  .home__social {
    transform: translateX(-6rem);
  }
  .services__container {
    grid-template-columns: repeat(3, 238px);
  }
  .portfolio__content {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .swiper-portfolio-icon {
    font-size: 3.5rem;
  }
  .swiper-button-prev {
    left: -3.5rem;
  }
  .swiper-button-next {
    right: -3.5rem;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: -4.5rem;
  }
  .contact__form {
    width: 460px;
  }
  .contact__inputs {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__img {
    width: 70%;
  }
}
.box__links {
  width: 300px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text-color);
  box-shadow: 0 0 0 30px var(--input-color) inset;
}/*# sourceMappingURL=styles.css.map */