:root {
  --main-color: #48d8a4;
  --secondary-color: #f6e6e0;
  --navbar-alternative: #7689d8;
  --navbar-color: (57, 79, 244, 0.9);
  --third-background-color: #eeb4aa;
  --text-1: #f0535d;
  --text-2: #1c2273;
}

h1 {
  color: #fff;
  font-family: "Oswald", "sans-serif";
  font-weight: 900;
  font-size: 54px;
}

h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  font-family: "roboto", "sans-serif";
}

h3 span:last-child {
  color: var(--text-1);
}

.navbar {
  color: #fff;
  background-color: var(--navbar-alternative);
}
.about-who {
  color: var(--text-1);
  font-size: 20px;
  font-family: "poppins", "sans-serif";
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 120px;
}
.who {
  color: var(--text-2);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  font-family: "roboto", "sans-serif";
  margin-left: 160px;
}
.who span:last-child {
  color: var(--text-1);
}
.about-title {
  color: var(--navbar-alternative);
}

.about-content {
  font-size: 18px;
  font-family: "roboto", "sans-serif";
  line-height: 2;
}
h3 {
  color: #fff;
}

.hero {
  position: relative;
  background-color: var(--main-color);
  padding: 40vh 10vw;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 70%);
}

.hero-img {
  position: absolute;
  display: block;
  right: 0px;
  top: 200px;
  width: 600px;
  height: auto;
}
.button {
  border-radius: 4px;
  background-color: var(--navbar-alternative);
  border: none;
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 16px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}
.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: "\00bb";
  position: absolute;
  font-size: 18px;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button:hover span {
  padding-right: 25px;
  color: var(--secondary-color);
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.photo {
  width: 50%;
  height: auto;
}

.tools h3 {
  font-size: 22px;
  font-weight: 900;
  color: black;
  font-family: "roboto", "sans-serif";
}
.tools h2 {
  color: var(--text-2);
  font-family: "poppins", "sans-serif";
  font-weight: 500;
}
.tools {
  background-color: var(--third-background-color);
  padding: 20vh 10vw;
  clip-path: polygon(0% 0%, 25% 15%, 100% 0%, 100% 100%, 0% 100%);
}

.box-icon {
  color: #fff;
  font-size: 60px;
}
.tools p {
  color: #000;
  font-size: 18px;
  font-family: "roboto", "sans-serif";
}

/*---------------------- About Page */
.about-header {
  background-color: var(--secondary-color);
  padding: 80px 20px;
}

.about-header h1 {
  font-size: 64px;
  line-height: 1.2;
  color: var(--text-2);
}

.about-header h2 {
  color: var(--text-1);
}

.about-header p {
  font-size: 18px;
  font-family: "roboto", "sans-serif";
}

.about-photo {
  border-radius: 20px;
  width: 300px;
  height: auto;
}

/*---------------------- Work Page */
.content-container {
  padding: 80px 20px;
}
.content-container h1 {
  color: var(--text-2);
}
.content-container h3 {
  font-size: 24px;
  color: #000;
  font-family: "poppins", "sans-serif";
}
.content-container p {
  font-size: 14px;
  color: #000;
  font-family: "roboto", "sans-serif";
}

.projects a {
  text-decoration: none;
  color: #000;
}

.projects a:hover {
  color: var(--navbar-alternative);
}

/*---------------------- Footer */

.work-inquiry {
  font-size: 42px;
  color: var(--text-2);
  font-family: "poppins", "sans-serif";
}

footer .email-link {
  text-decoration: none;
  color: #000;
  font-size: 24px;
}

footer .email-link:hover {
  color: var(--navbar-alternative);
}

.icon {
  padding: 10px 14px;
  font-size: 32px;
}

.icon a {
  text-decoration: none;
  color: #000;
}

.icon a:hover {
  color: pointer;
  color: var(--navbar-alternative);
}
/*---------------------- Media Queries */
@media (max-width: 1500px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 26px;
  }
  .hero-img {
    width: 500px;
    height: auto;
    right: 0px;
    top: 150px;
  }
}
@media (max-width: 1200px) {
  .hero-img {
    width: 400px;
    height: auto;
    right: 0px;
    top: 200px;
  }
}
@media (max-width: 1000px) {
  .hero-img {
    width: 350px;
    height: auto;
    right: 0px;
    top: 210px;
  }
}
@media (max-width: 980px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 16px;
  }

  .hero-img {
    width: 370px;
    height: auto;
    right: 0px;
    top: 290px;
  }
  .about-header {
    text-align: center;
    padding: 80px 5px;
  }
}
@media (max-width: 770px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 14px;
  }

  .hero {
    position: relative;
    background-color: var(--main-color);
    padding: 20vh 10vw;
    clip-path: polygon(0% 0%, 100% 0%, 200% 100%, 0% 70%);
  }

  .hero-img {
    width: 300px;
    height: auto;
    right: 20px;
    top: 220px;
  }
  .box-icon {
    font-size: 40px;
  }
  .tools p {
    font-size: 16px;
    font-family: "roboto", "sans-serif";
  }
  .about-header {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .button {
    padding: 10px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 14px;
  }
  h3 {
    font-size: 18px;
  }
  .hero {
    position: relative;
    background-color: var(--main-color);
    padding: 20vh 10vw;
    clip-path: polygon(0% 0%, 100% 0%, 200% 100%, 0% 70%);
  }
  .hero-img {
    display: none;
  }

  .box-icon {
    font-size: 30px;
  }
  .tools p {
    font-size: 8px;
    font-family: "roboto", "sans-serif";
  }
  .about-content {
    font-size: 14px;
    font-family: "roboto", "sans-serif";
    line-height: 1.5;
  }
  .img-fluid {
    display: none;
  }
  .about-header {
    text-align: center;
  }
  footer .email-link,
  .icon {
    font-size: 14px;
  }
  .work-inquiry {
    font-size: 28px;
  }
}
