/* ======>> Custom Fonts <<====== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
/* ======>> Bootstrap icons <<====== */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
/* ======>> Reset <<====== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fe5d14;
  position: relative;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button {
  outline: none;
  border: none;
}

ul {
  list-style: none;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
  50% {
    -webkit-transform: translateY(-1.5px) translateX(-1.5px);
            transform: translateY(-1.5px) translateX(-1.5px);
  }
  100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
  50% {
    -webkit-transform: translateY(-1.5px) translateX(-1.5px);
            transform: translateY(-1.5px) translateX(-1.5px);
  }
  100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
}
/* ======>> Components <<====== */
.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.3rem;
}

.heading {
  font-family: "Poppins", sans-serif;
  font-size: 3.125rem;
  text-transform: capitalize;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.subheading {
  font-size: 2.375rem;
  text-transform: capitalize;
  font-weight: 600;
}

.title {
  font-size: 1.438rem;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.5;
}

.lead {
  font-size: 1.25rem;
  text-transform: capitalize;
  font-weight: 400;
  color: #101437;
}

.desc {
  font-size: 1.125rem;
  color: #101437;
  line-height: 1.6;
  font-weight: 400;
}

.btn, .footer__btns a, .btn--navbar, .btn--outline, .btn--secondary, .btn--primary {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 10px 25px;
  padding: 1.1rem 2.4rem;
  text-decoration: none;
  text-transform: uppercase;
  outline: none;
  letter-spacing: 0.1rem;
  color: white;
  background: black;
  border: 2px solid black;
  border-radius: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:hover, .footer__btns a:hover, .btn--navbar:hover, .btn--outline:hover, .btn--secondary:hover, .btn--primary:hover {
  color: black;
  background: white;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.btn--primary {
  background: #101437;
  border: 2px solid #101437;
  color: #fff;
}
.btn--primary:hover {
  color: #101437;
  background: #fff;
}

.btn--secondary {
  background: #fe5d14;
  border: 2px solid #fe5d14;
  color: #fff;
}
.btn--secondary:hover {
  color: #fe5d14;
  background: #fff;
}

.btn--outline {
  background: #fff;
  border: 2px solid #101437;
  color: #101437;
}
.btn--outline:hover {
  color: #fff;
  background: #101437;
}

.btn--navbar {
  padding: 10px 25px;
  background: #101437;
  border: 2px solid #101437;
  color: #fff;
}
.btn--navbar:hover {
  color: #101437;
  background: #fff;
}

.tippy-box[data-theme~=primary] {
  background-color: #101437;
  color: #fff;
  font-weight: 500;
}

.tippy-box[data-theme~=primary][data-placement^=top] > .tippy-arrow::before {
  border-top-color: #101437;
}

.tippy-box[data-theme~=primary][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: #101437;
}

.tippy-box[data-theme~=primary][data-placement^=left] > .tippy-arrow::before {
  border-left-color: #101437;
}

.tippy-box[data-theme~=primary][data-placement^=right] > .tippy-arrow::before {
  border-right-color: #101437;
}

.btn--top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  border-radius: 10%;
  background: #fe5d14;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.5rem;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn--top [class^=bi] {
  display: block;
}
.btn--top:hover {
  background: #101437;
}

.btn--top.show {
  display: block;
}

.hero__circle, .hero__circle:nth-of-type(3), .hero__circle:nth-of-type(2) {
  width: 450px;
  height: 425px;
  border-radius: 20%;
  border: 10px solid #fe5d14;
  position: absolute;
  right: -5%;
  top: 10%;
  z-index: -1;
}
.hero__circle:nth-of-type(2) {
  width: 475px;
  height: 450px;
  border: 10px solid #101437;
  right: -5%;
  top: 10%;
  z-index: -2;
}
.hero__circle:nth-of-type(3) {
  width: 600px;
  height: 600px;
  border: 10px solid #fff0e9;
  right: -5%;
  top: 10%;
  z-index: -3;
}

@media (max-width: 900px) {
  .hero__circle, .hero__circle:nth-of-type(2), .hero__circle:nth-of-type(3) {
    display: none;
  }
}
/*! ======>> Header <<====== */
.header {
  height: 80px;
  background: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}

.logo {
  max-width: 200px;
  min-width: 150px;
  width: 100%;
}
.logo__img {
  width: 100%;
  display: block;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.navbar__link {
  margin-right: 40px;
  font-size: 1.125rem;
  color: #101437;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}
.navbar__link:hover {
  color: #fe5d14;
}
.navbar__link:last-child {
  margin-right: 0;
}
.navbar__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 100%;
  width: 0;
  background-color: #fe5d14;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.navbar__link.active {
  color: #fe5d14;
}
.navbar__link:hover::after, .navbar__link.active::after {
  width: 100%;
}

.toggle {
  display: none;
}
.toggle__label {
  cursor: pointer;
  display: none;
}
.toggle__line {
  display: block;
  height: 3px;
  width: 30px;
  background: #101437;
  margin: 5px 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.toggle__line:nth-child(1) {
  margin-left: 20px;
}
.toggle__line:nth-child(2) {
  width: 50px;
}

.toggle:checked ~ .toggle__label > .toggle__line:nth-child(1) {
  background: #101437;
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
  width: 30px;
  margin-top: 10px;
}

.toggle:checked ~ .toggle__label > .toggle__line:nth-child(2) {
  background: #101437;
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
  width: 30px;
  margin-top: -8px;
  margin-left: 20px;
}

.toggle:checked ~ .navbar {
  left: 0;
}

/* ======>> Header Media Queries <<====== */
@media (max-width: 978px) {
  .toggle__label {
    display: block;
  }
  .header {
    position: fixed;
    top: 0;
  }
  .navbar {
    height: 100%;
    height: calc(100vh - 80px);
    width: 100%;
    position: fixed;
    top: 80px;
    left: 0;
    left: 100%;
    background: #101437;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navbar__link {
    margin: 10px 0 20px;
    padding: 5px 0;
    color: #fff;
    font-size: 1.875rem;
  }
  .navbar__link:hover, .navbar__link.active {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

/* ======>> Hero <<====== */
.hero {
  padding: 8rem 1rem;
  width: 100%;
  height: calc(100% - 80px);
  position: relative;
}
.hero__blur {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 20%;
  background: #fe5d14;
  background: -o-radial-gradient(center, circle, #bfc4ed, #fea37a);
  background: radial-gradient(circle at center, #bfc4ed, #fea37a);
  -webkit-filter: blur(100px);
          filter: blur(100px);
  z-index: -1;
}
.hero__blur2 {
  position: absolute;
  top: 60%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: #fe5d14;
  background: -o-radial-gradient(center, circle, #bfc4ed, #fea37a);
  background: radial-gradient(circle at center, #bfc4ed, #fea37a);
  border-radius: 10%;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  z-index: -1;
}
.hero .container {
  display: grid;
  grid-template-columns: 52% 48%;
  grid-template-areas: "content image";
  gap: 2rem 1rem;
  place-items: center center;
}
.hero__content {
  grid-area: content;
}
.hero__content .lead {
  margin-bottom: 1.05rem;
  display: inline-block;
  color: #fe5d14;
}
.hero__content .heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.7rem;
  color: #101437;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(20%, #fe5d14), color-stop(50%, #101437));
  background: -o-linear-gradient(top left, #fe5d14 20%, #101437 50%);
  background: linear-gradient(to bottom right, #fe5d14 20%, #101437 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__content .desc {
  margin-bottom: 4rem;
  color: #101437;
  opacity: 0.9;
}
.hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.hero__image {
  grid-area: image;
  max-width: 450px;
  width: 100%;
  height: 570px;
  border-radius: 15%;
  position: relative;
  z-index: 1;
}
 .hero__image::after {
  content: "";
  border: 4px solid #fea37a;
  border-radius: 15%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1.3rem;
  left: 1rem;
  z-index: -1;
} 
.hero__image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 15%;
}
.hero__card {
  position: absolute;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 1px 13px 2px rgba(16, 20, 55, 0.1);
          box-shadow: 0px 1px 13px 2px rgba(16, 20, 55, 0.1);
}
.hero__card .lead {
  font-weight: 500;
  text-transform: capitalize;
}
.hero__card:nth-of-type(1) {
  top: 40px;
  left: 7px;
  -webkit-animation: move 2s infinite;
          animation: move 2s infinite;
}
.hero__card:nth-of-type(2) {
  bottom: 22%;
  left: -10%;
  -webkit-animation: move 2.5s infinite;
          animation: move 2.5s infinite;
}
.hero__card:nth-of-type(3) {
  bottom: 20px;
  right: 20px;
  -webkit-animation: move 3s infinite;
          animation: move 3s infinite;
}

/* ======>> Hero Media Queries <<====== */
@media (max-width: 900px) {
  .hero {
    padding: 5rem 0;
  }
  .hero .container {
    grid-template-areas: "content" "image";
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    grid-template-columns: minmax(auto, 1fr);
    place-items: center start;
  }
  .hero__image {
    justify-self: center;
  }
  .hero__content {
    max-width: 90%;
    margin-bottom: 4rem;
  }
  .hero__card:nth-of-type(2) {
    bottom: 42%;
    left: -10%;
    -webkit-animation: move 2.5s infinite;
            animation: move 2.5s infinite;
  }
}
/* hero media wueries */
@media (max-width: 600px) {
  .hero__content {
    margin-bottom: 3rem;
    max-width: 100%;
  }
  .hero__image {
    border-radius: 20px;
    height: 420px;
    max-width: 100%;
  }
  .hero__image-img {
    border-radius: 20px;
  }
  .hero__image::after {
    border-radius: 20px;
  }
  .hero__card {
    padding: 0.5rem 0.8rem;
    border-radius: 0.3rem;
  }
  .hero__card .lead {
    font-size: 1rem;
  }
  .hero__card:nth-of-type(2) {
    left: 5%;
  }
}
/* ======>> Skills <<====== */
.skills {
  padding: 6rem 1rem;
}
.skills-content {
  background: #101437;
  border-radius: 30px;
  padding: 4.5rem 3rem;
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-areas: "heading items";
  gap: 3rem 1rem;
  place-items: center center;
}
.skills__heading {
  grid-area: heading;
}
.skills__heading .heading {
  margin-bottom: 2rem;
  color: #fff;
}
.skills__heading .desc {
  color: #fff;
  opacity: 0.9;
}
.skills__items {
  grid-area: items;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 1.8rem;
}
.skills__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 10px;
  border-left: 8px solid #fe5d14;
  -webkit-box-shadow: 9px 8px 10px -2px black;
          box-shadow: 9px 8px 10px -2px black;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem;
}
.skills__card:hover {
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
}
.skills__card-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1.2rem;
  background: #fff0e9;
  padding: 0.5rem;
}
.skills__card .lead {
  color: #101437;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* ======>> Skills Media Queries <<====== */
@media (max-width: 978px) {
  .skills {
    padding: 5rem 0;
  }
  .skills-content {
    grid-template-columns: minmax(auto, 1fr);
    grid-template-areas: "heading" "items";
    gap: 3rem 1rem;
    place-items: center center;
  }
  .skills__heading {
    max-width: 85%;
    margin-bottom: 2.3rem;
  }
  .skills__card-img {
    width: 55px;
    height: 55px;
    margin-right: 0.9rem;
  }
}
@media (max-width: 650px) {
  .skills-content {
    padding: 3rem 1.2rem;
  }
  .skills__heading {
    max-width: 95%;
  }
  .skills__items {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
/* ======>> About <<====== */
.about {
  padding: 7rem 0;
  position: relative;
}
.about__blur {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: #fe5d14;
  background: -o-radial-gradient(center, circle, #d3d6f2, #ffb593);
  background: radial-gradient(circle at center, #d3d6f2, #ffb593);
  border-radius: 50%;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  z-index: -1;
}
.about__blur2 {
  position: absolute;
  top: 60%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: #fe5d14;
  background: -o-radial-gradient(center, circle, #bfc4ed, #fea37a);
  background: radial-gradient(circle at center, #bfc4ed, #fea37a);
  border-radius: 50%;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  z-index: -1;
}
.about .container {
  display: grid;
  grid-template-columns: 45% 55%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-areas: "image content";
  gap: 2rem 0.5rem;
}
.about__content {
  grid-area: content;
}
.about__content .heading {
  margin-bottom: 1rem;
  color: #fe5d14;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(25%, #fe5d14), color-stop(50%, #101437));
  background: -o-linear-gradient(top left, #fe5d14 25%, #101437 50%);
  background: linear-gradient(to bottom right, #fe5d14 25%, #101437 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__content .title {
  margin-bottom: 2rem;
  color: #101437;
}
.about__content .desc {
  margin-bottom: 1.2rem;
}
.about__content .desc:last-of-type {
  margin-bottom: 3rem;
}
.about__content .social {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
.about__content .social .lead {
  color: #101437;
  font-size: 1.625rem;
  font-weight: 700;
  position: relative;
}
.about__content .social .social__link {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.about__content .social .social__link i[class^=bi] {
  font-size: 2.375rem;
  margin-right: 20px;
  color: #101437;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.about__content .social .social__link:hover i[class^=bi] {
  -webkit-transform: scale(1.1) translateY(2px);
      -ms-transform: scale(1.1) translateY(2px);
          transform: scale(1.1) translateY(2px);
  color: #fe5d14;
}
.about__image {
  grid-area: image;
  height: 600px;
  max-width: 450px;
  width: 100%;
  border-radius: 5%;
  position: relative;
  z-index: 1;
}
.about__image::after {
  content: "";
  position: absolute;
  top: 2%;
  left: -3%;
  width: 100%;
  height: 100%;
  background: #fe5d14;
  z-index: -1;
  border-radius: 5%;
}
.about__image-img {
  width: 200px;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5%;
}

/* ======>> About Media Queries <<====== */
@media (max-width: 900px) {
  .about {
    padding: 5rem 0;
  }
  .about .container {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "image";
  }
  .about__content {
    max-width: 80%;
    margin-bottom: 5rem;
  }
  .about__image {
    justify-self: center;
  }
}
@media (max-width: 600px) {
  .about__content {
    max-width: 90%;
  }
  .about__content .social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 3rem;
  }
  .about__image {
    border-radius: 20px 20px 20px 20px;
    height: 400px;
  }
  .about__image::after {
    border-radius: 20px 20px 20px 20px;
  }
  .about__image-img {
    border-radius: 20px 20px 20px 20px;
  }
}
/* ======>> Portfolio <<====== */
.portfolio {
  padding: 7rem 0;
}
.portfolio .container {
  display: grid;
  grid-template-areas: "content" "projects";
}
.portfolio__content {
  grid-area: content;
  margin-bottom: 7rem;
  max-width: 75%;
}
.portfolio__content .heading {
  margin-bottom: 2rem;
  color: #fe5d14;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(25%, #fe5d14), color-stop(50%, #101437));
  background: -o-linear-gradient(top left, #fe5d14 25%, #101437 50%);
  background: linear-gradient(to bottom right, #fe5d14 25%, #101437 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.portfolio__content .title {
  color: #101437;
}
.portfolio__projects {
  grid-area: projects;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 20px;
  place-items: center;
}

.project {
  max-width: 550px;
  width: 100%;
}
.project__img {
  width: 100%;
  margin-bottom: 2rem;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.project__img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.project__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.project__title {
  font-size: 1.625rem;
  margin-bottom: 1.3rem;
  color: #101437;
}
.project .desc {
  margin-bottom: 1rem;
}
.project__stack {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.project__stack-img {
  width: 36px;
  height: 36px;
  margin-right: 1rem;
}
.project__stack i[class^=bi] {
  display: inline-block;
  font-size: 3.125rem;
  color: #fe5d14;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.project__stack i[class^=bi]:hover {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}
.project__stack i[class^=bi] span {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem;
  color: #fe5d14;
}

/* ======>> Portfolio Media Queries <<====== */
@media (max-width: 768px) {
  .portfolio {
    padding: 4rem 0;
  }
  .portfolio__content {
    max-width: 90%;
  }
  .portfolio__projects {
    grid-template-columns: 1fr;
  }
  .portfolio .project {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .portfolio .project__stack {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .portfolio .project__stack-images {
    margin-bottom: 1rem;
  }
  .portfolio .project__stack i[class^=bi] {
    margin-left: 0;
  }
}
/* ======>> FOOTER <<====== */


.footer {
  padding: 5rem 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 29, 43, 0.92)), to(rgba(31, 29, 43, 0.92))), url("../img/footer-bg.jpg") no-repeat;
  background: -o-linear-gradient(rgba(31, 29, 43, 0.92), rgba(31, 29, 43, 0.92)), url("../img/footer-bg.jpg") no-repeat;
  background: linear-gradient(rgba(88, 25, 2, 0.92), rgba(47, 34, 13, 0.92)), url("../img/footer-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
}
.footer-inner {
  padding: 3rem 0;
}
.footer__content {
  text-align: center;
  color: #f6f5ff;
}
.footer__content .heading {
  font-size: 2.375rem;
  margin-bottom: 4rem;
}
.footer__btns {
  margin: 0 auto 4rem;
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
    justify-content: center;
}


.footer__btns a {
  background: #fe5d14;
  border: none;
}


.footer__btns a i[class^=bi] {
  /* margin-left: 25px; */
}



.footer__copy {
  background: #05060f;
  color: #f6f5ff;
  padding: 1.5rem 0;
}
.footer__copy .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__copy .container a {
  color: #fe5d14;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer__copy .container a:hover {
  color: #fff;
}
.footer__copy .container .heart {
  color: red;
}

/* ======>> Footer Media Queries <<====== */
@media (max-width: 876px) {
  .footer__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .footer__btns a {
    display: inline-block;
    width: 100%;
  }
}
@media (max-width: 753px) {
  .footer__btns a {
    display: inline-block;
    width: 80%;
  }
  .footer__copy .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__copy .container a {
    display: inline-block;
    padding: 0.7rem;
  }
}
@media (max-width: 640px) {
  .footer__btns a {
    width: 100%;
    font-size: 0.9375rem;
  }
  .footer__btns a i[class^=bi] {
    margin-left: 15px;
  }
}/*# sourceMappingURL=style.css.map */