@import url("https://fonts.googleapis.com/css2?family=Fauna+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Andika+New+Basic:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  --font-size: calc(18px + 0.25vw);
  --font-family: 'Andika New Basic', sans-serif;
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #fff;
  background: purple;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(5%, teal), color-stop(70%, purple), to(black));
  background-image: linear-gradient(teal 5%, purple 70%, black);
  font-size: var(--font-size);
  font-family: var(--font-family);
  margin: 0;
  padding: 0 0 1em;
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: auto 1fr 50px;
      grid-template-rows: auto 1fr 50px;
      grid-template-areas: "header" "main" "footer";
}

a:link, a:visited, a:hover, a:active {
  color: #fff;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: dotted 1px #fff;
}

h1, h2, h3 {
  margin: 0;
  font-family: 'Fauna One', serif;
}

h1 {
  font-size: 1.44rem;
  /* for desktop  */
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 1.44rem;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.85rem;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.icon {
  display: inline-block;
  margin-right: .5em;
  color: white;
  fill: white;
}

.icon:hover {
  color: #ab79d6;
  fill: #ab79d6;
}

.icon svg {
  width: 1em;
  height: 1em;
  margin-right: .2em;
}

header {
  padding: .5em .5em 0;
  margin-bottom: .5em;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  font-family: 'Fauna One', serif;
}

@media screen and (min-width: 1023px) {
  header {
    padding: 1em 1em 0;
  }
}

header nav {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1024px) {
  header nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

header nav a.logo {
  margin: 0 0 10px;
  padding: 0;
  font-size: 1.375rem;
  text-decoration: none;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  white-space: nowrap;
  /* desktop logo */
}

@media screen and (min-width: 1024px) {
  header nav a.logo {
    font-size: 3rem;
    /* flex: 0;
                white-space: nowrap; */
  }
}

header nav a.logo:hover {
  opacity: .7;
}

header nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* for desktop nav */
}

@media screen and (min-width: 1024px) {
  header nav ul {
    /* flex-direction: row;
                width: inherit;
                justify-content: flex-end;
                align-items: center;  */
    margin-left: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

header nav ul li {
  background: #083E54;
  font-size: .875rem;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0px 35px;
  border: none !important;
  /* hide home on mobile to save space 
                &:is(:first-child) {
                    display: none;

                    @media screen and (min-width: 1024px) {
                        display: inline;
                    }
                }*/
  /* desktop nav */
}

header nav ul li:not(:last-child) {
  margin-right: 0;
}

header nav ul li a {
  display: block;
  text-decoration: none;
  padding: 10px 20px;
}

header nav ul li a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  header nav ul li a {
    padding: 10px 28px;
  }
}

header nav ul li div.icon {
  margin: 0;
}

header nav ul li div.icon a {
  padding: 10px 28px;
}

@media screen and (min-width: 1024px) {
  header nav ul li {
    font-size: 1rem;
  }
  header nav ul li:not(:last-child) {
    margin-right: 10px;
  }
}

header nav ul li:hover {
  background: #fff;
}

header nav ul li:hover a {
  color: #083E54;
}

header nav ul li.current {
  background: #fff !important;
}

header nav ul li.current a {
  color: #083E54;
}

main {
  padding: 0 .5em .5em;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: main;
}

@media screen and (min-width: 1024px) {
  main {
    padding: 0 1em 1em;
  }
}

#intro {
  border-radius: 30px;
  padding: 1em;
  margin: 1em 0;
  background: #212125;
}

@media screen and (min-width: 1024px) {
  #intro {
    border-radius: 50px;
    background: -webkit-gradient(linear, right top, left top, from(#212125), color-stop(87%, rgba(255, 255, 255, 0)));
    background: linear-gradient(-90deg, #212125 0%, rgba(255, 255, 255, 0) 87%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#212125",endColorstr="#ffffff",GradientType=1);
  }
}

#intro h1 {
  margin-bottom: 0;
}

#intro h2 {
  margin-bottom: 0;
}

#intro p {
  font-size: 1.0632rem;
  line-height: 1.44rem;
  color: #FFFFFF;
}

@media screen and (min-width: 1024px) {
  #intro p {
    max-width: 50%;
  }
}

#content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 30px;
  padding: 1em;
  margin: 1em 0;
  background: #212125;
}

@media screen and (min-width: 1023px) {
  #content {
    border-radius: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background: -webkit-gradient(linear, right top, left top, from(#212125), color-stop(87%, rgba(255, 255, 255, 0)));
    background: linear-gradient(-90deg, #212125 0%, rgba(255, 255, 255, 0) 87%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#212125",endColorstr="#ffffff",GradientType=1);
  }
}

#content .side-pic {
  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;
  padding: 0 0 1em 0;
}

@media screen and (min-width: 1023px) {
  #content .side-pic {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 0 0 1em 1em;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#content .side-pic img {
  border-radius: 250px;
  max-width: 300px;
  max-height: 300px;
  /* desktop */
}

@media screen and (min-width: 1023px) {
  #content .side-pic img {
    max-width: 300px;
    max-height: 300px;
  }
}

#content .text h2 {
  font-weight: 300;
  font-style: italic;
}

#content .text .icon-set {
  margin-bottom: 2em;
}

#cards {
  display: -ms-grid;
  display: grid;
  grid-gap: 1em;
  -ms-grid-columns: (minmax(350px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.card {
  background-color: #212125;
  border-radius: 0 50px;
  padding-bottom: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: fit-content(100%);
      grid-template-rows: fit-content(100%);
}

.card img {
  width: 100%;
  display: block;
  border-radius: 0 50px;
}

.card .project-thumb {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

.card .card-details {
  padding: 10px 20px 60px 20px;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card .card-details .button {
  display: block;
  margin-top: auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.nav-card {
  background-color: #212125;
  border-radius: 0 50px;
  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;
}

.nav-card .back-button {
  padding: 2em;
}

footer {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: footer;
  color: #fff;
  font-size: .68rem;
  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;
}

footer p {
  margin: 1em;
}

@media screen and (min-width: 1023px) {
  footer p {
    margin: 1.1em;
  }
}
/*# sourceMappingURL=global.css.map */