@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
body {
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "Poppins", arial, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.nav-container {
  background: #ac3676;
}

.nav-container a {
  color: white;
}

header {
  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: 1em;
}

header .logo {
  display: none;
  color: #fff700;
  font-weight: bold;
  min-width: 50%;
  padding-left: 1em;
}

header nav {
  width: 100%;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

@media only screen and (min-width: 600px) {
  header .logo {
    display: initial;
  }
}

@media only screen and (min-width: 1050px) {
  header .logo {
    min-width: initial;
  }
  header nav {
    width: initial;
  }
}

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

.hero {
  background: #bb357d;
  color: white;
  display: -ms-grid;
  display: grid;
  text-align: center;
  padding: 4em;
}

.meet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 200px;
  font-weight: bold;
  color: #fbeef6;
}

.meet span {
  margin-top: 1em;
  margin-right: 0.5em;
}

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

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

.circle {
  animation: circleAnimation 1s infinite alternate-reverse;
}

@-webkit-keyframes circleAnimation {
  from {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    z-index: 5;
  }
  to {
    -webkit-transform: translate(0, 27px);
            transform: translate(0, 27px);
  }
}

@keyframes circleAnimation {
  from {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    z-index: 5;
  }
  to {
    -webkit-transform: translate(0, 27px);
            transform: translate(0, 27px);
  }
}

.featured {
  position: relative;
}

.featured:before {
  content: url("../images/nature_flower.svg");
  width: 200px;
  height: 200px;
  opacity: 0.1;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: -1;
}

.featured img {
  border-radius: 1em;
  margin-bottom: 2em;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.subtitle {
  text-transform: uppercase;
  font-weight: bold;
  color: #ac3676;
  letter-spacing: 0.2em;
  font-size: 0.85em;
}

.featured-title {
  color: #3f3d56;
  font-weight: bold;
  font-size: 1.3em;
  margin-top: -0.4em;
  display: block;
}

.featured-desc {
  color: #3f3d56;
  margin-bottom: 3em;
  font-size: 0.9em;
  line-height: 1.8em;
  font-weight: 500;
  margin-bottom: 2em;
  word-break: break-word;
}

.featured-desc a {
  color: #ac3676;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.featured-desc a:hover {
  color: #ff008c;
}

.skills {
  background: #9a4cbe;
}

.skills-title {
  color: white;
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 1.2em;
}

.skills-container ul li {
  background: 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 img {
  height: 50px;
}

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

@media only screen and (min-width: 800px) {
  .skills {
    margin-top: -8em;
    margin-bottom: -7em;
    padding-top: 4em;
  }
  .skills-container ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[3];
        grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 1em;
  }
}

.portfolio {
  background: #fff;
}

.portfolio .inner {
  word-break: break-word;
}

.portfolio .inner img {
  width: 20px;
  height: 20px;
  float: left;
  margin-left: 0;
  margin-right: 0.4em;
  border-radius: 0;
  margin-bottom: 0;
}

.portfolio .inner .inner-download-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ac3676;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.portfolio .inner .inner-download-link a:hover {
  color: #ff008c;
}

@media only screen and (max-width: 799px) {
  .portfolio .inner a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

.portfolio-image-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.portfolio-title {
  color: #3f3d56;
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 1.2em;
}

.hire {
  padding-bottom: 4.2em;
  text-align: center;
}

.hire .hire-title {
  color: #3f3d56;
  font-weight: bold;
  font-size: 1.7em;
}

.hire a {
  text-decoration: underline;
  color: #bb357d;
  font-weight: bold;
  font-size: 1.7em;
}

.nav-footer {
  background: #bb357d;
  color: #fff;
  padding: 4em 2em;
  position: relative;
}

.nav-footer:after {
  content: url("../images/trees.svg");
  width: 100px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 5px;
  opacity: 0.2;
}

.nav-footer .footer-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-footer img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.nav-footer .footer-heading {
  font-weight: bold;
}

.nav-footer a {
  color: #fff;
  text-decoration: underline;
}

@media only screen and (min-width: 800px) {
  .featured,
  .portfolio {
    text-align: left;
  }
  .featured,
  .portfolio-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% auto;
        grid-template-columns: 40% auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .left,
  .portfolio-left {
    display: -ms-grid;
    display: grid;
    place-content: center;
    margin-right: 2em;
  }
  .right {
    margin-left: 2em;
    margin-top: 1em;
  }
  .portfolio {
    padding-top: 7em;
  }
  .portfolio-container img {
    margin-left: 2em;
  }
  .hire {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 54% auto;
        grid-template-columns: 54% auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hire .hire-title {
    text-align: end;
    margin-right: 1em;
  }
  .hire a {
    text-align: left;
    margin-left: 1em;
  }
  footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 75%;
  }
  .nav-footer::after {
    width: 160px;
  }
}

@media only screen and (min-width: 1050px) {
  .hero {
    height: 65vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-design {
    display: unset;
    max-width: 900px;
    width: 70%;
    height: auto;
    overflow-x: hidden;
  }
  .content {
    text-align: left;
    width: 30%;
  }
  .content h1 {
    font-size: 3em;
    line-height: 1.2em;
  }
  .meet {
    width: unset;
  }
  header {
    padding: 1em 4em 1em 4em;
  }
  header ul li {
    font-size: 18px;
  }
  section,
  .nav-footer {
    padding: 4em;
  }
  .social-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .social-header a:first-child {
    margin-right: 1em;
  }
  .social-header a img {
    width: 30px;
    height: 30px;
  }
  .portfolio img {
    float: right;
    max-width: 500px;
  }
}

@media only screen and (min-width: 1250px) {
  header {
    padding: 1em 10em;
  }
  section {
    padding: 10em 10em 4em 10em;
  }
  .nav-footer {
    padding: 4em 10em;
  }
  .hero {
    padding: 6em 10em 6em 10em;
  }
}

@media only screen and (min-width: 1550px) {
  header {
    padding: 1em 20em;
  }
  section {
    padding: 6em 20em 4em 20em;
  }
  .nav-footer {
    padding: 4em 20em;
  }
  .hero {
    padding: 9em 20em 6em 20em;
  }
}
/*# sourceMappingURL=main.css.map */