/* -----------------------------------------------

Stylesheet: Main Stylesheet

------------------------------------------------ */


/* --------------------------------

STYLE SET 1: GLOBAL & GENERAL

-------------------------------- */

:root {
  --theme-black: #1c1c1c;
  --theme-grey: #4d4d4d;
  --theme-main: #9f7bf0;
  --theme-secondary: #f68fad;
  --theme-cta: #75e7e2;
  --theme-white: #ffffff;
}

*::selection {
    background: var(--theme-main);
    color: var(--theme-white);
    text-shadow: none;
}

html {
    background: var(--theme-white);
    scroll-behavior: smooth;
}


body {
  font-family: 'Signika Negative', sans-serif;
    color: #4d4d4d;
    font-size: 1.5rem;
    background: var(--theme-white);
}

body > img {
    display: none;
}

#butter {
    background: url('/wp-content/images/portfolio-background.svg');
    background-size: 40px 40px;
    background-repeat: repeat;
    border: 5px solid #afafaf;
    overflow: hidden;
}

main {
    margin: 0;
    padding: 0;
}

section {
    padding: 8rem 0;
}

.width-full {
    max-width: 100%;
    width: 100%;
}

.width-wide {
    max-width: 1532px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.width-regular {
    max-width: 1225px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4rem;
}

.width-thin {
    max-width: 1054px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4rem;
}

.sticky.is-anchored,
.sticky.is-stuck {
    z-index: 999;
}

/***- ADMIN BAR STICKY FIX -***/
@media screen and (min-width: 655px) and (max-width: 782px) {
    .admin-bar header.header .sticky.is-stuck {
        margin-top: 42px!important;
    }
}
@media screen and (min-width: 783px) {
    .admin-bar header.header .sticky.is-stuck {
        margin-top: 32px!important;
    }
}

.white-bg {
    background: rgba(255,255,255,.5);
    -webkit-box-shadow: 0 0 20px 30px rgba(255,255,255,.5);
    box-shadow: 0 0 20px 30px rgba(255,255,255,.5);
}

.text-white-outline,
.nav-bar li a,
p,
h1,
h2,
h3,
h4,
h5,
div div.wpforms-container-full button[type=submit] {
  text-shadow: -1px -1px 0 var(--theme-white), 1px -1px 0 var(--theme-white), -1px 1px 0 var(--theme-white), 1px 1px 0 var(--theme-white);
}

.manslava {
  font-family: 'Mansalva', cursive;
}

.fill-main {
    fill: var(--theme-main);
}
.fill-secondary {
    fill: var(--theme-secondary);
}

.color-main {
    color: var(--theme-main);
    font-weight:600;
}
.color-secondary {
    color: var(--theme-secondary);
    font-weight:600;
}
.color-cta {
    color: var(--theme-cta);
    font-weight:600;
}

/* --------------------------------

STYLE SET 2: NAVIGATION MENUS

-------------------------------- */


/* -------------------------
   MAIN NAV - DESKTOP
------------------------- */

header.header {
    position: relative;
    z-index: 10;
}
header.header .sticky.is-stuck,
header.header .sticky.is-anchored {
    z-index: 999;
    -webkit-transform: none;
    transform: none;
}

.nav-bar {
  padding: 1rem;
  position: fixed;
  z-index: 2;
  width: 100%;
}
.nav-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 135%;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15448186110381656) 15%, rgba(255,255,255,0.35) 35%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0.9025510207676821) 75%, rgba(255,255,255,1) 90%);
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15448186110381656) 15%, rgba(255,255,255,0.35) 35%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0.9025510207676821) 75%, rgba(255,255,255,1) 90%);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15448186110381656) 15%, rgba(255,255,255,0.35) 35%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0.9025510207676821) 75%, rgba(255,255,255,1) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1); 
    transition: all .4s ease;
    z-index: -1;
    transform: translateY(-100%);
    pointer-events: none;
}
.is-stuck .nav-bar:after {
    transform: translateY(0);
}

.nav-bar .logo {
    font-size: 10px;
}
.nav-bar .logo > a {
    display: inline-block;
    position: relative;
}
.nav-bar .logo .shape-1 {
    left: 0;
    top: -0.5em;
    height: 9em;
    position: absolute;
}
.nav-bar .logo .shape-2 {
    position: absolute;
    bottom: 1.3em;
    left: 16.4em;
    height: 1.4em;
    transform: rotateZ(-1.96deg);
}
.nav-bar .logo .shape-3, 
.nav-bar .logo .shape-4, 
.nav-bar .logo .shape-5 {
    position: absolute;
    width: 1.5em;
    height: .4em;
    border-radius: .3em;
    background-color: var(--theme-secondary);
}
.nav-bar .logo .shape-3:after,
.nav-bar .logo .shape-4:after,
.nav-bar .logo .shape-5:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: .3em;
    transform: rotateZ(90deg);
    background-color: var(--theme-secondary);
}
.nav-bar .logo .shape-3 {
    top: 1.3em;
    right: 1.0em;
}
.nav-bar .logo .shape-4 {
    top: 2.8em;
    right: -.5em;
} 
.nav-bar .logo .shape-5 {
    top: 4.1em;
    right: -1.8em;
}

.nav-bar .logo .name {
    position: relative;
    padding: 1.6em 0 1.6em 6.4em;
    z-index: 5;
    color: var(--theme-black);
    white-space: nowrap;
}
.nav-bar .logo .name span {
    font-size: 4em;
}


