:root {
  --white: #fff;
  --black: #000;
  --dark-gray: #1e1e1e;
  --darker-blue: #84a7eb;
  --nav-blue: #7cb1dc;
  --hero-blue: #84bdeb;
  --contact-blue: #84a7eb;
  --orange: #ff7a00;
  --darker-orange: #e47003;
  --pink: #e49deb;
  --light-pink: #fdebff;
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 62.5%;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

.nav-container {
  background: var(--nav-blue);
}

.nav-container a {
  color: var(--white);
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2em;
  font-size: 0.7rem;
}

header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
}

header .logo .logo-p1 {
  color: var(--white);
}

header .logo .logo-p2 {
  color: var(--orange);
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header ul a {
  display: block;
  padding: 0 1em;
}

.hero-illustration,
.social-header {
  display: none;
}

.hero {
  background: var(--hero-blue);
  color: var(--white);
  display: -ms-grid;
  display: grid;
  text-align: center;
  padding: 4em;
}

.hero h1 {
  font-size: 1.4rem;
}

.hero h2 {
  font-size: 0.8rem;
  margin: 1em 0 3em;
}

.see-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2em auto 0;
  width: 100px;
  font-weight: bold;
  color: var(--orange);
  font-size: 0.9rem;
}

.see-more span {
  margin-right: 0.5em;
}

.scroll {
  width: 30px;
  margin-top: 2em;
}

section {
  padding: 4em 2em;
  text-align: center;
}

.featured {
  position: relative;
}

.featured img {
  border-radius: 1em;
}

.featured::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--light-pink);
  top: 0;
  left: 0;
  z-index: -1;
}

.subtitle {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--orange);
  letter-spacing: 0.2em;
  font-size: 1em;
}

.featured-title {
  color: var(--black);
  font-weight: bold;
  font-size: 1.7em;
  display: block;
}

.featured-desc {
  color: var(--black);
  margin: 3em 0;
  font-size: 1.1em;
  line-height: 1.8em;
  font-weight: 500;
}

.project-btns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 2em 1em;
}

.project-btns-container .project-btns {
  text-decoration: none;
  padding: 0.6em 2em;
  border-radius: 12px;
  margin-inline: 2em;
}

.project-btns-container .project-btns img {
  margin-left: 0.3em;
  margin-block: auto;
  width: 1em;
}

.project-btns-container .see-online-btn {
  color: #000;
  font-weight: 600;
  background-color: var(--darker-orange);
}

.project-btns-container .see-github-btn {
  color: #fff;
  font-weight: 500;
  background-color: var(--dark-gray);
}

.project-btns-container .see-github-btn img {
  background-color: #fff;
}

.skills {
  background: var(--pink);
}

.skills-container ul li {
  background: var(--white);
  padding: 2em;
  border-radius: 1em;
  margin-bottom: 1em;
}

.skills-container ul li .icon-container {
  height: 100px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  margin: 0 auto;
}

.skills-container ul li .icon-container.one {
  width: 40px;
}

.skills-container ul li .icon-container.two {
  width: 120px;
}

.skills-container ul li .icon-container.three {
  width: 30px;
}

.skills-container ul li .skill-title {
  font-weight: bold;
  font-size: 0.75rem;
}

.skills-container ul li .featured-desc {
  margin-bottom: 2em;
}

.portfolio-container a img {
  border-radius: 1em;
  margin-bottom: 5em;
}

.contact {
  margin-top: -5em;
  background: var(--contact-blue);
  color: var(--black);
}

.contact .contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2em;
}

.contact .contact-form .contact-title {
  font-size: 1rem;
  font-weight: 700;
}

.contact .contact-form .contact-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2em 4em;
}

.contact .contact-form .contact-input label {
  font-weight: 600;
  font-size: 0.7rem;
  text-align: left;
}

.contact .contact-form .contact-input input {
  height: 1.5em;
}

.contact .contact-form .contact-input textarea {
  height: 8em;
}

