:root {
  --orange: #0b0033;
  --background: #f1ecff;
  --dark-orange: #b43409;
  --dark-grey: #222222;
}
/* 
Spacing System (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* 10px / 16px = 0.625 = 62.5% */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  background-color: var(--background);
  color: var(--dark-grey);
  overflow-x: hidden;
}
.inline-text {
  color: #170196;
  font-weight: 500;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 9.6rem;
  width: 100%;
  z-index: 1;
  position: relative;
  background-color: #f1ecfffd;
  box-shadow: 0 1px 10px 0 #ddd;
}

.headersticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.header-translate {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}
.icon-mobile-nav[name="close-outline"] {
  display: none;
}
.icon-mobile-nav {
  width: 5rem;
  color: #0b0033;
  z-index: 2;
}

.btn-mobile-nav {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 2;
}
.logo {
  height: 5rem;
  margin: 1.2rem 0;
  position: relative;
}
.nav-list {
  display: flex;
  align-content: center;
  gap: 6.6rem;
  list-style: none;
}
.nav-link:link,
.nav-link:visited {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  position: relative;
  color: #222;
}
.nav-link::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 0;
  bottom: -4px;
  background-color: var(--orange);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.nav-link:hover::before {
  width: 100%;
}
.nav-link:hover,
.nav-link:active {
  color: var(--orange);
}
section:not(:first-child) {
  margin: 5rem 0;
}
section {
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}
.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
  -webkit-transform: translateY(8rem);
  -moz-transform: translateY(8rem);
  -ms-transform: translateY(8rem);
  -o-transform: translateY(8rem);
}
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 7rem 9.6rem;
}
.secondary-heading {
  font-size: 3.6rem;
  margin-bottom: 5.6rem;
  font-weight: 600;
  color: inherit;
}
/************** HERO SECTION  ***********/
.section-hero {
  /* background: linear-gradient(to bottom right, #f8f7ff 70%, #251f3a 45%); */
  background: #ece6ff;
}
.hero.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 130rem;
  min-height: 100vh;
}
.hero-img {
  display: none;
}
.hero-text-box {
  display: flex;
  flex-direction: column;
}
.hero-intro {
  font-size: 1.6rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 2.8rem;
  letter-spacing: 3px;
}
.heading-primary {
  font-size: 7.2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
.heading-primary-info {
  font-size: 7.2rem;
  color: #444;
  margin-bottom: 1.6rem;
  font-weight: 300;
}
.hero-description {
  font-size: 1.8rem;
  font-weight: 400;
  color: #444;
  line-height: 1.5;
  margin-bottom: 6.4rem;
  width: 70%;
}
.hero-stack {
  max-width: 120rem;
  padding: 0 9.6rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.4rem;
}
.hero-stack div {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  gap: 9rem;
}
.featured-stack {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  color: #aaa;
}
.hero-stack-logo {
  width: 5rem;
  opacity: 0.6;
}
.btn-cta:link,
.btn-cta:visited {
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  letter-spacing: 2px;
  padding: 1.8rem 3.6rem;
  color: #fff;
  font-weight: 400;
  background: var(--orange);
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn-cta:hover,
.btn-cta:active {
  background-color: #130057;
}

/******************ABOUT ME**************/

/* .projects .secondary-heading {
  text-align: right;
  padding-right: 9.6rem;
} */
.about-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 9.6rem;
  justify-content: center;
}
.about-me-text {
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #111;
  font-weight: 400;
}
.about-me-text p:not(:last-child) {
  margin-bottom: 1.2rem;
}

.tech-list {
  list-style: none;
}
.about-me-img img {
  width: 100%;
}
.stack-logo {
  display: inline;
  width: 2rem;
  margin-right: 1.2rem;
}
.tech-list div li {
  display: flex;
  align-items: center;
}

/********************************************PROJECTS***************/
.projects-box {
  display: grid;
  grid-template-columns: 2fr 2fr;
  column-gap: 9.6rem;
}
.project-number {
  display: block;
  font-size: 7.6rem;
  font-weight: 600;
  color: #cac7d1;
  margin-bottom: 1.2rem;
}
.project-title {
  font-size: 3.2rem;
  margin-bottom: 3.2rem;
}
.project-description {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
  color: #111;
}
.project-img {
  width: 45%;
}
.project-img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-img-box::after {
  position: absolute;
  content: " ";
  z-index: -2;
  width: 80%;
  height: 80%;
  background-color: #ede7ff;
  border-radius: 50%;
  -webkit-border-radius: ;
  -moz-border-radius: ;
  -ms-border-radius: ;
  -o-border-radius: ;
}
.project-img-box::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 60%;
  height: 60%;
  background-color: #d5cfe9;
  border-radius: 50%;
  -webkit-border-radius: ;
  -moz-border-radius: ;
  -ms-border-radius: ;
  -o-border-radius: ;
}
/********************************************CONTACT ME***************/
.contact-me-box {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 9.6rem;
  justify-content: center;
}

.contact-me-box *:focus {
  outline: none;
}
.form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.2rem;
}

label {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;

  font-weight: 500;
}
input,
select {
  font-family: inherit;
  display: block;
  width: 100%;
  font-size: 1.8rem;
  padding: 1.2rem;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}

option {
  font-family: inherit;
  background-color: inherit;
}

input::placeholder,
option,
select {
  color: #555;
  font-weight: 100;
}
form *:focus {
  box-shadow: 0 0 0 5px var(--orange);
}
textarea {
  border: none;
  width: 100%;
  resize: none;
  font-size: 1.8rem;
  font-family: inherit;
  padding: 2rem 1.2rem;
  border-radius: 5px;
  -webkit-border-radius: ;
  -moz-border-radius: ;
  -ms-border-radius: ;
  -o-border-radius: ;
}
textarea::placeholder {
  color: #555;
  font-weight: 100;
}
.btn {
  border: 1px solid #ddd;
  margin-top: 3.2rem;
  cursor: pointer;
  align-self: center;
  padding: 1.2rem 4.8rem;
  font-family: inherit;
  font-size: 1.8rem;
  border-radius: 25px;
  -webkit-border-radius: ;
  -moz-border-radius: ;
  -ms-border-radius: ;
  -o-border-radius: ;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: #ddd;
}
.contact-me-img {
  background-image: url(/img/contact-me-img.svg);
  background-size: contain;
  background-position: 0 30%;
  background-repeat: no-repeat;
}
footer {
  border-top: 1px solid #bbb;
  padding: 9.6rem 0 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
.footer-info {
  flex-basis: 30%;
}
footer h3 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: #333;
}
footer p {
  font-size: 1.4rem;
  color: #777;
  line-height: 1.8;
  font-weight: 200;
}
.socials {
  display: flex;
  flex-direction: column;
}
.socials a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 200;
  color: #777;
}
.socials a:hover {
  color: #000;
  font-weight: 300;
}
.socials ul {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 5rem;
  list-style: none;
  font-size: 1.4rem;
  font-weight: 200;
  color: #777;
  margin-bottom: 2rem;
}
.socials li:not(:last-child) {
  margin-bottom: 2rem;
}

.socials li a {
  display: flex;
  align-items: center;
}
.footer-logo {
  display: inline;
  width: 2.5rem;
  margin-right: 1.2rem;
}
.socials .mail {
  margin-bottom: 1.5rem;
}

.copyright {
  font-size: 1.2rem;
  color: #aaa;
  line-height: 2;
  text-align: right;
}
.footer.container {
  padding-top: 0;
  padding-bottom: 5rem;
}
.footer/**************************
HEADER SUB MESSAGE*****************/;