.nav-bar .menu li a {
    padding: 5px;
  font-size: 1.6rem;
  margin: 0 1.2rem;
  font-weight: 600;
  color: var(--theme-black);
  transition: .4s ease opacity;
  opacity: 1;
  display: block;
}
.nav-bar .menu:hover li a {
    opacity: .6;
}
.nav-bar .menu li a:hover {
    opacity: 1;
}
.nav-bar .menu .active a {
  background: none;
  /* opacity: 1; */
}


/* -------------------------
   MAIN NAV - MOBILE
------------------------- */

#trigger-overlay {

   margin: 0;

}

.menu-icon:after {
  background: var(--theme-black);
-webkit-box-shadow: 0 7px 0 var(--theme-black),0 14px 0 var(--theme-black);
box-shadow: 0 7px 0 var(--theme-black), 0 14px 0 var(--theme-black);
}
.menu-icon:hover:after {
  background: var(--theme-black);
-webkit-box-shadow: 0 7px 0 var(--theme-black),0 14px 0 var(--theme-black);
box-shadow: 0 7px 0 var(--theme-black), 0 14px 0 var(--theme-black);
}

.sticky.is-stuck .menu-icon:after {
  background: var(--theme-black);
  box-shadow: 0 7px 0 var(--theme-black), 0 14px 0 var(--theme-black);
}
.sticky.is-stuck .menu-icon:hover:after {
   background:var(--theme-black);
   box-shadow:0 7px 0 var(--theme-black), 0 14px 0 var(--theme-black);
  }

/* Overlay style */
.mobile-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--theme-white);
  z-index: 1200;
}

/* Overlay closing cross */
.mobile-nav .overlay-close {
    width: 30px;
    height: 30px;
    font-size: 30px;
    position: absolute;
    cursor: pointer;
    top: 53px;
    right: 29px;
    overflow: hidden;
    border: none;
    outline: none;
    z-index: 100;
    transition: color ease .4s;
    border: 2px solid var(--theme-grey);
    border-radius: 50%;
}
.admin-bar .mobile-nav .overlay-close {
    top: 90px;
}
.mobile-nav .overlay-close:after {
    font-family: 'arial';
    content: '+';
    position: absolute;
    transform: translate(-50%, -50%) rotateZ(45deg);
    color: var(--theme-grey);
    font-size: .9rem;
    font-weight: 900;
    top: 50%;
    left: 50%;
}

.mobile-nav .overlay-close:focus,
.mobile-nav .overlay-close:hover,
.mobile-nav .overlay-close:focus:after,
.mobile-nav .overlay-close:hover:after {
  color: var(--theme-black);
  border-color: var(--theme-black);
}

.mobile-nav ul {
  text-align: center;
  position: relative;
  font-size: 1em;
}

.mobile-nav li a {
    color: var(--theme-black);
    margin: .1rem 0;
}
.mobile-nav .menu .active > a {
    background: transparent;
    color: var(--theme-white);
}

.mobile-nav .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a:after {
    border-color: var(--theme-white) transparent transparent;
    border-width: 6px;
    transition: .1s ease-in-out all;
}


.mobile-nav li a:hover {
  color: var(--theme-main);
}

.mobile-nav .menu .current_page_item > a {
  /* color: ; */
}

.mobile-nav ul.submenu {
  background: transparent;
}

.responsive-nav {
    overflow: auto;
    background: transparent;
}

.mobile-nav .responsive-nav > .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    /* overflow: auto; */
}

.mobile-nav ul.accordion-menu > li {
    -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 0px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;

}

.mobile-nav ul.accordion-menu li {
  display: block;
  min-height: 60px;
}

.mobile-nav nav {
    text-align: center;
    position: relative;
    top: 50%;
    height: 70%;
    font-size:1.5em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }


/* Effects */
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0s 0.5s;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

/* .overlay-hugeinc nav {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.overlay-hugeinc nav ul {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
} */

@media screen and (max-height: 30.5em) {
  .mobile-nav nav {
    height: 80%;
  }
  .mobile-nav ul li {
    min-height: 34px;
  }
}

.mobile-nav .menu.medium-horizontal > li {
  display:block;
}



/* --------------------------------

STYLE SET 3: TITLES

-------------------------------- */

h1, h2, h3, h4, h5, h1 a.link-style, h2 a.link-style, h3 a.link-style {
  font-family: 'Signika Negative', sans-serif;
  font-weight: 600;
  color: var(--theme-black);
  margin-bottom: 0px;
  line-height: 1;
}
.alt h1, .alt h2, .alt h3, .alt h4, .alt h5,
h1.alt, h2.alt, h3.alt, h4.alt, h5.alt {
    color: var(--theme-white);
}

h2 {
    margin-bottom: 0.1em;
}

h2.section-title {
  margin-bottom: 20px;
}

@media screen and (min-width: 40em) {

    h1 {
        font-size: 3.6rem;
    }
    h2 {
        font-size: 3.2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 2.5rem;
    }
    h5 {
        font-size: 2rem;
    }
}
@media screen and (max-width: 39.9375em) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    h5 {
        font-size: 1.1rem;
    }
}




/* --------------------------------

STYLE SET 4: BUTTONS

-------------------------------- */

/* -------------------------
   LINKS - DEFAULT
------------------------- */
a {
    color: var(--theme-main);
    transition: .4s ease color;
}
a:hover {
    color: var(--theme-secondary);
}


