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

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /* 
      Change favorite color:
      Default (Green): hsl(110, 75%, 60%)
      Blue: hsl(220, 80%, 60%) - Pink: hsl(300, 80%, 65%)
      Purple: hsl(255, 80%, 65%) - Cyan: hsl(180, 60%, 60%)
      Orange: hsl(15, 80%, 65%) - Red: hsl(358, 80%, 55%)
  */
  --hue: 210;
  --first-color: hsl(var(--hue), 75%, 60%);
  --gradient-color: linear-gradient(90deg, hsl(var(--hue), 75%, 60%) 0%,
                                           hsl(var(--hue), 100%, 85%) 40%,
                                           hsl(var(--hue), 100%, 85%) 60%,
                                           hsl(var(--hue), 75%, 60%) 100%);
  --white-color: hsl(var(--hue), 24%, 98%);
  --black-color: hsl(var(--hue), 12%, 8%);
  --text-color: hsl(var(--hue), 4%, 70%);
  --body-color: hsl(var(--hue), 12%, 4%);
  --container-color: hsl(var(--hue), 8%, 10%);
  --border-color: hsl(var(--hue), 8%, 20%);

  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Syne", sans-serif;
  --biggest-font-size: 2rem;
  --bigger-font-size: 1.75rem;
  --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;

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

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

