/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100..900&display=swap");

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

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(12, 6%, 15%);
  --second-color: hsl(36, 6%, 32%);
  --title-color: hsl(0, 0%, 0%);
  --text-color: hsl(0, 0%, 22%);
  --text-second-color: hsl(26, 6%, 45%);
  --sub-heading-color: hsl(212, 96%, 55%);
  --body-color: hsl(0, 0%, 100%);
  --body-second-color: hsl(0, 6%, 93%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 4.5rem;
  --big-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

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

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

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

html {
  scroll-behavior: smooth;
}

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

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

button {
  outline: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--body-font);
  font-weight: var(--font-medium);
  line-height: 110%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1920px;
  margin-inline: auto;
}

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

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

.section__title {
  text-align: center;
  font-size: var(--big-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 2.5rem;
}

.main {
  overflow: hidden;
}

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

.nav {
  position: relative;
  margin-inline: 6rem;
  height: calc(var(--header-height)+2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  justify-self: start;
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
  justify-content: space-evenly;
  align-items: center;
}

.nav__logo img {
  width: 60px;
}

.nav__logo h1 {
  font-size: 1.2rem;
  color: var(--black-color);
  font-weight: var(--font-medium);
}

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

.nav__close,
.nav__toggle {
  display: none;
}

@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: 120%;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    padding-block: 4rem;
    box-shadow: 0 8px 16px hsla(207, 72%, 10%, 0.3);
    z-index: 999999;
  }
}

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

.nav__link {
  position: relative;
  color: var(--black-color);
  font: var(--font-medium) var(--h2-font-size) var(--body-font);
  line-height: 118%;
}

.nav__link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--sub-heading-color);
  left: 0;
  bottom: -0.5rem;
  transition: width 0.4s;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

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

/* Add shadow header */
.shadow-header {
  box-shadow: 0 4px 16px hsla(353, 100%, 8%, 0.1);
}

/* Active link */
.active-link:after {
  content: "";
  width: 80%;
  height: 3px;
  background-color: var(--sub-heading-color);
  left: 0;
  bottom: -0.5rem;
  transition: width 0.4s;
}