.link-style a,
a.link-style {
  position: relative;
  color: var(--theme-grey);
  z-index: 2;
  padding: 3px;
  text-shadow: -1px -1px 0 var(--theme-white), 1px -1px 0 var(--theme-white), -1px 1px 0 var(--theme-white), 1px 1px 0 var(--theme-white);
  transition: .3s ease all;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;

}
.link-style a:before,
a.link-style:before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: -1px;
  right: -1px;
  height: 8px;
  border-radius: 10px;
  background: var(--theme-secondary);
  z-index: -1;
  transition: .3s ease background-color;
}
a:focus:before, a:active:before, a:hover:before {
  background: var(--theme-main);
}

.link-style a:hover,
a.link-style:hover {
    /* transform: scale(1.02); */
}

/* -- ios fix -- */
a[href^=tel] {
   text-decoration:inherit;
   color: inherit;
}

.link-style.cta a,
a.link-style.cta,
.nav-bar .menu li.link-style.cta a,
div div.wpforms-container-full button[type=submit]  {
    color: var(--theme-black);
    font-weight: 600;
    transition: .4s ease all;
}   
.link-style.cta a:before,
a.link-style.cta:before,
div div.wpforms-container-full button[type=submit]:before {
    content: '';
    position: absolute;
    background: url('/wp-content/images/darryll-lockyer-portfolio-developer-icon-round-squiggle-blue-2.svg');
    bottom: 0;
    left: 50%;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 200% auto;
    transform: translateX(-50%);
    height: 16px;
    width: 110px;
    z-index: -1;
    transition: .4s ease all;
    animation: squiggle infinite 3.4s linear;
    animation-play-state: paused;
}
.link-style.cta a:hover,
a.link-style.cta:hover,
div div.wpforms-container-full button[type=submit]:hover {
    transform: scale(1.05);
}
.link-style.cta a:hover:before,
a.link-style.cta:hover:before,
div div.wpforms-container-full button[type=submit]:hover:before {
    animation-play-state: running;
}



/* -------------------------
   BUTTONS
------------------------- */




/* --------------------------------

STYLE SET 5: PAGE STYLING

--------------------------------*/

/* -------------------------
   PAGE - HOME
------------------------- */

#hero {
    height: 100vh;
    margin-bottom: 5rem;
    padding-bottom: 3vw;
}

#hero h1 {
    width: 497px;
    white-space: nowrap;
    font-size: 4rem;
    position: relative;
    z-index: 2;
}
#hero .subtitle {
    font-size: .65em;
    margin-top: .3em;
    font-weight: 400;
}


#hero .hero-inner {
    position: relative;
    padding: 0;
}
#hero .hero-inner > .shape-1 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 182px 315.2px 182px;
    border-color: transparent transparent var(--theme-secondary) transparent;
    
    position: absolute;
    right: 76%;
    top: -130px;
    transform: rotateZ(15deg);
}
#hero .hero-inner > .shape-2 {
    height: 228px;
    width: 228px;
    border-radius: 50%;

    background-image: 
    radial-gradient(var(--theme-main) 15.8%, transparent 19.8%),
    radial-gradient(var(--theme-main) 15.8%, transparent 19.8%);
    background-position: 0px 0px, 17.5px 17.5px;
    background-size: 35px 35px;
    background-color: transparent;

    position: absolute;
    right: calc(80% + 50px);
    top: 80px;
}

#hero .hero-inner > .shape-3, 
#hero .hero-inner > .shape-4, 
#hero .hero-inner > .shape-5 {
    position: absolute;
    width: 21px;
    height: 5px;
    border-radius: 4px;
    background-color: var(--theme-main);
    transform: rotateZ(45deg);
    right: calc(100% + 138px);
}
#hero .hero-inner > .shape-3:after,
#hero .hero-inner > .shape-4:after,
#hero .hero-inner > .shape-5:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transform: rotateZ(90deg);
    background-color: var(--theme-main);
}
#hero .hero-inner > .shape-3 {
    top: -28px;
}
#hero .hero-inner > .shape-4 {
    top: 0;
} 
#hero .hero-inner > .shape-5 {
    top: 28px;
}
#hero .hero-inner > .shape-6 {
    height: 28px;
    transform: rotateZ(8deg);
    
    position: absolute;
    left: 21%;
    top: calc(100% + 20px);
    
}
#hero .hero-inner > .shape-7 {
    position: absolute;
    height: 291px;
    width: 291px;
    border-radius: 50%;

    background: var(--theme-main);
    mix-blend-mode: multiply;

    top: -34px;
    left: 95%;

}
#hero .hero-inner > .shape-8 {
    position: absolute;
    height: 230px;
    top: -74px;
    left: calc(95% - 80px);

}
#hero .hero-inner > .shape-9,
#hero .hero-inner > .shape-10 {
    position: absolute;
    height: 15px;
    transform: rotateZ(-45deg);
}
#hero .hero-inner > .shape-9 {
    top: 198px;
    left: calc(95% + 182px);
}
#hero .hero-inner > .shape-10 {
    top: 193px;
    left: calc(95% + 145px);
}

