@charset "UTF-8";
/* --- SASS VARIABLES --- */
main #contact iframe#google-form, main #contact .container, main #portfolio, main #contact, #site-logo, header, main, footer, body, a.button-icon-stacked {
  margin: 0 auto;
}

main #contact iframe#google-form, header, main, footer, body {
  width: 100%;
}

main #portfolio, main #contact {
  width: 65%;
}

a.link, a.button-icon-stacked:hover p, a.button-icon-stacked:active p {
  text-decoration: underline;
  text-underline-offset: 10%;
}

p.site-title, h1 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

a.button-icon-stacked, a.button-primary {
  font-family: "Albert Sans", Helvetica, sans-serif;
  font-weight: 600;
}

a.button-icon-stacked img {
  width: 55px;
  height: auto;
}

nav#site-social-bar img {
  width: 28px;
  height: auto;
}

/* --- TYPOGRAPHY STYLES --- */
html {
  font-size: 16px;
}

body {
  font-family: "Open Sans", Helvetica, sans-serif;
  color: rgb(24, 31, 37);
  line-height: 1.65;
  font-size: 1rem;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Albert Sans", Helvetica, sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

h1 {
  font-family: "Heebo", Helvetica, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

h2 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.inverse {
  color: rgb(255, 255, 255);
}

span.light {
  font-weight: 350;
}

p.site-tagline, p.site-title {
  font-family: "Albert Sans", Helvetica, sans-serif;
}

p.site-tagline {
  font-weight: 350;
  text-transform: none;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

p.site-title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 350;
  color: rgb(54, 70, 82);
}

p.copyright {
  font-size: 0.7rem;
  text-align: center;
}

/* --- LINK & BUTTON STYLES --- */
a.button-primary {
  color: rgb(255, 255, 255);
  display: inline-block;
  background: rgb(40, 175, 176);
  text-align: center;
  text-decoration: none;
  min-width: 150px;
  padding: 7px 15px;
  border-radius: 100px;
  transition: background 0.3s ease;
}

a.button-primary:hover {
  background: rgb(26, 116, 116);
}

a.button-icon-stacked {
  width: -moz-max-content;
  width: max-content;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

a.button-icon-stacked img {
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

a.button-icon-stacked:hover img, a.button-icon-stacked:active img {
  transform: scale(1.1);
}

a.button-icon-stacked p {
  margin: 0;
}

a.link {
  color: inherit;
  transition: color 0.3s ease;
}

a.link:hover {
  color: rgb(40, 175, 176);
}

a.link.inverse {
  color: rgb(255, 255, 255);
}

a.link.inverse:hover {
  color: rgb(139, 229, 229);
}

a.link.inverse:active {
  color: rgb(139, 229, 229);
}

/* --- TOOLTIP STYLES --- */
.tooltip {
  background: rgb(24, 31, 37);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 8px);
  padding: 3px 6px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: 3px;
}

.tooltip p {
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
  margin: 0;
  white-space: nowrap;
  position: relative;
}

.tooltip p::before {
  content: "▴";
  color: rgb(24, 31, 37);
  display: flex;
  flex-direction: column;
  height: 11px;
  overflow: hidden;
  justify-content: center;
  transform: translate(-50%, -12px) scale(1.5);
  position: absolute;
  left: 50%;
}

/* --- ELEMENT STYLES --- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  min-height: 100vh;
  max-width: 1600px;
  min-width: 320px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.125);
  position: relative;
}

header, main, footer {
  padding: 0 5%;
}

nav#site-social-bar {
  width: 365px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.125);
  padding: 20px 30px 15px 30px;
  border-bottom-left-radius: 45px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
}

nav#site-social-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

nav#site-social-bar li {
  position: relative;
}

nav#site-social-bar img {
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

nav#site-social-bar img:hover {
  cursor: pointer;
}

nav#site-social-bar li:hover img {
  opacity: 1;
}

nav#site-social-bar li:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

header {
  padding-top: 115px;
  padding-bottom: 25px;
  text-align: center;
}

#site-logo {
  width: 60px;
}

header .site-tagline {
  margin: 0;
}

header .site-title {
  background: rgb(238, 240, 242);
  padding: 10px 36px;
  border-radius: 100px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 30px auto 0 auto;
}

main #portfolio, main #contact {
  max-width: 725px;
  text-align: center;
}

main #portfolio a.button-primary {
  margin-top: 10px;
}

main #contact {
  margin-top: 60px;
}

main #contact .container {
  background: rgb(238, 240, 242);
  border-radius: 45px;
  padding: 50px 50px 0 50px;
}

main #contact iframe#google-form {
  margin-top: 20px;
}

footer {
  margin-top: max(5%, 45px);
  padding-bottom: 65px;
}

.svg-graphic {
  position: absolute;
  transition: transform 0.3s ease;
}

img#bottom-bar-grey {
  bottom: 0;
  height: 30px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

img#shapes-bottom {
  bottom: 0;
  left: 10%;
  width: 133px;
}

img#pill-grey-left, img#pill-grey-right {
  width: 19%;
  max-width: 245px;
}

img#pill-grey-left {
  top: 0;
  transform: translateY(40vh);
}

img#pill-grey-right {
  top: 0;
  right: 0;
  transform: translateY(35vh) scaleX(-1);
}

img#shapes-left {
  top: 0;
  width: 16.5%;
  max-width: 195px;
  transform: translateY(31vh);
}

img#shapes-right {
  top: 0;
  width: 13.5%;
  max-width: 165px;
  right: 0;
  transform: translateY(32vh);
}

.svg-graphic.mobile {
  display: none;
  width: 13%;
  top: 0;
}

img#shapes-left-mobile, img#shapes-right-mobile {
  transform: translateY(10vh);
}

img#shapes-right-mobile {
  right: 0;
}

/* --- RESPONSIVE DESIGN --- */
@media all and (min-width: 1600px) {
  nav#site-social-bar {
    border-bottom-right-radius: 45px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media all and (max-width: 850px) {
  main #contact {
    width: 85%;
  }
  img#bottom-bar-grey {
    height: 20px;
  }
  img#shapes-bottom {
    width: 90px;
  }
  img#pill-grey-left {
    transform: translateY(38vh);
  }
  img#shapes-left {
    transform: translateY(32vh);
  }
}
@media all and (max-width: 650px) {
  nav#site-social-bar {
    border-radius: 45px;
    right: unset;
    left: 50%;
    transform: translate(-50%, 20px);
  }
  header {
    padding-top: 155px;
  }
  header .site-title {
    width: 100%;
  }
  main #portfolio, main #contact {
    width: 100%;
  }
  main #contact .container {
    padding: 50px 5% 0 5%;
  }
  main #contact iframe#google-form {
    margin-top: 0;
  }
  img#pill-grey-left, img#pill-grey-right, img#shapes-left, img#shapes-right {
    display: none;
  }
  .svg-graphic.mobile {
    display: block;
  }
}
@media all and (max-width: 450px) {
  nav#site-social-bar {
    width: 300px;
    padding: 15px 25px 8px 25px;
  }
  header {
    padding-top: 145px;
    padding-bottom: 20px;
  }
  header .site-tagline {
    line-height: 1.4;
    margin-top: 7px;
  }
  header .site-title {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.5;
    margin-top: 35px;
  }
  main #contact {
    margin-top: 40px;
  }
  main #contact .container {
    padding: 40px 5% 35px 5%;
    border-radius: 25px;
  }
  footer {
    padding-bottom: 75px;
  }
  img#bottom-bar-grey {
    height: 15px;
  }
  img#shapes-bottom {
    width: 65px;
  }
}/*# sourceMappingURL=style.css.map */