/*========== Responsive typography ==========*/
@media (width >= 1150px) {
  :root {
    --biggest-font-size: 5rem;
    --bigger-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;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body,
input,
button,
textarea,
label {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button,
textarea {
  border: none;
  outline: none;
  background: none;
}

h1, h2, h3, h4 {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--second-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

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

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

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  text-align: center;
  font-size: var(--bigger-font-size);
  color: var(--white-color);
  margin-bottom: 2rem;
}

.section__title span {
  color: var(--first-color);
}

.section__subtitle {
  text-align: center;
  font-size: var(--h2-font-size);
  color: var(--white-color);
  margin-bottom: 1.5rem;
}

.section__subtitle span {
  color: var(--first-color);
}

.main {
  overflow: hidden;
}

/*=============== BLOB ===============*/
.blob-small, .blob-big {
  background-color: var(--first-color);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

.blob-small {
  width: 100px;
  height: 100px;
  filter: blur(50px);
}

.blob-big {
  width: 150px;
  height: 150px;
  filter: blur(100px);
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  background-color: var(--first-color);
  color: var(--black-color);
  padding: 1rem 2rem;
  border-radius: 4rem;
  font-weight: var(--font-semi-bold);
  transition: box-shadow 0.4s, transform 0.3s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.button:hover {
  box-shadow: 0 8px 24px hsla(var(--hue), 75%, 60%, 0.3);
  transform: translateY(-2px);
}

.button__ghost {
  background-color: transparent;
  border: 2px solid var(--first-color);
  color: var(--first-color);
}

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

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

.header-bg {
  background-color: hsla(var(--hue), 12%, 4%, 0.8);
  backdrop-filter: blur(8px);
}

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

.nav__logo{
  color: var(--white-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  font-size: var(--h3-font-size);
}

.nav__toggle{
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Navigation for mobile devices */
@media (width <= 1150px){
  .nav__menu{
    position: fixed;
    top: 0;
    right: -120%;
    width: 80%;
    height: 100%;
    background-color: hsla(var(--hue), 8%, 10%, 0.4);
    backdrop-filter: blur(24px);
    padding: 6rem 2rem 2rem 3rem;
    z-index: var(--z-fixed);
    transition: right 0.4s;
  }
}

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

.nav__link{
  position: relative;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
}

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

.nav__link::after{
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--first-color);
  border-radius: 50%;
  top: 0;
  left: -1rem;
  bottom: 0;
  margin-block: auto;
  opacity: 0;
  transition: opacity 0.4s;
}

.nav__link.active-link::after {
  opacity: 1;
}

.nav__link.active-link {
  color: var(--first-color);
}

.nav__close{
  position: absolute;
  color: var(--white-color);
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

/*=============== HOME ===============*/
.home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.home__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 4rem;
}

.home__data {
  text-align: center;
}

.home__name {
  font-size: var(--biggest-font-size);
  margin-bottom: 0.75rem;
}

.home__profession {
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
  font-family: var(--body-font);
  font-weight: var(--font-medium);
}

.home__description {
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
}

.home__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home .blob-small {
  position: absolute;
  top: 10%;
  left: 10%;
}

.home .blob-big {
  position: absolute;
  bottom: 10%;
  right: 10%;
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 3rem;
}

.about__content {
  display: grid;
  gap: 1rem;
}

.about__description {
  line-height: 1.8;
}

.about__description strong {
  color: var(--first-color);
}

.about__experience {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.about__experience-item {
  text-align: center;
}

.about__experience-number {
  display: block;
  font-size: var(--bigger-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--second-font);
}

.about__experience-text {
  font-size: var(--small-font-size);
}

/*=============== WORK ===============*/
.work {
  padding-bottom: 2rem;
}

.work__header {
  text-align: center;
  margin-bottom: 1rem;
}

.work__header-description {
  font-size: var(--small-font-size);
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.work__container {
  overflow: visible;
  width: 100%;
}

.work__swiper {
  overflow: visible;
  width: 100%;
  padding: 0.25rem 0.25rem 1.5rem;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  height: auto;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.work__card {
  position: relative;
  background: linear-gradient(135deg, hsla(var(--hue), 8%, 12%, 0.7) 0%, hsla(var(--hue), 8%, 8%, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid hsla(var(--hue), 8%, 20%, 0.6);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: border-color 0.4s, transform 0.3s, box-shadow 0.4s;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.work__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-color);
  opacity: 0;
  transition: opacity 0.4s;
}

.work__card:hover {
  border-color: var(--first-color);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px hsla(var(--hue), 75%, 60%, 0.25);
}

.work__card:hover::before {
  opacity: 1;
}

.work__card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-color);
  color: var(--black-color);
  font-size: 0.625rem;
  font-weight: var(--font-semi-bold);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.work__img {
  width: 100%;
  height: 180px;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background-color: var(--container-color);
  position: relative;
}

.work__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, hsla(var(--hue), 75%, 60%, 0.05), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.work__img img {
  position: relative;
  z-index: 1;
}

.work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}



.work__card:hover .work__img img {
  transform: scale(1.08);
}

.work__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.work__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
}

.work__subtitle {
  font-size: var(--small-font-size);
  margin-bottom: 1.25rem;
  color: var(--first-color);
  line-height: 1.5;
}

.work__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  flex: 1;
  width: 100%;
}

.work__detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--small-font-size);
  line-height: 1.5;
  text-align: center;
}

.work__detail-item i {
  color: var(--first-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.work__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.work__tag {
  display: inline-block;
  background-color: hsla(var(--hue), 75%, 60%, 0.08);
  color: var(--first-color);
  font-size: 0.6875rem;
  font-weight: var(--font-medium);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  border: 1px solid hsla(var(--hue), 75%, 60%, 0.15);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.work__tag:hover {
  background-color: var(--first-color);
  color: var(--black-color);
  border-color: var(--first-color);
}

.work__tag--firebase {
  background-color: hsla(27, 100%, 50%, 0.08);
  color: hsl(27, 100%, 55%);
  border-color: hsla(27, 100%, 50%, 0.15);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.work__tag--firebase:hover {
  background-color: hsl(27, 100%, 55%);
  color: var(--black-color);
  border-color: hsl(27, 100%, 55%);
}

.work__links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  width: 100%;
}

.work__button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  background: var(--gradient-color);
  transition: box-shadow 0.3s, gap 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.work__button:hover {
  box-shadow: 0 4px 16px hsla(var(--hue), 75%, 60%, 0.3);
  gap: 0.6rem;
  transform: translateY(-1px);
}

.work__button--secondary {
  background: transparent !important;
  border: 1px solid var(--border-color);
  color: var(--white-color);
}

.work__button--secondary:hover {
  background: hsla(var(--hue), 75%, 60%, 0.1) !important;
  border-color: var(--first-color);
  color: var(--first-color);
}

/* Swiper arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(var(--hue), 8%, 10%, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(var(--hue), 8%, 30%, 0.5);
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s ease;
  -webkit-tap-highlight-color: transparent;
}

.swiper-button-prev {
  left: -1.5rem;
}

.swiper-button-next {
  right: -1.5rem;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--first-color);
  border-color: var(--first-color);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 24px hsla(var(--hue), 75%, 60%, 0.3);
}

.swiper-button-prev:hover i,
.swiper-button-next:hover i {
  color: var(--black-color);
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 1.25rem;
  color: var(--first-color);
  transition: color 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-pagination {
  display: none;
}

/*=============== SERVICES ===============*/
.services__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.services__card {
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.4s, transform 0.3s;
}

.services__card:hover {
  border-color: var(--first-color);
  transform: translateY(-5px);
}

.services__icon {
  font-size: 2rem;
  color: var(--first-color);
  margin-bottom: 1rem;
}

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

.services__description {
  font-size: var(--small-font-size);
  line-height: 1.6;
}

.services__why {
  margin-top: 3rem;
}

.services__why-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 600px;
  margin-inline: auto;
}

.services__why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--small-font-size);
}

.services__why-item i {
  color: var(--first-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/*=============== SKILLS ===============*/
.skills__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.skills__category {
  flex: 1 1 280px;
  max-width: 340px;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: border-color 0.4s, transform 0.3s, box-shadow 0.4s;
}

.skills__category:hover {
  border-color: var(--first-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px hsla(var(--hue), 75%, 60%, 0.1);
}

.skills__category-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.skills__category-header i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.skills__category-title {
  font-size: var(--h3-font-size);
  color: var(--white-color);
}

.skills__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.skills__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 1rem;
  transition: background-color 0.3s, transform 0.3s;
}

.skills__item:hover {
  background-color: hsla(var(--hue), 75%, 60%, 0.05);
  transform: scale(1.05);
}

.skills__icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsla(var(--hue), 75%, 60%, 0.06);
  border-radius: 0.75rem;
  transition: background-color 0.3s;
}

.skills__item:hover .skills__icon-box {
  background-color: hsla(var(--hue), 75%, 60%, 0.12);
}

.skills__img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.skills__icon-box--remix i {
  font-size: 1.35rem;
  color: var(--first-color);
}

.skills__name {
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
  line-height: 1.2;
}

/*=============== CONTACT ===============*/
.contact__container {
  display: flex;
  justify-content: center;
}

.contact__info {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.contact__info-item:active {
  border-color: var(--first-color);
  background-color: hsla(var(--hue), 75%, 60%, 0.05);
}

.contact__info-item i {
  font-size: 1.5rem;
  color: var(--first-color);
  flex-shrink: 0;
}

.contact__info-item h4 {
  font-size: var(--normal-font-size);
  margin-bottom: 0.25rem;
}

.contact__info-item a {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  transition: color 0.3s;
  display: inline-block;
}

.contact__info-item a:hover {
  color: var(--first-color);
}

/*=============== FOOTER ===============*/
.footer {
  padding-block: 3rem 2rem;
  border-top: 1px solid var(--border-color);
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__content {
  text-align: center;
}

.footer__logo {
  font-size: var(--h3-font-size);
  color: var(--white-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
}

.footer__description {
  font-size: var(--small-font-size);
  margin-top: 0.5rem;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social-link {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.footer__social-link:hover {
  color: var(--first-color);
  transform: translateY(-3px);
}

.footer__social-link:active {
  color: var(--first-color);
  transform: translateY(-1px);
}

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

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  color: var(--white-color);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.3s;
}

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

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

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--container-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color);
}

/*=============== BREAKPOINTS ===============*/
/* For small phones */
@media (width <= 400px) {
  .container {
    margin-inline: 0.75rem;
  }

  .section {
    padding-block: 3.5rem 0.5rem;
  }

  .section__title {
    font-size: var(--h1-font-size);
  }

  .home__name {
    font-size: 1.75rem;
  }

  .home__profession {
    font-size: var(--h3-font-size);
    min-height: 2rem;
  }

  .home__description {
    font-size: var(--small-font-size);
  }

  .home__buttons {
    flex-direction: column;
    align-items: center;
  }

  .home__buttons .button {
    width: 100%;
    justify-content: center;
  }

  .nav__menu {
    width: 100%;
  }

  .services__container {
    grid-template-columns: 1fr;
  }

  .skills__list {
    grid-template-columns: 1fr;
  }

  .work__card {
    padding: 1.25rem;
  }

  .work__img {
    height: 140px;
  }

  .work__swiper {
    padding: 0.25rem 0 1rem;
  }

  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-next {
    right: 0;
  }

  .contact__info-item a {
    font-size: var(--normal-font-size);
  }
}

/* For medium devices */
@media (width >= 540px){
  .nav__menu{
    width: 50%;
  }

  .home__container {
    padding-top: 6rem;
  }

  .services__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__container {
    grid-template-columns: 1fr;
  }
}

@media (width >= 768px) {
  .home__container {
    padding-top: 0;
  }

  .about__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .services__container {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact__container {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }

  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__content {
    text-align: left;
  }

  .services__why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For large devices */
@media (width >= 1150px){
  .container{
    margin-inline: auto;
  }

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

  .section__title{
    margin-bottom: 3rem;
  }

  .nav{
    height: calc(var(--header-height) + 2rem);
    align-items: center;
  }

  .nav__toggle,
  .nav__close{
    display: none;
  }

  .nav__menu{
    width: initial;
  }

  .nav__list{
    flex-direction: row;
    align-items: center;
    column-gap: 4rem;
  }

  .home__name {
    font-size: var(--biggest-font-size);
  }

  .about__experience {
    gap: 5rem;
  }

  .services__container {
    gap: 1.5rem;
  }

  .work__img {
    height: 220px;
  }

}

/* For 2K resolutions */
@media (width >= 2048px) {
  body {
    zoom: 1.5;
  }
}