#hero .hero-inner > .shape-11 {
    position: absolute;
    height: 100px;
    right: calc(76% + 500px);
    top: 194%;
    mix-blend-mode: multiply;
}
#hero .hero-inner > .shape-12 {
    position: absolute;
    height: 38px;
    width: 38px;
    border-radius: 50%;

    background: var(--theme-secondary);

    top: -100px;
    right: calc(76% + 500px);

}
#hero .hero-inner > .shape-13 {
    position: absolute;
    height: 18px;
    width: 18px;
    border-radius: 50%;

    background: var(--theme-main);

    top: -200px;
    right: calc(76% + 330px);

}
#hero .hero-inner > .shape-14 {
    position: absolute;
    height: 31px;
    width: 31px;
    border-radius: 50%;

    background: var(--theme-main);

    top: calc(100% + 130px);
    left: calc(95% - 19px);

}
#hero .hero-inner > .shape-15 {
    position: absolute;
    height: 21px;
    width: 21px;
    border-radius: 50%;

    background: var(--theme-secondary);

    top: -180px;
    left: calc(95% + 141px);
}
#hero .hero-inner > .shape-16, 
#hero .hero-inner > .shape-17, 
#hero .hero-inner > .shape-18 {
    position: absolute;
    width: 21px;
    height: 5px;
    border-radius: 4px;
    background-color: var(--theme-main);
    right: calc(100% + 138px);
}
#hero .hero-inner > .shape-16:after,
#hero .hero-inner > .shape-17:after,
#hero .hero-inner > .shape-18:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transform: rotateZ(90deg);
    background-color: var(--theme-main);

}
#hero .hero-inner > .shape-16 {
    left: calc(113% + 141px);
    top: -120px;
}
#hero .hero-inner > .shape-17 {
    left: calc(113% + 161px);
    top: -100px;
}
#hero .hero-inner > .shape-18 {
    left: calc(113% + 181px);
    top: -80px;
}
#hero .hero-inner > .shape-19 {
    position: absolute;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 4px solid var(--theme-secondary);
    
    top: -90px;
    left: calc(95% + 461px);
}
#hero .hero-inner > .shape-20 {
    position: absolute;
    height: 31px;
    width: 31px;
    border-radius: 50%;
    background: var(--theme-main);
    
    top: 30px;
    left: calc(95% + 391px);
}
#hero .hero-inner > .shape-21 {
    position: absolute;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: var(--theme-main);
    
    top: 180px;
    left: calc(95% + 491px);
    mix-blend-mode: multiply;
}

.illustration-container {
    font-size: 10px;
}

#about {
    margin-top: -5rem;
}
#about .cta-container {
    margin: 1.5rem 0;
}

.about-me .illustration-container {
    padding-left: 9rem;
}
.about-me .illustration-inner {
    position: relative;
    height: 30em;
}
.about-me .illustration-container .illustration {
    position: absolute;
    width: 20em;
    transform: translate(50%, -56%);
    right: 15.4em;
    top: 50%;
}
.about-me .illustration-container .shape-1 {
    position: absolute;
    width: 35.4em;
    height: 35.4em;
    border: 2em solid var(--theme-main);
    mix-blend-mode: multiply;
    transform:  translate(-50%, -50%) rotateZ(45deg);
    transform-origin: center;
    right: -20em;
    top: 50%;
}

.about-me .illustration-container .shape-2 {
    position: absolute;
    height: 4.1em;
    width: 4.1em;
    border-radius: 50%;
    background: var(--theme-main);
    top: -8em;
    right: 38.3em;
}
.about-me .illustration-container .shape-3 {
    position: absolute;
    height: 2.8em;
    width: 2.8em;
    border-radius: 50%;
    background: var(--theme-secondary);
    bottom: -6em;
    right: 41.6em;
}
.about-me .illustration-container .shape-4 {
    position: absolute;
    width: 2.2em;
    right: .5em;
    top: 62%;
}
.about-me .illustration-container .shape-5 {
    position: absolute;
    width: 24.6em;
    top: 88%;
    right: 3.5em;
}
.about-me .illustration-container .shape-6 {
    position: absolute;
    width: 17.5em;
    top: -6em;
    right: 6.5em;
    transform: rotateZ(-8deg);
}
.about-me .illustration-container .shape-7 {
    position: absolute;
    height: 4.13em;
    width: 4.13em;
    border-radius: 50%;
    background: var(--theme-secondary);
    bottom: 100%;
    right: -3em;
}


.what-i-do-tiles {
    margin-top: 2rem;
}
.what-i-do-tiles .cell {
    padding: 2rem;
}
.what-i-do-tiles .image-container {
    height: 100px;
    width: 100px;
    border: 10px solid var(--theme-secondary);
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 1rem;
    position: relative;
}
.what-i-do-tiles .cell:nth-child(2) .image-container,
.what-i-do-tiles .cell:nth-child(4) .image-container,
.what-i-do-tiles .cell:nth-child(5) .image-container,
.what-i-do-tiles .cell:nth-child(7) .image-container {
    border-color: var(--theme-main)
}

.what-i-do-tiles .image-container img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    width: 80%;
    transform: translate(-50%, -50%);
}


.what-i-do-tiles .cell.rescue {
    cursor: pointer;
}
.what-i-do-tiles .cell.rescue .image-container {
    border-color: var(--theme-cta);
    position: relative;
}
.what-i-do-tiles .cell.rescue .subtitle {
    position: absolute;
    top: -20px;
    left: -30px;
    color: var(--theme-black);
    transform: rotateZ(-17.5deg);
    white-space:nowrap;

}

.what-i-do-tiles button {}
.what-i-do-tiles button .image-container img {
    transition: .4s ease all;
}
.what-i-do-tiles button:hover .image-container img {
    width: 90%;
}



