/* Responsive breakpoints *
/* 
992px for desktop
*/
/* resets 
==================== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

:root {
  --clr-primary-accent: #42719c;
}

/* utility classes
==================== */
.opacity-70 {
  opacity: 0.70;
}

.hidden {
  display: none;
}

.display-block {
  display: block;
}

html {
  font-size: 100%;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.page-wrap {
  height: 100vh;
  max-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  place-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media screen and (min-width: 992px) {
  header {
    padding: 0.1rem;
    position: fixed;
    top: 0;
    color: #ffffff;
    background: #8fb8f5;
    background: #3d5e79;
    background: -webkit-gradient(linear, left top, left bottom, from(#3d5e79), to(#6085a3));
    background: linear-gradient(#3d5e79, #6085a3);
    z-index: 999;
    display: -webkit-flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.logo {
  font-size: 1rem;
}

@media screen and (min-width: 992px) {
  .logo {
    margin-left: 2rem;
  }
}

#mobile-menu {
  width: 22px;
  height: auto;
  cursor: pointer;
}

#close-mobile-menu {
  float: right;
  cursor: pointer;
  width: 18px;
  height: auto;
}

@media screen and (min-width: 992px) {
  #close-mobile-menu, #mobile-menu {
    display: none;
  }
}

nav {
  display: none;
  width: 30%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fafafa;
  z-index: 999;
  padding: 1rem;
}

/* desktop layout */
@media screen and (min-width: 992px) {
  nav {
    display: block;
    width: 30vw;
    height: auto;
    position: relative;
    background: none;
  }
}

nav ul {
  margin-top: 5rem;
}

@media screen and (min-width: 992px) {
  nav ul {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    display: -webkit-flex;
    -webkit-justify-content: space-around;
  }
}

nav li a {
  display: block;
  text-align: right;
  padding: 1.5rem 1rem;
  text-transform: lowercase;
}

nav li a:hover, nav li a:focus {
  font-weight: 700;
}

nav li a:focus {
  outline: none;
}

@media screen and (min-width: 992px) {
  nav li a {
    padding: 0;
    font-size: 1rem;
  }
}

.hero {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-top: 5rem;
}

.hero-image-wrap {
  width: 100%;
  height: auto;
  margin-top: 3rem;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (min-width: 800px) {
  .hero-image-wrap {
    max-width: 600px;
  }
}

@media screen and (min-width: 992px) {
  .hero-image-wrap {
    position: absolute;
    right: -10vw;
    bottom: -0.9vh;
    -webkit-transform: rotate(0.5deg);
            transform: rotate(0.5deg);
    max-width: 900px;
    width: 70vw;
    opacity: 0.7;
  }
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-text-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  place-content: space-around;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (min-width: 800px) {
  .hero-text-wrap {
    max-width: 600px;
  }
}

@media screen and (min-width: 992px) {
  .hero-text-wrap {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    max-width: 800px;
    margin: 0 2em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    place-content: space-between;
  }
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1em;
  padding: 0 0.2em;
  margin-top: 1em;
}

@media screen and (min-width: 992px) {
  .hero-title {
    font-size: 3.6rem;
    margin-top: 0.4em;
    text-align: left;
  }
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  padding: 0 0.5em;
  margin-top: 1em;
}

@media screen and (min-width: 992px) {
  .hero-subtitle {
    font-size: 1.6rem;
    line-height: 1.2em;
    text-align: left;
    max-width: 75%;
  }
}

.status {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1em;
  color: var(--clr-primary-accent);
  opacity: 0.8;
}

.btn {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  border-radius: 50px;
  padding: 0.4em 1.4em;
  background: var(--clr-primary-accent);
  margin: 0 auto;
  width: 200px;
}

.btn:hover, .btn:focus {
  cursor: pointer;
  color: #b4eaf1;
}

.hero-secondary-cta {
  font-size: 0.7rem;
  opacity: 0.7;
  text-decoration: underline;
  margin: 1em 0 7em 0;
}

.hero-secondary-cta:hover, .hero-secondary-cta:focus {
  cursor: pointer;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .hero-cta-wrap {
    margin-top: 4em;
    max-width: 40% !important;
  }
}

/* about page
================= */
#about {
  width: 100vw;
  height: auto;
  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;
  color: #1b364e;
  background: #FAFAFA;
  padding-top: 4rem;
}

#about h1 {
  font-size: 1.8rem;
  margin-top: 1rem;
}

#about .card {
  width: 100%;
  height: auto;
  padding: 2em 3.8em;
}

#about .card .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
}

#about .card h1 {
  font-size: 1.2rem;
  font-weight: 700;
}

#about .card p {
  font-size: 1em;
  margin-top: 0.5em;
  line-height: 1.4em;
}

#about .card p .strikethru {
  text-decoration: line-through;
}

#about .card br {
  line-height: 1em;
}

#about img {
  width: 50px;
  height: 50px;
}

@media screen and (min-width: 688px) {
  .cards {
    max-width: 700px;
  }
}

@media screen and (min-width: 1280px) {
  #about {
    height: 100vh;
  }
  #about h1 {
    margin-top: 0.8rem;
    margin-bottom: 1rem;
  }
  #about .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    place-content: space-around;
    max-width: unset !important;
  }
  #about .card {
    background: #FFFFFF;
    border-radius: 1rem;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    width: 30%;
    font-size: 1.1rem;
    padding: 1em 3em;
  }
  #about .card p {
    line-height: 1.7em;
  }
}

/* contact page 
================= */
.contact-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* desktop layout */
@media screen and (min-width: 992px) {
  .contact-wrap {
    margin-top: 3.3rem;
  }
}

.contact-form {
  background: #FFFFFF;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-form .title {
  text-align: center;
  margin: 1rem 0 0 0;
}

.contact-form .title h1 {
  font-size: 2rem;
}

.contact-form .title p {
  font-size: 1rem;
  margin-top: 0.8em;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-top: 2rem;
}

.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
  background: #eeeeee;
  color: #42719c;
  border: none;
  border-radius: 5px;
  padding: 0.4em 0.2em;
  font-size: 1rem;
}

.contact-form textarea {
  resize: none;
  font-family: 'Montserrat', sans-serif;
}

.contact-form .btn {
  margin-top: 2rem;
}

.contact-form .tel {
  display: none;
}

.social-wrap {
  width: 60vw;
  height: auto;
  padding: 0.3rem 0.3rem 0 0.3rem;
  margin: 0 auto;
  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;
}

.social-title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 auto;
  padding: 0.5em;
}

.social-logo {
  width: 24px;
  height: 24px;
  margin: 0 0.8em;
}

/* resume page
================= */
/* desktop layout */
@media screen and (min-width: 992px) {
  .resume-wrap {
    margin-top: 2rem;
  }
}

#resume {
  background: #EEE;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 5rem 4rem 0 4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2em;
}

#resume p {
  max-width: 600px;
}

#resume .resume-pdf-icon {
  margin-top: 2rem;
  width: 50px;
  height: 50px;
}

#resume a {
  text-decoration: none;
  font-size: 0.5em;
}

#resume a span {
  display: block;
}

footer {
  color: #000000;
  font-size: 0.6rem;
  margin-bottom: 1em;
  opacity: 0.8;
  float: right;
  padding: 0 1rem;
}

/* to do
==========================*/
/*# sourceMappingURL=main.css.map */