/*=============== BUTTON ===============*/
.home__btn-1 {
  display: inline-flex;
  justify-content: center;
  background-color: transparent;
  color: var(--black-color);
  border: 2px solid var(--black-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  border-radius: 4rem;
  transition: background-color 0.4s;
}

.home__btn-2 {
  display: inline-flex;
  justify-content: center;
  background-color: var(--black-color);
  color: var(--white-color);
  border: 2px solid var(--black-color);
  padding: 1rem 3rem;
  font-weight: var(--font-medium);
  border-radius: 4rem;
  transition: background-color 0.4s;
}

.project__button {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.project__btn {
  display: inline-flex;
  justify-content: center;
  background-color: transparent;
  color: var(--black-color);
  border: 2px solid var(--black-color);
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  font-weight: var(--font-semi-bold);
  border-radius: 1rem;
  transition: background-color 0.4s;
}

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

/*=============== HOME ===============*/
.home__container {
  padding-block: 5rem 4rem;
  gap: 7rem;
  align-items: center;
  justify-items: center;
}

.home__data {
  position: relative;
  display: grid;
  grid-template-columns: 515px 555px;
  column-gap: 1rem;
  text-align: center;
  align-items: center;
  justify-items: center;
}

.home__img {
  width: 400px;
}

.home__description {
  margin-bottom: 3.5rem;
  padding-right: 6rem;
}

.home__sub-heading {
  font-size: var(--h3-font-size);
  color: var(--sub-heading-color);
  font-weight: var(--font-semi-bold);
}

.home__title {
  font-size: var(--big-font-size);
  margin-top: 1rem;
  font-weight: var(--font-medium-bold);
}

.home__sub-title {
  font-size: var(--big-font-size);
  margin-top: 1rem;
  color: var(--text-second-color);
  margin-bottom: 1rem;
  font-weight: var(--font-semi-bold);
}

.home__button {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/*=============== ABOUT ===============*/
.about {
  background-color: var(--body-second-color);
  padding: 6rem 9rem;
}

.about__container {
  grid-template-columns: 387px 387px;
  column-gap: 2rem;
  justify-content: center;
  align-content: center;
}

.section__subtitle {
  text-align: center;
  color: var(--text-second-color);
}

.about__card {
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about__icon {
  font-size: 2.5rem;
}

.about__heading {
  font-size: 1.3rem;
  margin-top: 0.6rem;
  font-weight: var(--font-semi-bold);
}

.about__detail {
  font-size: var(--normal-font-size);
  color: #79716b;
  margin-top: 0.5rem;
}

.about__detail-1 {
  font-size: var(--normal-font-size);
  color: #79716b;
  margin-top: 0.5rem;
}

.about__content {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
}

.about__link {
  display: block;
  margin-top: 3rem;
  color: var(--sub-heading-color);
  text-align: center;
  font-size: 2rem;
}

.about__link:hover {
  color: rgb(8, 119, 205);
}

/*=============== BLOG ===============*/
.blog {
  padding: 12rem 3rem;
  background: linear-gradient(
      120deg,
      hsla(212.47, 98.98%, 38.43%, 0.95),
      /* 95% opacity */ hsla(239.07, 94.16%, 26.86%, 0.05) /* 5% opacity */
    ),
    url("/assets/images/blog-image.png") center/cover no-repeat;
}

.blog__title,
.blog__title a {
  font-size: 3rem;
  color: var(--white-color);
}

.blog__subtitle {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  color: var(--white-color);
  opacity: 0.9;
}
/*=============== SKILLS ===============*/
.skills {
  padding: 6rem 9rem;
}

.skills__container {
  grid-template-columns: 387px 387px;
  column-gap: 4rem;
  justify-content: center;
  align-content: center;
}

.skills__list ul {
  width: 400px;
}

.skills__list li {
  list-style: none;
  color: var(--black-color);
  font-size: 18px;
  margin: 70px 0;
  position: relative;
}

.skills__list li::before,
.skills__list li::after {
  content: "";
  display: block;
  height: 16px;
  width: 100%;
  background-color: #d9d9d9;
  position: absolute;
  bottom: -28px;
  border-radius: 6px;
}

.skills__list li::after {
  background-image: linear-gradient(90deg, #8bc0ff, #4299ff);
}

.skills__list li::after {
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.html::after {
  animation-name: html;
}

.css::after {
  animation-name: css;
}

.js::after {
  animation-name: js;
}

.react::after {
  animation-name: react;
}

.node::after {
  animation-name: node;
}

.mongo::after {
  animation-name: mongo;
}

.ui::after {
  animation-name: ui;
}

.git::after {
  animation-name: git;
}

@keyframes html {
  from {
    width: 0;
  }
  to {
    width: 90%;
  }
}

@keyframes css {
  from {
    width: 0;
  }
  to {
    width: 85%;
  }
}

@keyframes js {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}

@keyframes react {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}

@keyframes node {
  from {
    width: 0;
  }
  to {
    width: 70%;
  }
}

@keyframes mongo {
  from {
    width: 0;
  }
  to {
    width: 70%;
  }
}

@keyframes ui {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}

@keyframes git {
  from {
    width: 0;
  }
  to {
    width: 75%;
  }
}

/*=============== PROJECT ===============*/
.project {
  background-color: var(--body-second-color);
  padding: 6rem 9rem;
}

.project__container {
  justify-content: center;
  align-items: center;
}

.project__card {
  background-color: var(--white-color);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px hsla(353, 100%, 8%, 0.2);
}

.swiper {
  overflow: visible;
}

.project__swiper {
  width: 900px;
  overflow-x: clip;
  justify-self: center;
}

.project__swiper .swiper-slide {
  width: calc(33.33% - 1rem);
  margin-right: 1.08rem;
  box-sizing: border-box;
  transform: none !important;
}

*/ .project__img {
  width: 100%;
  height: 300px; /* keeps all cards equal height */
  object-fit: contain; /* show whole image without cutting */
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  padding: 5px; /* optional: spacing between image & border */
}

h3.project__title {
  text-align: center;
  margin-block: 1rem;
  font-size: var(--h2-font-size);
}

/*=============== CONTACT===============*/
.contact {
  padding: 6rem 12rem;
}

.contact__container {
  max-width: 800px;
  border: 2px solid var(--black-color);
  grid-template-columns: 300px 200px;
  padding: 1.5rem 4rem;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 15px;
}

.contact__mail {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact__mail i,
.contact__linked i {
  font-size: 1.8rem;
}

.contact__mail h4 {
  font-size: 1.2rem;
}

.contact__linked {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.contact__linked a {
  color: var(--black-color);
  font-size: 1.2rem;
}

/*=============== FOOTER ===============*/
.footer {
  padding: 1rem 12rem;
}

.footer__container {
  justify-content: center;
  align-items: center;
}

.footer__list {
  display: flex;
  font-size: 1.8rem;
  gap: 2rem;
}

.footer__link a {
  position: relative;
  color: var(--black-color);
}

.footer__link a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--sub-heading-color);
  left: 0;
  bottom: -0.5rem;
  transition: width 0.4s;
}

.footer__link a:hover::after {
  width: 100%;
}

.footer__copyright {
  text-align: center;
  margin-bottom: 3rem;
}

/*= ============== BLOG PAGE ===============*/
/*= ============== BANNER ===============*/
.blog__banner {
  padding: 20rem 3rem;
  background: linear-gradient(
      120deg,
      hsla(212.47, 98.98%, 38.43%, 0.95),
      /* 95% opacity */ hsla(239.07, 94.16%, 26.86%, 0.05) /* 5% opacity */
    ),
    url("/assets/images/blog__banner.jpg") center/cover no-repeat;
}

.blog__container {
  justify-content: center;
}

.blog__content {
  color: var(--white-color);
  font-size: 3rem;
  font-weight: var(--font-semi-bold);
}

.blog__detail__title {
  font-size: 1.2rem;
}

.blog__detail__content {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.blog__details li:first-child {
  margin-top: 0;
}

.blog__details li {
  margin-top: 1.3rem;
}

/*= ============== COMMON ===============*/

.blog__section__title {
  font-size: var(--big-font-size);
  color: #4299ff;
}

.blog__details {
  padding-left: 3rem;
}

/*= ============== FRONTEND ===============*/
.frontend {
  padding: 2rem 2rem 2rem;
}

/*= ============== FULL STACK ===============*/
.fullstack {
  padding: 2rem 2rem;
}

/*= ============== UI-UX ===============*/
.uiux {
  padding: 2rem 2rem;
}

/*= ============== BACKEND ===============*/
.backend {
  padding: 2rem 2rem;
}

/*= ============== UI-UX ===============*/
.career {
  padding: 2rem 2rem;
}

/*= ============== BACKEND ===============*/
.learning {
  padding: 2rem 2rem;
}

/*= ============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 4px 8px hsla(166, 85%, 8%, 0.4);
  color: var(--black-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s;
}

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

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

/*=============== RESPONSIVE ===============*/

@media screen and (max-width: 70rem) {
  /*===== NAVBAR =====*/
  .nav {
    height: var(--header-height);
    margin-inline: 2rem;
  }

  .nav__close,
  .nav__toggle {
    display: flex;
    color: var(--black-color);
    font-size: 1.5rem;
    cursor: pointer;
  }

  .nav__list {
    text-align: center;
    flex-direction: column;
    row-gap: 2rem;
  }

  /*===== HOME =====*/
  .home__img {
    width: 600px;
  }

  .home__description {
    padding-right: 0rem;
  }

  .home__data {
    grid-template-columns: 687px 575px;
    column-gap: 2rem;
  }
}

@media screen and (max-width: 64rem) {
  /*===== HOME =====*/
  .home__container {
    padding-block: 2rem 2rem;
    gap: 3rem;
    align-items: center;
    justify-items: center;
  }

  .home__data {
    grid-template-columns: 1fr;
    row-gap: 3rem;
    text-align: center;
  }

  .home__img {
    width: 400px;
  }

  .home__sub-heading {
    font-size: 1.5rem;
  }

  .home__button {
    margin-top: 2rem;
  }

  .home__btn-1,
  .home__btn-2 {
    font-size: 1.4rem;
  }

  .home__title {
    font-size: 2.5rem;
  }

  .home__sub-title {
    font-size: 2.8rem;
  }

  /*===== ABOUT =====*/
  .about {
    padding: 4rem 5rem;
  }

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

  .about__content {
    font-size: 1.5rem;
  }

  /*===== BLOG =====*/
  .blog__title,
  .blog__title a {
    font-size: 3rem;
  }

  .blog__subtitle {
    font-size: 1.5rem;
  }
  .blog {
    background: linear-gradient(
        120deg,
        hsl(198.78deg 96.79% 27.61% / 95%),
        hsl(239.08deg 89.56% 17.86% / 95%)
      ),
      url(/assets/images/blog-image.png) center / cover no-repeat;
  }

  /*===== SKILLS =====*/
  .skills {
    padding: 4rem 2rem;
  }

  .skills__container {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 0;
  }

  .skills__list li {
    font-size: 1.8rem;
    margin: 70px 0;
  }

  /*===== PROJECT =====*/
  .project {
    padding: 4rem 2rem;
  }

  .project__swiper {
    width: 1350px;
  }

  .swiper {
    margin-left: 1rem;
    padding: 0 3rem;
  }

  /*===== CONTACT =====*/
  .contact {
    padding: 6rem 2rem;
  }

  .contact__container {
    grid-template-columns: 480px 100px;
    padding: 1.5rem 1rem;
  }

  .contact__mail {
    gap: 0.8rem;
  }

  .contact__mail i,
  .contact__linked i {
    font-size: 2rem;
  }

  /*===== FOOTER =====*/
  .footer {
    padding: 1rem 2rem;
  }

  .footer__list {
    display: flex;
    font-size: 2rem;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .footer__copyright {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 50rem) {
  /*===== HOME =====*/
  .home__container {
    padding-block: 2rem 2rem;
    gap: 3rem;
    align-items: center;
    justify-items: center;
  }

  .home__data {
    grid-template-columns: 1fr;
    row-gap: 3rem;
    text-align: center;
  }

  .home__img {
    width: 400px;
  }

  .home__sub-heading {
    font-size: 1.5rem;
  }

  .home__button {
    margin-top: 2rem;
  }

  .home__btn-1,
  .home__btn-2 {
    font-size: 1.4rem;
  }

  .home__title {
    font-size: 2.5rem;
  }

  .home__sub-title {
    font-size: 2.8rem;
  }

  /*===== ABOUT =====*/
  .about {
    padding: 4rem 5rem;
  }

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

  .about__content {
    font-size: 1.5rem;
  }

  /*===== BLOG =====*/
  .blog__title,
  .blog__title a {
    font-size: 3rem;
  }

  .blog__subtitle {
    font-size: 1.5rem;
  }
  .blog {
    background: linear-gradient(
        120deg,
        hsl(198.78deg 96.79% 27.61% / 95%),
        hsl(239.08deg 89.56% 17.86% / 95%)
      ),
      url(/assets/images/blog-image.png) center / cover no-repeat;
  }

  /*===== SKILLS =====*/
  .skills {
    padding: 4rem 2rem;
  }

  .skills__container {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 0;
  }

  .skills__list li {
    font-size: 1.8rem;
    margin: 70px 0;
  }

  /*===== PROJECT =====*/
  .project {
    padding: 4rem 2rem;
  }

  .project__swiper {
    width: 1350px;
  }

  .swiper {
    margin-left: 1rem;
    padding: 0 3rem;
  }

  /*===== CONTACT =====*/
  .contact {
    padding: 6rem 2rem;
  }

  .contact__container {
    grid-template-columns: 480px 100px;
    padding: 1.5rem 1rem;
  }

  .contact__mail {
    gap: 0.8rem;
  }

  .contact__mail i,
  .contact__linked i {
    font-size: 2rem;
  }

  /*===== FOOTER =====*/
  .footer {
    padding: 1rem 2rem;
  }

  .footer__list {
    display: flex;
    font-size: 2rem;
    gap: 1rem;
  }

  .footer__copyright {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 48rem) {
  /*===== HOME =====*/
  .home__container {
    padding-block: 2rem 2rem;
    gap: 3rem;
    align-items: center;
    justify-items: center;
  }

  .home__data {
    grid-template-columns: 1fr;
    row-gap: 3rem;
    text-align: center;
  }

  .home__img {
    width: 250px;
  }

  .home__title {
    font-size: 2rem;
  }

  .home__sub-title {
    font-size: 2rem;
  }

  /*===== ABOUT =====*/
  .about {
    padding: 4rem 3rem;
  }

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

  .about__content {
    font-size: 1rem;
  }

  /*===== BLOG =====*/
  .blog__title,
  .blog__title a {
    font-size: 2rem;
  }

  .blog__subtitle {
    font-size: 1rem;
  }
  .blog {
    background: linear-gradient(
        120deg,
        hsl(198.78deg 96.79% 27.61% / 95%),
        hsl(239.08deg 89.56% 17.86% / 95%)
      ),
      url(/assets/images/blog-image.png) center / cover no-repeat;
  }

  /*===== SKILLS =====*/
  .skills {
    padding: 4rem 2rem;
  }

  .skills__container {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 0;
  }

  .skills__list li {
    margin: 50px 0;
  }

  /*===== PROJECT =====*/
  .project {
    padding: 4rem 2rem;
  }

  .project__swiper {
    width: 1110px;
  }

  .swiper {
    margin-left: 1rem;
    padding: 0 3rem;
  }

  /*===== CONTACT =====*/
  .contact {
    padding: 6rem 2rem;
  }

  .contact__container {
    grid-template-columns: 300px 100px;
    padding: 1.5rem 1rem;
  }

  .contact__mail {
    gap: 0.3rem;
  }

  .contact__mail i,
  .contact__linked i {
    font-size: 1.1rem;
  }

  /*===== FOOTER =====*/
  .footer {
    padding: 1rem 2rem;
  }

  .footer__list {
    display: flex;
    font-size: 1.1rem;
    gap: 1rem;
  }

  .footer__copyright {
    font-size: 1rem;
  }
}

@media screen and (max-width: 36rem) {
  /*===== HOME =====*/
  .home__container {
    padding-block: 2rem 2rem;
    padding-inline: 1rem;
    gap: 3rem;
    align-items: center;
    justify-items: center;
  }

  .home__data {
    grid-template-columns: 1fr;
    row-gap: 3rem;
    text-align: center;
  }

  .home__img {
    width: 250px;
  }

  .home__title {
    font-size: 2rem;
  }

  .home__btn-1,
  .home__btn-2 {
    font-size: 0.8rem;
  }

  .home__sub-title {
    font-size: 2rem;
  }

  /*===== ABOUT =====*/
  .about {
    padding: 4rem 1rem;
  }

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

  .about__content {
    font-size: 1rem;
  }

  /*===== BLOG =====*/
  .blog__title,
  .blog__title a {
    font-size: 1.8rem;
  }

  .blog__subtitle {
    font-size: 1rem;
  }
  .blog {
    background: linear-gradient(
        120deg,
        hsl(198.78deg 96.79% 27.61% / 95%),
        hsl(239.08deg 89.56% 17.86% / 95%)
      ),
      url(/assets/images/blog-image.png) center / cover no-repeat;
  }

  /*===== SKILLS =====*/
  .skills {
    padding: 4rem 2rem;
  }

  .skills__container {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 0;
  }

  .skills__list li {
    font-size: 1.2rem;
    margin: 50px 0;
  }

  /*===== PROJECT =====*/
  .project {
    padding: 4rem 2rem;
  }

  .project__swiper {
    width: 1110px;
  }

  .swiper {
    margin-left: 1rem;
    padding: 0 3rem;
  }

  /*===== CONTACT =====*/
  .contact {
    padding: 6rem 1rem;
  }

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

  .contact__mail {
    gap: 0.3rem;
  }

  .contact__mail i,
  .contact__linked i {
    font-size: 1.1rem;
  }

  /*===== FOOTER =====*/
  .footer {
    padding: 1rem 2rem;
  }

  .footer__list {
    display: flex;
    font-size: 1.1rem;
    gap: 1rem;
  }
  /*===== FOOTER =====*/
  .blog__details {
    padding-left: 1rem;
  }

  .blog__section__title {
    font-size: 1.8rem;
  }
}

.breadcrum {
  margin-top: 2rem;
  margin-left: 2rem;
}

.breadcrum a {
  color: var(--black-color);
}