.experience .illustration-container {
    padding-right: 9rem;
}
.experience .illustration-inner {
    position: relative;
    height: 30em;
}
.experience .illustration-container .illustration {
    position: absolute;
    width: 18em;
    transform: translate(50%, -59%);
    left: -3.5em; /*matches about-me */
    top: 50%;
}
.experience .shape-1 {
    position: absolute;
    width: 50em;
    mix-blend-mode: multiply;
    transform:  translate(50%, -50%);
    left: -37.5em;
    top: 54%;
}
.experience .shape-2 {
    position: absolute;
    width: 22.7em;
    left: -11em;
    top: 20%;
}
.experience .shape-3 {
    position: absolute;
    width: 8.7em;
    left: 11em;
    top: 26.7em;
}
.experience .shape-4 {
    position: absolute;
    transform: rotateZ(84deg);
    width: 13.5em;
    left: 27.4em;
    top: -3.2em;
}
.experience .shape-5 {
    position: absolute;
    height: 4.13em;
    width: 4.13em;
    border-radius: 50%;
    background: var(--theme-main);
    bottom: 114%;
    left: 0.34em;
}
.experience .shape-6 {
    position: absolute;
    height: 4em;
    width: 4em;
    border-radius: 50%;
    background: var(--theme-secondary);
    bottom: 145%;
    left: 12.8em;
}
.experience .shape-7 {
    position: absolute;
    height: 2.7em;
    width: 2.7em;
    border-radius: 50%;
    background: var(--theme-main);
    bottom: -4%;
    left: 29.1em;
}


.projects .portfolio-projects {
    margin: 2rem -1rem 0;
}
.projects .portfolio-projects > .grid-x {
    position: relative;
    left: -2rem;
}
.projects .portfolio-projects > .grid-x:nth-child(2n) {
    position: relative;
    left: 2rem;
}

.projects .tile {
    display: block;
    position: relative;
    margin: 1rem;
    border-radius: 10px;
    padding-top: 1.7rem;
    background: #eee;
    top: 0px;
    overflow: hidden;
    border: 2px solid #aaa;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
    transition: .6s ease top, .6s ease box-shadow;
}
.projects .tile.dark {
    background: #202023;
}
.projects .portfolio-projects a.tile:hover {
    transition-delay: 0s;
    top: -15px;
    -webkit-box-shadow: 0px 10px 22px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 10px 22px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 10px 22px 0px rgba(0,0,0,0.4);
}
.projects .tile:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 10px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--theme-main);
    -webkit-box-shadow: 15px 0 0 0 var(--theme-secondary), 30px 0 0 0 var(--theme-cta);
    -moz-box-shadow: 15px 0 0 0 var(--theme-secondary), 30px 0 0 0 var(--theme-cta);
    box-shadow: 15px 0 0 0 var(--theme-secondary), 30px 0 0 0 var(--theme-cta);
}

.projects .portfolio-projects .button {
    position: absolute;
    white-space: nowrap;
    bottom: 0;
    right: 0;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 4px;
    color: var(--theme-secondary);
    vertical-align: middle;
    font-size: 1.2rem;
    padding: .8rem 1.6rem;
        -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.1);
}
.projects .portfolio-projects .button svg {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    margin-left: .5rem;
}
.projects .portfolio-projects .button path {
    fill: var(--theme-secondary);
}

/* status tags */
/* .project-container a:after {
    position: absolute;
    top: 0;
    right: 0;
    padding: .4rem .8rem;
    font-size: .9rem;
    line-height: 1;
    font-weight: 900;
    color: #000000;
}
.project-container.live > a:after {
    content: 'LIVE';
    background: RGBA(117, 231, 140, 0.68)
}

.project-container > a.dark:after {
    color: #ffffff;
} */




.contact .illustration-container {
    padding-left: 9rem;
}
.contact .illustration-inner {
    position: relative;
    height: 30em;
}
.contact .illustration-container .illustration {
    position: absolute;
    width: 20em;
    transform: translate(-50%, -50%);
    right: -4.6em;
    top: 50%;
}
.contact .illustration-container .shape-1 {
    position: absolute;
    width: 43.4em;
    height: 43.4em;
    border: 2em solid var(--theme-main);
    border-radius: 50%;
    mix-blend-mode: multiply;
    transform:  translate(-50%, -50%);
    transform-origin: center;
    right: -28em;
    top: 50%;
}

.contact .illustration-container .shape-2 {
    position: absolute;
    height: 4.1em;
    width: 4.1em;
    border-radius: 50%;
    background: var(--theme-secondary);
    top: -11em;
    right: 31.3em;
}
.contact .illustration-container .shape-3 {
    position: absolute;
    height: 2.8em;
    width: 2.8em;
    border-radius: 50%;
    background: var(--theme-main);
    bottom: -6em;
    right: 35.1em;
}
.contact .illustration-container .shape-4 {
    position: absolute;
    height: 4.13em;
    width: 4.13em;
    border-radius: 50%;
    background: var(--theme-main);
    bottom: 105%;
    right: -10em;
}
.contact .illustration-container .shape-5 {
    position: absolute;
    width: 16.3em;
    bottom: 92%;
    right: -7.7em;
    transform: rotateZ(61deg);
}
.contact .illustration-container .shape-6 {
    position: absolute;
    width: 35.8em;
    top: 84%;
    right: -5.1em;
}
.contact .illustration-container .shape-7 {
    position: absolute;
    width: 7.6em;
    top: 21em;
    right: 29.6em;
}