.contact .submit-button {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  width: 115px;
  height: 30px;
  margin: 0.5em auto 0em;
  background: var(--orange);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.contact .submit-button:hover {
  background: var(--darker-orange);
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em 1.5em;
  background: var(--dark-gray);
}

footer .logo {
  margin: auto 0;
}

footer .logo .logo-p1 {
  color: var(--white);
}

footer .logo .logo-p2 {
  color: var(--orange);
}

footer a {
  text-decoration: none;
  color: var(--white);
}

footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer ul li {
  padding: 1em;
}

footer img {
  width: 25px;
  height: 25px;
}

@media only screen and (min-width: 768px) {
  * {
    font-size: 110%;
    overflow-x: hidden;
  }
  .hero h1 {
    font-size: 3rem;
    margin: 0.8em 0;
  }
  .hero h2 {
    font-size: 1.4rem;
    margin-bottom: 5em;
  }
  .logo {
    font-size: 1.12rem;
  }
  .logo .logo-icon {
    display: block;
    width: 40px;
    margin-right: 1em;
  }
  .featured-desc {
    padding-right: 1em;
    font-size: 1.15rem;
  }
  .featured-title {
    font-size: 2rem;
  }
  .project-btns-container {
    margin: 2em 0em;
  }
  .project-btns-container .project-btns {
    padding: 0.6em 1.3em;
  }
  .featured,
  .portfolio {
    text-align: left;
  }
  .featured img,
  .portfolio img {
    width: 50rem;
  }
  .see-more {
    margin-bottom: 1em;
    font-size: 1.2rem;
    width: 150px;
  }
  .scroll {
    width: 200px;
  }
  .featured,
  .portfolio-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% auto;
        grid-template-columns: 40% auto;
  }
  .skills {
    margin-top: -6em;
  }
  .skills-container ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (auto)[3];
        grid-template-columns: repeat(3, auto);
    grid-gap: 1em;
  }
  .skills-container p {
    font-size: 1rem;
  }
  .contact-form {
    width: 50%;
    margin: 0 auto;
  }
  .footer ul a {
    font-size: 1.1rem;
  }
}

@media only screen and (min-width: 1024px) {
  .hero-illustration {
    display: unset;
    margin: auto 0 auto -50%;
    width: 150%;
  }
  .hero {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 66% auto;
        grid-template-columns: 66% auto;
    background: unset;
    padding: 0;
  }
  .hero .content {
    background: var(--hero-blue);
    padding: 6em 8em 6em 4em;
    text-align: left;
  }
  .hero .content h1 {
    font-size: 3em;
    line-height: 1.6em;
    padding-right: 4em;
  }
  .see-more {
    margin: unset;
  }
  .scroll {
    margin-top: 3em;
    margin-left: -5.5em;
  }
  .nav-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 66% auto;
        grid-template-columns: 66% auto;
    background: unset;
  }
  header {
    background: var(--nav-blue);
    padding: 2em 2em 2em 4em;
  }
  .social-header {
    padding: 2em 2em 2em 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .social-header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 100%;
  }
  .social-header ul img {
    padding: 0 1em;
    width: 30px;
  }
  section {
    padding: 4em;
  }
}

@media only screen and (min-width: 1280px) {
  .social-header ul li a img {
    width: 35px;
  }
  header {
    padding: 2.5em 2em 2em 11em;
  }
  section {
    padding: 10em 10em 4em 10em;
  }
  .hero .content {
    padding: 6em 8em 6em 10em;
  }
}

@media only screen and (min-width: 1280px) and (min-height: 1024px) {
  .hero .content h1 {
    font-size: 2.9rem;
  }
}

@media only screen and (min-width: 1280px) {
  .contact {
    padding-top: 4em;
  }
  .contact form div label {
    font-size: 10rem;
  }
}

@media only screen and (min-width: 1440px) {
  .hero h1 {
    font-size: 20rem;
  }
}
/*# sourceMappingURL=main.css.map */