@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700;800&display=swap");
/* =====>> RESET <<===== */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Work Sans", sans-serif;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: url("../img/body-bg.svg") no-repeat;
  background-size: cover;
  background-position: center center;
}

body.stopScrolling {
  height: 100%;
  overflow: hidden;
}

::-moz-selection {
  background-color: #53a8f0;
  color: #fff;
}

::selection {
  background-color: #53a8f0;
  color: #fff;
}

h1,
h2,
h3 {
  font-family: "Work Sans", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* =====>> COMPONENTS <<===== */
.container {
  position: relative;
  max-width: 75rem;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.logo {
  text-decoration: none;
  display: inline-block;
  max-width: 65px;
  width: 100%;
}
.logo__img {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 0.25rem;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 3px 1px rgba(83, 168, 240, 0.2);
          box-shadow: 1px 1px 3px 1px rgba(83, 168, 240, 0.2);
}

.heading {
  color: #04091e;
  font-size: 3rem;
  text-transform: capitalize;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
  text-wrap: balance;
}
.heading__highlight {
  position: relative;
  z-index: 1;
}
.heading__highlight::after {
  content: "";
  position: absolute;
  background: #53a8f0;
  left: 0;
  bottom: 0;
  height: 25px;
  width: 100%;
  border-radius: 40%;
  z-index: -1;
}

.sub-heading {
  color: #53a8f0;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.13rem 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub-heading::before {
  content: "";
  background: #53a8f0;
  width: 3px;
  height: 25px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}

.text {
  color: #28292e;
  font-size: 1.125rem;
  margin: 2rem 0;
  line-height: 1.6;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}

.cta {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.attr {
  visibility: hidden;
  padding: 0.5rem 0;
  font-size: 0.45rem;
}

.btn, .btn--primary-outline, .btn--primary {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  border-radius: 0.3rem;
  background-color: #04091e;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  min-width: 130px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  outline: none;
  font-family: inherit;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover, .btn--primary-outline:hover, .btn--primary:hover {
  background-color: #04091e;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.btn--primary {
  background-color: #53a8f0;
}
.btn--primary:hover {
  background-color: #1276cb;
}

.btn--primary-outline {
  color: #53a8f0;
  outline: 2px solid #53a8f0;
  background: transparent;
}
.btn--primary-outline:hover {
  background-color: #53a8f0;
  outline: 2px solid #53a8f0;
  color: #ffffff;
}

.btn--top {
  display: none;
  position: fixed;
  z-index: 10;
  bottom: 120px;
  right: 20px;
  width: 65px;
  height: 65px;
  background: #53a8f0;
  border: 1.5px solid #ffffff;
  border-radius: 10%;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.5rem;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn--top [class^=fa] {
  display: block;
}
.btn--top:hover {
  background: #1276cb;
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}

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

/* =====>> Components Media Queries <<===== */
@media (max-width: 1000px) {
  .heading {
    font-size: 2rem;
  }
  .sub-heading {
    font-size: 0.75rem;
  }
  .text {
    font-size: 1rem;
    margin: 1.3rem 0;
  }
  .btn, .btn--primary, .btn--primary-outline {
    padding: 0.8rem 1.6rem;
    font-size: 0.8rem;
    border-radius: 6px;
    min-width: 100px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 1rem;
  }
  .sub-heading::before {
    width: 3px;
  }
  .logo {
    font-size: 1.5rem !important;
  }
  .logo__icon {
    font-size: 1.2rem;
  }
}
/* ======>> Header <<====== */
.header {
  height: 80px;
  background: inherit;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header.scrolled {
  background: transparent;
}
.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%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 5px 20px 0.1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px 0.1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 5rem;
  margin-top: 10px;
}

.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: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar__link {
  margin-right: 40px;
  font-size: 1.125rem;
  color: #04091e;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.navbar__link:last-child {
  margin-right: 0;
}
.navbar__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 10px;
  bottom: 0;
  left: -5px;
  border-radius: 5px;
  background-color: #53a8f0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar__link:hover, .navbar__link.active {
  color: #04091e;
}
.navbar__link:hover::after, .navbar__link.active::after {
  width: 100%;
  opacity: 0.5;
  -webkit-transform: perspective(5px) rotateX(5deg);
          transform: perspective(5px) rotateX(5deg);
}
.navbar__link.reveal {
  display: none;
}

.toggle {
  display: none;
}
.toggle__label {
  cursor: pointer;
  display: none;
}
.toggle__line {
  display: block;
  height: 3px;
  width: 30px;
  background: #04091e;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 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: #04091e;
  -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: #04091e;
  -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;
  }
  .header .container {
    border-radius: 0%;
    margin-top: 0px;
  }
  .logo {
    font-size: 1.6rem;
    line-height: 1;
  }
  .navbar {
    height: calc(100vh - 80px);
    width: 100%;
    position: fixed;
    top: 80px;
    left: 100%;
    background: #ffffff;
    -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: #04091e;
    font-size: 1.875rem;
  }
  .navbar__link:hover, .navbar__link.active {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #53a8f0;
  }
  .navbar__link:hover::after, .navbar__link.active::after {
    background: #53a8f0;
    opacity: 1;
  }
  .navbar__link.reveal {
    display: block;
  }
}
/* ======>> Hero <<====== */
.hero {
  padding: 7rem 0 0;
  width: 100%;
  position: relative;
  background: url("../img/hero-alt.svg") no-repeat;
  background-size: cover;
  background-position: center top 40%;
  margin-top: -90px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  gap: 2.5rem;
  grid-template-areas: "text image";
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.hero__text {
  grid-area: text;
  padding: 1.5rem 0;
}
.hero__text .heading {
  z-index: 1;
  font-size: clamp(1.8rem, 7vw, 3.05rem);
}
.hero__image {
  grid-area: image;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}
.hero__image-person {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__image-person .person {
  max-height: 680px;
  height: 100%;
  width: auto;
  margin: 0 auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 30;
  position: relative;
}
.hero .cta {
  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;
}
.hero .cta a[class^=btn]:first-child {
  margin-right: 2rem;
}

/* ======>> Hero Media Queries <<====== */
@media (max-width: 978px) {
  .hero {
    padding: 5rem 0;
    margin-top: 0;
    background: url("../img/hero-mobile.svg") no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .hero .container {
    grid-template-areas: "text" "image";
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .hero__text .heading {
    max-width: 85%;
    text-wrap: balance;
  }
  .hero__text .text {
    max-width: 80%;
    text-wrap: balance;
  }
  .hero__image {
    max-width: 65%;
    justify-self: center;
    height: 550px;
  }
  .hero__image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .hero__text .heading {
    max-width: 87%;
    text-wrap: balance;
  }
  .hero__text .text {
    max-width: 85%;
    text-wrap: balance;
  }
  .hero__image {
    max-width: 65%;
    justify-self: center;
    height: 550px;
  }
  .hero__image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 500px) {
  .hero__text .heading {
    line-height: 1.3;
    max-width: 95%;
    text-wrap: balance;
  }
  .hero__text .text {
    max-width: 95%;
    text-wrap: balance;
  }
  .hero__image {
    max-width: 85%;
    justify-self: center;
    height: 450px;
  }
  .hero__image img {
    width: 100%;
    height: 100%;
  }
  .hero .cta {
    -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: flex-start;
  }
  .hero .cta a[class^=btn] {
    width: 70%;
    display: inline-block;
  }
  .hero .cta a[class^=btn]:first-child {
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 350px) {
  .hero__text .text {
    max-width: 95%;
    text-wrap: balance;
  }
  .hero__image {
    max-width: 100%;
    justify-self: center;
    height: 450px;
  }
  .hero__image img {
    width: 100%;
    height: 100%;
  }
  .hero .cta {
    -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: flex-start;
  }
  .hero .cta a[class^=btn] {
    width: 70%;
    display: inline-block;
  }
  .hero .cta a[class^=btn]:first-child {
    margin-bottom: 1.2rem;
  }
}
/* ======>> Skills <<====== */
.skills {
  padding: 7rem 0;
  position: relative;
  background: #f1f8ff;
}
.skills-wrapper {
  padding: 3rem 3rem;
  border-radius: 20px;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.skills .heading {
  text-wrap: balance;
  max-width: 60%;
}
.skills .text {
  max-width: 75%;
}
.skills__desc {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.skill {
  background: #ffffff;
  padding: 2rem;
  border: 0.5px solid rgba(4, 9, 30, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: grid;
  place-items: center;
}
.skill__icon {
  width: 100px;
  height: 100px;
  opacity: 0.65;
  padding: 0.3rem;
  border: 2px solid transparent;
  margin-bottom: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -o-object-fit: contain;
     object-fit: contain;
}
.skill .title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  opacity: 0.75;
}
.skill .text {
  max-width: 100%;
  text-wrap: balance;
  color: rgba(4, 9, 30, 0.85);
}
.skill::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #53a8f0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.skill:hover {
  -webkit-box-shadow: 0 3px 50px 0px rgba(4, 9, 30, 0.1);
          box-shadow: 0 3px 50px 0px rgba(4, 9, 30, 0.1);
}
.skill:hover::after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.skill:hover .skill__icon {
  opacity: 1;
}

/* ======>> Skills Media Queries <<====== */
@media (max-width: 1000px) {
  .skills-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .skills__desc {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }
  .skill__title {
    margin-top: 0;
    font-size: 1rem;
  }
}
@media (max-width: 650px) {
  .skills .heading {
    max-width: 95%;
    width: 95%;
    text-wrap: balance;
  }
  .skills .text {
    max-width: 95%;
    text-wrap: balance;
  }
  .skills .square {
    display: none;
  }
}
@media (max-width: 350px) {
  .skills-wrapper {
    padding: 3rem 1.2rem;
  }
  .skill__icon {
    font-size: 2rem;
    margin-right: 1.1rem;
  }
  .skill__title {
    font-size: 1rem;
  }
}
/* ======>> About <<====== */
.about {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.about .container {
  display: grid;
  grid-template-areas: "image content";
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  padding: 3rem 1rem 4rem;
}
.about__image {
  background: #ffffff;
  width: 100%;
  grid-area: image;
  -webkit-box-shadow: 7px 5px 0 #ffffff, 15px 12px 0 #2490ec;
          box-shadow: 7px 5px 0 #ffffff, 15px 12px 0 #2490ec;
  height: 700px;
}
.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.about__content {
  grid-area: content;
}
.about .heading {
  font-weight: 700;
}
.about .sub-heading {
  font-size: 1.2rem;
}
.about .text {
  margin: 3rem 0 0;
}
.about .text:nth-of-type(2) {
  margin-top: 1.5rem;
}

/* ======>> About Media Queries <<====== */
@media (max-width: 978px) {
  .about .container {
    gap: 2.5rem;
  }
  .about__image {
    width: 100%;
  }
  .about__image img {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 4.5rem 0;
  }
  .about .container {
    grid-template-areas: "content" "image";
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    row-gap: 7rem;
  }
  .about__image {
    max-width: 65%;
    justify-self: center;
  }
  .about__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .about__content {
    max-width: 80%;
  }
  .about .shape:nth-of-type(1) {
    display: none;
  }
}
@media (max-width: 500px) {
  .about .container {
    row-gap: 4rem;
  }
  .about__content {
    max-width: 90%;
    width: 100%;
  }
  .about__image {
    max-width: 80%;
  }
}
/* ======>> Portfolio <<====== */
.portfolio {
  padding: 8rem 0;
  background: #f1f8ff;
}
.portfolio .container {
  display: grid;
  grid-template-areas: "title" "projects";
  grid-template-columns: 1fr;
  gap: 8rem;
}
.portfolio__title {
  grid-area: title;
  width: 100%;
  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;
  gap: 3rem;
}
.portfolio__title .heading {
  width: 100%;
}
.portfolio__title .text {
  text-wrap: balance;
}
.portfolio__projects {
  grid-area: projects;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 5rem;
  justify-items: center;
}
.portfolio .project {
  background: #ffffff;
  padding: 3rem 1.8rem;
  border-radius: 30px;
  display: grid;
  grid-template-areas: "text image";
  grid-template-columns: 0.7fr 1fr;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: stretch;
  -webkit-box-shadow: 3px 3px 0px 4px rgba(4, 9, 30, 0.08);
          box-shadow: 3px 3px 0px 4px rgba(4, 9, 30, 0.08);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.portfolio .project:hover {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}
.portfolio .project__text {
  grid-area: text;
  color: #04091e;
}
.portfolio .project__text-number {
  font-size: 100px;
  margin-bottom: 1.2rem;
  font-weight: 700;
  opacity: 0.15;
}
.portfolio .project__text-title {
  font-size: 20px;
  text-wrap: balance;
  margin-bottom: 0.5rem;
}
.portfolio .project__text-desc {
  font-size: 1.125rem;
  text-wrap: balance;
}
.portfolio .project__text-desc span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
}
.portfolio .project__image {
  grid-area: image;
}
.portfolio .project__image img {
  width: 100%;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  aspect-ratio: 1.57/1;
}
.portfolio .project__divider {
  width: 75%;
  height: 1.5px;
  background: rgba(4, 9, 30, 0.1);
}

/* ======>> Portfolio Media Queries <<====== */
@media (max-width: 978px) {
  .portfolio .container {
    gap: 5rem;
  }
  .portfolio__title {
    -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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 1rem;
  }
  .portfolio__title .text {
    max-width: 90%;
  }
  .portfolio__projects {
    row-gap: 3rem;
  }
  .portfolio .project {
    grid-template-areas: "image" "text";
    grid-template-columns: 1fr;
  }
  .portfolio .project__text {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-areas: "number title" "number desc";
    row-gap: 0;
    margin-top: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: start;
  }
  .portfolio .project__text-number {
    grid-area: number;
  }
  .portfolio .project__text-title {
    grid-area: title;
    padding-bottom: 0;
    line-height: 1.4;
  }
  .portfolio .project__text-desc {
    grid-area: desc;
  }
}
@media (max-width: 768px) {
  .portfolio {
    padding: 5rem 0;
  }
}
@media (max-width: 600px) {
  .portfolio__title .text {
    max-width: 100%;
  }
  .portfolio .project {
    padding: 1.5rem;
    -webkit-box-shadow: 0px 3px 0px 4px rgba(4, 9, 30, 0.08);
            box-shadow: 0px 3px 0px 4px rgba(4, 9, 30, 0.08);
  }
  .portfolio .project__text {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "desc";
  }
  .portfolio .project__text-number {
    display: none;
  }
  .portfolio .project__text-title {
    margin-bottom: 1rem;
  }
}
@media (max-width: 400px) {
  .portfolio {
    padding: 6.5rem 0 5rem;
  }
}
/* ======>> Contact <<====== */
.contact {
  padding: 12rem 0 8rem;
  background: #53a8f0;
  background: url("../img/contact-alt.svg") repeat;
  background-size: cover;
  background-position: 0 0;
  background-attachment: fixed;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: "text email social" "name name name";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  gap: 5rem 1.5rem;
  color: #ffffff;
}
.contact__text {
  grid-area: text;
  position: relative;
  padding: 1.5rem 1rem;
  height: 100%;
  width: 100%;
}
.contact__text img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 30px;
  height: 30px;
}
.contact__text h2 {
  font-size: clamp(30px, 5vw, 50px);
  position: absolute;
  top: 0;
  left: 10px;
  text-transform: capitalize;
  color: #ffffff;
}
.contact__email {
  grid-area: email;
}
.contact__social {
  grid-area: social;
}
.contact__email, .contact__social {
  border: 1px solid #ffffff;
  background: #53a8f0;
  border-radius: 20px;
  height: 180px;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}
.contact__email a, .contact__social a {
  color: inherit;
  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;
  padding: 0.7rem 1.3rem;
  border-radius: 10px;
  border: 0.3px solid rgba(255, 255, 255, 0.4);
  line-height: 1;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact__email a span, .contact__social a span {
  font-size: 1.6rem;
  font-weight: 800;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  padding: 0.7rem;
  width: 30px;
  height: 30px;
  color: #ffffff;
  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: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact__email:hover, .contact__social:hover {
  -webkit-transform: scale(1.01);
      -ms-transform: scale(1.01);
          transform: scale(1.01);
}
.contact__email:hover span, .contact__social:hover span {
  -webkit-transform: rotate(0deg) scale(1.4);
      -ms-transform: rotate(0deg) scale(1.4);
          transform: rotate(0deg) scale(1.4);
}
.contact__email:hover a, .contact__social:hover a {
  background: #ffb646;
  color: #04091e;
  border: none;
}
.contact__name {
  grid-area: name;
}
.contact__name p {
  font-size: clamp(38px, 5vw, 100px);
  text-align: center;
  text-transform: capitalize;
  font-weight: 800;
  color: #ffffff;
}
.contact__name p.lead {
  font-size: clamp(22px, 5vw, 40px);
}

/* ======>> Contact Media Queries <<====== */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 40px 1fr 1fr;
    grid-template-areas: "text text" "email social" "name name";
    gap: 3rem 1.5rem;
  }
  .contact__text {
    -ms-flex-item-align: center;
        align-self: center;
    justify-self: center;
    width: 60%;
    text-align: center;
  }
}
@media (max-width: 650px) {
  .contact {
    padding: 6rem 0 4rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 60px 180px 180px 1fr;
    grid-template-areas: "text" "email" "social" "name";
    gap: 3rem;
  }
  .contact__text {
    width: 70%;
    margin-left: 30px;
  }
  .contact__email, .contact__social {
    width: 90%;
    height: 200px;
  }
}
@media (max-width: 490px) {
  .contact__text {
    width: 100%;
  }
  .contact__text img {
    display: none;
  }
  .contact__text h2 {
    text-align: center;
    position: relative;
  }
}
/* =====>> Footer <<===== */
.footer {
  position: relative;
  background: #04091e;
}
.footer__copy .container {
  padding-top: 2rem;
  border-top: 1px solid rgba(241, 248, 255, 0.3);
  margin: 0 auto;
  text-align: center;
  color: hsl(330, 1%, 62%);
}

/* ======>> Footer Media Queries <<====== */
@media (max-width: 768px) {
  .footer {
    padding: 1rem 0;
  }
}/*# sourceMappingURL=style.css.map */