.square-one {
    padding: 5rem 0;
}
.square-one h2 {
    font-size: 2rem;
}


/* --------------------------------

STYLE SET 6: CONTENT TYPES

-------------------------------- */

/* -------------------------
   CONTENT - Forms
------------------------- */

div .wpforms-container .wpforms-field {
    position: relative;
    padding: 0;
    margin: 15px 0;
    background: #e3e3e3;
    border-radius: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    transition: background-color .4s ease;
}
div .wpforms-container .wpforms-field:hover,
div .wpforms-container .wpforms-field:focus-within {
    background: #ddd;
}
div div.wpforms-container-full .wpforms-field-label {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-top: 15px;
    padding-left: 26px;
    margin-right: 0;
    color: var(--theme-black);
    font-size: 1.1rem;
}
div div.wpforms-container-full input[type=date],
div div.wpforms-container-full input[type=datetime],
div div.wpforms-container-full input[type=datetime-local],
div div.wpforms-container-full input[type=email],
div div.wpforms-container-full input[type=month],
div div.wpforms-container-full input[type=number],
div div.wpforms-container-full input[type=password],
div div.wpforms-container-full input[type=range],
div div.wpforms-container-full input[type=search],
div div.wpforms-container-full input[type=tel],
div div.wpforms-container-full input[type=text],
div div.wpforms-container-full input[type=time],
div div.wpforms-container-full input[type=url],
div div.wpforms-container-full input[type=week],
div div.wpforms-container-full select,
div div.wpforms-container-full textarea,
div div.wpforms-container-full input[type=date]:hover,
div div.wpforms-container-full input[type=datetime]:hover,
div div.wpforms-container-full input[type=datetime-local]:hover,
div div.wpforms-container-full input[type=email]:hover,
div div.wpforms-container-full input[type=month]:hover,
div div.wpforms-container-full input[type=number]:hover,
div div.wpforms-container-full input[type=password]:hover,
div div.wpforms-container-full input[type=range]:hover,
div div.wpforms-container-full input[type=search]:hover,
div div.wpforms-container-full input[type=tel]:hover,
div div.wpforms-container-full input[type=text]:hover,
div div.wpforms-container-full input[type=time]:hover,
div div.wpforms-container-full input[type=url]:hover,
div div.wpforms-container-full input[type=week]:hover,
div div.wpforms-container-full select:hover,
div div.wpforms-container-full textarea:hover,
div div.wpforms-container-full input[type=date]:focus,
div div.wpforms-container-full input[type=datetime]:focus,
div div.wpforms-container-full input[type=datetime-local]:focus,
div div.wpforms-container-full input[type=email]:focus,
div div.wpforms-container-full input[type=month]:focus,
div div.wpforms-container-full input[type=number]:focus,
div div.wpforms-container-full input[type=password]:focus,
div div.wpforms-container-full input[type=range]:focus,
div div.wpforms-container-full input[type=search]:focus,
div div.wpforms-container-full input[type=tel]:focus,
div div.wpforms-container-full input[type=text]:focus,
div div.wpforms-container-full input[type=time]:focus,
div div.wpforms-container-full input[type=url]:focus,
div div.wpforms-container-full input[type=week]:focus,
div div.wpforms-container-full select:focus,
div div.wpforms-container-full textarea:focus {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    background: none;
    border: none!important;
    outline: none;
    height: 50px;
    box-shadow: none!important;
    border-radius: 0 100px 100px 0;
    margin-left: 10px;
}

div div.wpforms-container-full .wpforms-form em.wpforms-error {
    position: absolute!important;
    top: -7px;
    left: -6px;
    padding: 0 0 0 1.5rem;
    margin: 0;
    color: transparent;
}

div div.wpforms-container-full .wpforms-required-label {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--theme-secondary);
}
div div.wpforms-container-full .wpforms-form em.wpforms-error:before {
    background-color: var(--theme-secondary);
    font-size: 
}
div div .wpforms-container .wpforms-field.wpforms-has-error {
    border: 2px solid var(--theme-secondary);
    overflow: visible!important;
}
div div.wpforms-container-full .wpforms-has-error .wpforms-required-label {
    opacity: 0;
    display:none;
}

div div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    text-align: center;
}
div div.wpforms-container-full button[type=submit],
div div.wpforms-container-full button[type=submit]:hover,
div div.wpforms-container-full button[type=submit]:focus,
div div.wpforms-container-full button[type=submit]:not(:hover):not(:active) {
    border-radius: 0;
    box-shadow: none;
    color: var(--theme-black);
    background: none;
    border: none;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

div div.wpforms-container-full button[type=submit]:after {

}

div div.wpforms-container-full .wpforms-confirmation-container-full,
div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
    background: transparent;
    border-color: transparent;
}



@keyframes squiggle {
    from {
        background-position: 0 center;
    }
    to {
        background-position: 89% center;
    }
}




/* -------------------------
   CONTENT - ACCORDION
------------------------- */

/* -------------------------
   CONTENT - TABS
------------------------- */




/* --------------------------------

STYLE SET 7: FORMS

-------------------------------- */



/* -------------------------
   FORMS - BASE STYLING
------------------------- */

.gform_wrapper form .gform_fields {}
.gform_wrapper form .gform_fields .gfield {
    margin-bottom: 1rem;
}
.gform_wrapper form .gform_fields .gfield input,
.gform_wrapper form .gform_fields .gfield textarea {
    padding: .7rem!important;
    height: auto;
    border: none;
    background: #f5f7f7;
    box-shadow: none;
    /* box-shadow: 0px 1px 8px 0 rgb(0 0 0 / 10%), 0 4px 10px 0 rgb(0 0 0 / 9%); */
    transition: .2s all ease-in-out;
    border-radius:6px;
    margin: 0;
}
.gform_wrapper form .gform_fields .gfield input:focus,
.gform_wrapper form .gform_fields .gfield textarea:focus {
    height: auto;
    border: none;
    background-color: #eff2f2;
    box-shadow: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color:#666666;
    opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color:#666666;
    opacity: 1;
}
input::placeholder,
textarea::placeholder {
    color:#666666;
    opacity: 1;
}



/* --------------------------------

STYLE SET 8: SIDEBARS

-------------------------------- */


/* -------------------------
   SIDEBAR - DEFAULT
------------------------- */



/* --------------------------------

STYLE SET 9: FOOTER

-------------------------------- */

.footer {
  margin-top: 6rem;
  padding: 2rem;
}

.footer .signage {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}
.footer .signage span {
    display: block;
    font-size: 2rem;
}
.footer .copyright {
    font-size: 1rem;
}

.footer p {
  margin:0;
}




/* --------------------------------

STYLE SET 10: WP JOINTS STYLING

-------------------------------- */

/* --------------------------------

STYLE SET 11: EXTENSION STYLES

-------------------------------- */

/* foundation fixes */
html.is-reveal-open {
    position: static;
    overflow-y: hidden!important;
}
html.is-reveal-open body {
    /* overflow-y: auto!important; */
}

.grecaptcha-badge {
    display: none!important;
}


/* -------------------------
   EXTENSION - GOOGLE MAPS
------------------------- */

/*# sourceMappingURL=style.css.map */


/* --------------------------------

STYLE SET 12: Animations

-------------------------------- */

/* base animations */

/* .animate-me,
.animate-me [class*="fade"] {
    transition: .8s ease opacity, 1s ease transform;
}

.animate-me.fade-in-up,
.animate-me .fade-in-up {
    opacity: 0;
    transform: translateY(100px);
}
.animate-me .fade-in-left,
.animate-me.fade-in-left {
    opacity: 0;
    transform: translateX(100px);
}

.animate-me.animation-trigger .fade-in-left,
.animate-me.animation-trigger .fade-in-up,
.animate-me.fade-in-left.animation-trigger,
.animate-me.fade-in-up.animation-trigger {
    opacity: 1;
    transform: translate(0, 0);
} */



/* header anims */
/* #hero {
    opacity: 0;
    animation: load-fade-in-up 1s ease .4s both;
}
.nav-bar {
    opacity: 0;
    animation: load-fade-in-down 1s ease .8s both;
}



@keyframes load-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(100px);
    } 
    80% {
        opacity: 1;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes load-fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-100px);
    } 
    80% {
        opacity: 1;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */


/* --------------------------------

STYLE SET 13: RESPONSIVE

-------------------------------- */


@media screen and (max-width: 1400px) {

    /* fonts */

    body {
        font-size: 1.3rem;
    }
    
    #hero h1 {
        font-size: 3.6rem;
    }

    .nav-bar .menu li a {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 2.5rem;
        margin-bottom: .2em;
    }
    h3 {
        font-size: 1.3rem;
    }


    /* hero */
    #hero {
        padding-bottom: 1vw;
    }
    #hero .hero-inner > .shape-11 {
        right: calc(76% + 380px);
        top: 228%;
        height: 85px;
    }
    #hero .hero-inner > .shape-12 {
        right: calc(76% + 480px);
    }
    #hero .hero-inner > .shape-13 {
        display: none;
    }
    #hero .hero-inner > .shape-15 {
        display: none;
    }
    #hero .hero-inner > .shape-21 {
        top: 300px;
        left: calc(95% + 341px);
    }
    #hero .hero-inner > .shape-20 {
        background: var(--theme-secondary)
    }

    /* skills */
    .what-i-do-tiles .cell {
        padding: 1.5rem;
    }
    .what-i-do-tiles .image-container {
        height: 90px;
        width: 90px;
    }

    /* work */
    .projects .portfolio-projects > .grid-x,
    .projects .portfolio-projects > .grid-x:nth-child(2n) {
        left: 0;
        right: 0;
    }


}



@media screen and (max-width: 1270px) {
    
    
    /* hero */
    #hero .hero-inner > .shape-12 {
        right: calc(76% + 340px);
    }
    #hero .hero-inner > .shape-11 {
        right: calc(76% + 320px);
        top: 246%;
    }
    #hero .hero-inner > .shape-21 {
        left: calc(95% + 281px);
    }
    
    
}


@media screen and (max-width: 1064px) {


    section {
        padding: 7rem 0 3rem;
    }
    #about {
        margin-top: -6rem;
    }

    .illustration-container {
        font-size: 7px;
    }

    .about-me .illustration-container,
    .contact .illustration-container {
        padding-right: 6vw;
    }

    .experience .illustration-container {
        padding-left: 6vw;
    }

}


@media screen and (max-width: 1023px) {

    .nav-bar .logo {
        font-size: 8px;
    }

    #hero h1 {
        font-size: 2.6rem;
        width: 377px;
    }
    #hero .hero-inner > .shape-6 {
        height: 19px; 
    }

    h2 {
        font-size: 2rem;
    }

    body {
        font-size: 1.2rem;
    }

    .about-me .illustration-container .shape-2 {
        right: 23vw;
    }
    .about-me .illustration-container .shape-3 {
        right: 28vw;
    }


}

@media screen and (max-width: 789px) {

    .nav-bar .logo  {
        font-size: 7px;
    }

    .mobile-nav .overlay-close {
        top: 49px;
        right: 27px;
    }

    .width-regular {
        max-width: 455px;
    }

    .square-one h2 {
        max-width: 637px;
    }

    .about-me .illustration-container,
    .contact .illustration-container {
        padding-right: 56px;
        padding-left: 0;
    }
    .experience .illustration-container {
        padding-right: 0;
        padding-left: 75px;
    }

    .split-section > .cell {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        text-align: center;
    }
    .split-section > .cell.illustration-container {
        padding-bottom: 14em;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .about-me .illustration-container .shape-2 {
        right: 34em;   
    }
    .about-me .illustration-container .shape-3 {
        right: 35.6em;
    }
    .about-me .illustration-container .shape-7 {
        right: -8em; 
    }



    .experience .shape-5 {
        bottom: 63%;
        left: -17.66em;
    }
    .experience .shape-6 {
        bottom: 72%;
        left: 43.8em;
    }


    .contact .illustration-container .shape-2 {
        top: -4em;
        right: 42.3em;
    }
    .contact .illustration-container .shape-3 {
        bottom: -7em;
        right: 36.1em;
    }
    .contact .illustration-container .shape-4 {
        bottom: 98%;
        right: -16em;
    }
    
}

@media screen and (max-width: 639px) {

    section {
        padding: 6rem 0 0;
    }
    
    .nav-bar {
        padding: 1rem;
    }
    #trigger-overlay {
        margin-right: 1rem;
    }
    .nav-bar .logo {
        font-size: 6px;
    }
    
    .mobile-nav .overlay-close {
        top: 32px;
    }

    #hero {
        max-height: 600px;
        margin-bottom: 2rem;
    }

    #hero .hero-inner {
        max-width: 91%;
        width: 100%;
        position: relative;
        height: 90px;
    }
    #hero .hero-inner h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    

    #hero .hero-inner > .shape-11,
    #hero .hero-inner > .shape-15,
    #hero .hero-inner > .shape-16,
    #hero .hero-inner > .shape-17,
    #hero .hero-inner > .shape-18,
    #hero .hero-inner > .shape-12 {
        display: none;
    }
    #hero .hero-inner > .shape-1 {
        border-width: 0 132px 243px 132px;
        right: 57%;
        top: -79px;
    }
    #hero .hero-inner > .shape-2 {
        height: 147px;
        width: 147px;
        right: calc(80% + 20px);
        top: 60px;
        background-position: 0px 0px, 10px 10px;
        background-size: 20px 20px;
    }
    #hero .hero-inner > .shape-3,
    #hero .hero-inner > .shape-4,
    #hero .hero-inner > .shape-5 {
        right: calc(100% + -5px);
    }
    #hero .hero-inner > .shape-3 {
        top: -48px;
    }
    #hero .hero-inner > .shape-4 {
        top: -18px;
    }
    #hero .hero-inner > .shape-5 {
        top: 12px;
    }
    #hero .hero-inner > .shape-7 {
        width: 170px;
        height: 170px;
        top: -24px;
        left: 72%;
    }
    #hero .hero-inner > .shape-8 {
        height: 123px;
        top: -64px;
        left: calc(95% - 100px);
    }
    #hero .hero-inner > .shape-9 {
        top: 95px;
        left: calc(97% + -38px);
    }
    #hero .hero-inner > .shape-10 {
        top: 115px;
        left: calc(97% + -24px);
    }
    #hero .hero-inner > .shape-14 {
        top: calc(100% + 100px);
        left: calc(95% - 89px);
    }
    #hero .hero-inner > .shape-19 {
        border-width: 6px;
        top: -120px;
        left: calc(95% + -46px);
    }
    #hero .hero-inner > .shape-20 {
        background: var(--theme-main);
        top: -130px;
        left: -8px;
    }
    
    .split-section > .cell.illustration-container {
        margin-top: 3rem;
    }
    .about-me .illustration-container, .contact .illustration-container, .experience .illustration-container {
        padding-right: 0;
        padding-left: 0;
        position: relative;
        font-size: 6px;
        height:300px;
    }
    .about-me .illustration-container .illustration-inner, .contact .illustration-container .illustration-inner, .experience .illustration-container .illustration-inner {
        position: absolute;
        width: 211px;
        left: calc(50% - 10px);
        transform: translateX(-50%);
    }
    .experience .illustration-container .illustration-inner {
        left: calc(50% + 22px);
        
    }

    .what-i-do-tiles {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .what-i-do-tiles .cell:nth-child(1n) .image-container {
        border-color: var(--theme-main);
    }
    .what-i-do-tiles .cell:nth-child(2) .image-container,
    .what-i-do-tiles .cell:nth-child(3) .image-container,
    .what-i-do-tiles .cell:nth-child(6) .image-container,
    .what-i-do-tiles .cell:nth-child(7) .image-container {
        border-color: var(--theme-secondary);
    }

    .what-i-do-tiles {
        margin-left:-3rem;
        margin-right:-3rem;
        max-width: none;
    }

    .square-one {
        padding: 3rem 2rem;
    }
    .square-one h2 {
        padding: 0;
    }

    .footer {
        margin-top: 0;
        padding-top: 1rem;
    }

}
