/* COPYRIGHT PEARCIRCUIT LLC */


/* COLORS */

:root {
    --pearcircuit-green: #3fc380;
    --pearcircuit-blue: #5081d8;
    --pearcircuit-light-blue: #56a8f8;
    --pearcircuit-red: #ea4e3d;
    --pearcircuit-white: white;
    --pearcircuit-light-grey-bg: #f1f1f7;
    --pearcircuit-medium-grey-bg: #f1f1f7;
    --pearcircuit-grey-text: #717274;
    --pearcircuit-dark-text: #413e4d;
    --pearcircuit-light-grey: #f5f5f5;
}


/* SITE WIDE */

body {
	background: var(--pearcircuit-green);
    overflow-x: hidden; 
}
p {
	font-family: 'Work Sans', sans-serif;
	line-height: 190%;
	font-size: 14px;
	color: var(--pearcircuit-grey-text);
}
span {
    font-family: 'Work Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6, .top-bar {
	font-family: 'Work Sans', sans-serif;
	font-weight: 300;
	color: var(--pearcircuit-grey-text);
}
h4, h5, h6 {
	-webkit-font-smoothing: antialiased;
	font-weight: 500;
}
h1, h2, h3 {
	font-weight: 500;
}
h4 {
	-webkit-font-smoothing: antialiased;
	font-weight: 600;
}
a {
    font-family: 'Work Sans', sans-serif;
}
input, select, textarea, label, textarea, form p {
	font-family: 'Work Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-weight: 300;
	color: var(--pearcircuit-grey-text);
}
input, select, textarea {
	font-weight: 400;
}
a.anchor {
	display: block; 
	position: relative; 
	top: -100px; 
	visibility: hidden;
}
.column {
	padding-left: 1rem;
	padding-right: 1rem;
}


/* MEDIA CLASSES */

@media only screen {
    .header-mobile-breakpoint-show {
        display: none;
    }
    .header-mobile-breakpoint-hide {
        display: block;
    }
    .logo-holder h1 {
        font-size: 18.5px;
    }
}
@media only screen and (min-width: 65em) { /* Medium and up screens */
    .header-mobile-breakpoint-show {
        display: block;
    }
    .header-mobile-breakpoint-hide {
        display: none;
    }
    .logo-holder h1 {
        font-size: 21px;
    }
}
@media only screen {
    .primary-header-footer {
        padding: 22px 7vw 22px 7vw;
        height: 76px;
    } 
}
@media only screen and (min-width: 30.563em) { /* Medium and up screens */
    .primary-header-footer {
        padding: 22px 7vw 22px 7vw;
        height: 76px;
    }
}
@media only screen and (min-width: 40.563em) { /* Medium-small and up screens */
    .primary-header-footer {
        padding: 22px 6vw 22px 6vw;
        height: 76px;
    }
}
@media only screen and (min-width: 57.563em) { /* Large and up screens */
    .primary-header-footer {
        padding: 22px 6vw 22px 6vw;
        height: 76px;
    }
}
@media only screen and (min-width: 75.563em) { /* Large and up screens */
    .primary-header-footer {
        padding: 22px 10vw 22px 10vw;
        height: 76px;
    }
}


/* HEADER CONTENT */

.header {
    width: 100%;
    z-index: 999;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.logo-holder h1 {
    font-weight: 700;
    text-transform: uppercase;
}
.logo-holder h1,
.scrolling-header .logo-holder h1,
.scrolling-header.dark-theme-header .logo-holder h1 {
    color: var(--pearcircuit-green);
}
.dark-theme-header .logo-holder h1 {
    color: var(--pearcircuit-white);
}
.scrolling-header .header {
    background-color: var(--pearcircuit-white);
    box-shadow: 0px 5px 20px rgba(0,0,0,0.14);
}
.header-container {
    position: relative; 
    z-index: 99; 
}
.header .logo {
    height: 100%;
}
.menu-link a,
.menu-link a:link,
.menu-link a:visited {
    font-family: 'Work Sans', sans-serif; 
    font-weight: 600; 
    font-size: 14px;
    color: var(--pearcircuit-grey-text);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    text-transform: uppercase;
}
.dark-theme-header .menu-link a,
.dark-theme-header .menu-link a:link,
.dark-theme-header .menu-link a:visited {
    color: var(--pearcircuit-white);
}
.scrolling-header.dark-theme-header .menu-link a,
.scrolling-header.dark-theme-header .menu-link a:link,
.scrolling-header.dark-theme-header .menu-link a:visited {
    color: var(--pearcircuit-grey-text);
}
.menu-link a img {
    width: 18px; 
    height: 18px; 
    margin: 7px 0px 0px 8px;
    float: right;
}
.nav-container {
    float: right;
}
.nav-item-container {
    text-align: center; 
    float: right;
    margin-top: 5px;
    cursor: pointer;
}
.nav-item-container h3 {
	font-size: 1.0rem;
	color: var(--pearcircuit-white);
	margin: 11px 0px 0px 12px;
    font-size: 16px;
    font-weight: 500;
}
.menu-link {
    position: relative;
}
.nav-container .menu-arrow-container {
    width: 18px; 
	height: 18px;
	margin-left: 3px;
	top: 3px;
    display: inline-block;
    position: relative;
}
.nav-container .menu-arrow {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.nav-container .menu-arrow.colored-open {
	background-image: url("/img/icons/menu-arrow-colored.png");
	background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    opacity: 1;
    width: 100%;
    height: 100%;
}
.nav-container .menu-arrow.colored-close {
    background-image: url("/img/icons/menu-arrow-open-colored.png");
	background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    opacity: 1;
    width: 100%;
    height: 100%;
}
.dark-theme-header .nav-container .menu-arrow.colored-open {
    background-image: url("/img/icons/menu-arrow.png");
}
.dark-theme-header .nav-container .menu-arrow.colored-close {
    background-image: url("/img/icons/menu-arrow-open.png");
}
.dark-theme-header.scrolling-header .nav-container .menu-arrow.colored-open {
    background-image: url("/img/icons/menu-arrow-colored.png");
}
.dark-theme-header.scrolling-header .nav-container .menu-arrow.colored-close {
    background-image: url("/img/icons/menu-arrow-open-colored.png");
}
.nav-container .menu-arrow.hide {
    opacity: 0;
}
.nav-item-holder {
    display: inline-block; 
    position: relative;
}
.nav-dropdown {
    position: absolute; 
    background-color: var(--pearcircuit-white); 
    min-width: 190px;
    box-shadow: 0px 3px 20px rgba(0,0,0,0.22);
    z-index: 99 !important;
    top: 40px;
    height: 0px;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 0px 12px 0px 12px;
}
.nav-dropdown.mobile {
    top: 73px;
    max-width: 415px;
    width: 86%;
}
.nav-dropdown.mobile.show {
    height: auto;
}
.nav-dropdown p {
    font-family: 'Work Sans', sans-serif;
    color: var(--pearcircuit-grey-text);
    font-weight: 500;
    font-size: 11.5px;
    padding: 16px 8px 0px 8px;
    margin-bottom: 7px;
    opacity: 0.6;
}
.nav-dropdown a {
    font-family: 'Work Sans', sans-serif;
    padding: 9px 10px 9px 10px; 
    border-radius: 3px;
    display: block;
    color: var(--pearcircuit-dark-text);
    background-color: var(--pearcircuit-white);
    font-size: 15px;
    font-weight: 500;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    min-width: 100%;
}
.nav-dropdown a:link,
.nav-dropdown a:visited {
    color: var(--pearcircuit-dark-text);
}
.nav-dropdown a:hover,
.nav-dropdown a.hovered {
    background-color: var(--pearcircuit-light-grey) !important;
}
.primary-header-footer {
    width: 100%; 
}
.primary-header-footer .logo-holder {
    float: left; 
    height: 100%;
    position: relative;
    margin-top: -2px;
}
.primary-header-footer .nav-container {
    float: right; 
    margin-top: -6px;
}
.portfolio-dropdown {
    width: 470px;
}
.show-portfolio-dropdown:hover .portfolio-dropdown,
.show-portfolio-dropdown:hover .portfolio-dropdown.hovered {
    height: 346px;
}
.show-why-liven-dropdown .not-hovered {
    height: 0px !important;
}


/* FOOTER CONTENT */

.footer {
    width: 100%;
    position: relative;
    z-index: 1;
}
#copyright-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--pearcircuit-grey-text);
    opacity: 0.7;
    margin-top: 10px;
}
.footer .logo-holder {
    float: left; 
    text-align: left;
    height: 100%;
}
.footer .nav-container {
    float: right; 
    margin-top: 1px;
}
.footer .logo {
    height: 100%;
}
.primary-footer {
    background-color: var(--pearcircuit-white);
    height: auto;
}
.secondary-footer {
    padding-top: 28px;
    padding-bottom: 28px;
    background-color: var(--pearcircuit-light-grey);
    height: auto;
}
.primary-footer p {
    color: var(--pearcircuit-grey-text);
    font-size: 14px;
    font-weight: 600;
    margin: 0px 0px 8px 0px;
}
.primary-footer ul {
    list-style: none;
    margin: 0px;
}
.primary-footer a {
    display: inline-block;
    padding: 8px 0px 8px 0px;
    font-size: 14px;
}
.primary-footer a,
.secondary-footer a {
    color: var(--pearcircuit-grey-text);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.primary-footer a:hover,
.secondary-footer a:hover {
    color: var(--pearcircuit-green);
}
.secondary-footer .social-container {
    padding: 0px;
}
.secondary-footer .links-container {
    padding: 0px;
}
.secondary-footer .links-container a {
    font-size: 14px;
    font-weight: 600;
}
.secondary-footer .social-container i {
    font-size: 22px;
}
.colored-footer-logo {
    width: 80px;
    height: auto;
}


/* GENERAL CONTENT */

.white-cta {
    background-color: var(--pearcircuit-green);
    color: var(--pearcircuit-white);
    margin-top: 12px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.dark-theme-header .white-cta {
    background-color: var(--pearcircuit-white);
}
.scrolling-header .white-cta {
    background-color: var(--pearcircuit-green);
}
.white-cta:hover,
.white-cta:disabled,
.white-cta:focus,
.scrolling-header.dark-theme-header .white-cta:hover,
.scrolling-header.dark-theme-header .white-cta:disabled,
.scrolling-header.dark-theme-header .white-cta:focus {
    box-shadow: 0px 5px 20px rgba(0,0,0,0.16);
    background-color: var(--pearcircuit-green);
}
.dark-theme-header .white-cta:hover,
.dark-theme-header .white-cta:disabled,
.dark-theme-header .white-cta:focus  {
    box-shadow: 0px 5px 20px rgba(0,0,0,0.16);
    background-color: var(--pearcircuit-white);
}
.green-text {
    color: var(--pearcircuit-white);
}
.dark-theme-header .green-text {
    color: var(--pearcircuit-green);
}
.scrolling-header .green-text {
    color: var(--pearcircuit-white);
}
.form-holder {
    margin-top: 40px;
}
.main-container {
    margin-top: 76px;
}
.full-width-row {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: initial;
 }
input:focus {
    outline: none;
    border: none !important;
}
button:focus {
    outline: none;
}
.navigation-link {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 15.5px;
    color: var(--pearcircuit-grey-text);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    white-space: nowrap;
}
.scrolling-header .navigation-link {
    color: var(--pearcircuit-grey-text);
}
.navigation-link:link,
.navigation-link a {
	color: var(--pearcircuit-grey-text);
}
.dark-theme-header .navigation-link:link,
.dark-theme-header .navigation-link a {
    color: var(--pearcircuit-white);
}
.scrolling-header .navigation-link:link,
.scrolling-header .navigation-link a {
	color: var(--pearcircuit-grey-text);
}
.navigation-link:visited,
.navigation-link a:visited {
    color: var(--pearcircuit-grey-text);
}
.dark-theme-header .navigation-link:visited,
.dark-theme-header .navigation-link a:visited {
    color: var(--pearcircuit-white);
}
.scrolling-header .navigation-link:visited,
.scrolling-header .navigation-link a:visited {
    color: var(--pearcircuit-grey-text);
}
.navigation-link:hover,
.navigation-link a:hover {
    color: var(--pearcircuit-dark-text);
    opacity: 1.0;
}
.scrolling-header .navigation-link:hover,
.scrolling-header .navigation-link a:hover {
    color: var(--pearcircuit-dark-text);
    opacity: 1.0;
}
button {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    height: 44px;
    margin-top: 0px;
    cursor: pointer;
    border-radius: 3px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    box-shadow: none;
}
.scrolling-header button {
    box-shadow: none;
}
.name h1 {
	font-family: 'Work Sans', sans-serif;
	padding-top: 1px;
	color: white;
	font-weight: 700;
	font-size: 20px !important;
}
#textpage {
	background: white;
	padding-top: 45px;
	padding-bottom: 0px;
	text-align: center;
}


/* HEADER SECTION */

#hero-skyline {
	background-color: white;
	padding-top: 70px;
	padding-bottom: 220px;
	text-align: center;
	background: url('../img/header/skyline.png') no-repeat center bottom;
}
#hero-skyline-alt {
	background-color: white;
	padding-top: 70px;
	padding-bottom: 200px;
	text-align: center;
	background: url('../img/header/skyline_2.png') no-repeat center bottom;
}
#hero-mountains {
	background-color: white;
	padding-top: 70px;
	padding-bottom: 200px;
	text-align: center;
	background: url('../img/header/skyline.png') no-repeat center bottom;
}
@media only screen {
	.skyline-position {
		background-size: 360% !important;
	}
}
@media only screen and (min-width: 40.0625em) {
	.skyline-position {
		background-size: cover !important;
	}
}
@media only screen and (min-width: 64.0625em) {
	.skyline-position {
		background-size: 100% !important;
	}
}


/* GENERAL CONTENT */

.sectionIcon {
	width: 30%;
	height: auto;
	padding-top: 40px;
	padding-bottom: 15px;
}
.smallSectionIcon {
	width: 18%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 10px;
}
.logoFieldlogo {
	width: 170px;
	display: inline;
	padding-top: 45px;
	padding-right: 27px;
	padding-left: 27px;
}
#heroLogo {
	width: 56px;
	height: auto;
	padding-bottom: 14px;
}
#infopageLogo {
	width: 110px;
	height: auto;
	padding-bottom: 20px;
}
a:link {
    color: var(--pearcircuit-green);
}
a:visited {
    color: var(--pearcircuit-green);
}
.fullWidth {
   width: 100%;
   margin-left: auto;
   margin-right: auto;
   max-width: initial;
}
.fullWidthfooter {
	width: 90%;
	margin-left: auto;
   margin-right: auto;
   max-width: initial;
}
.overcard {
	padding-top: 150px;
	background: white;
}
.industriescard {
	padding-top: 0px;
	padding-bottom: 50px;
	background-color: white;
	text-align: center;
}
.industriescard-dark {
    padding-top: 0px;
	padding-bottom: 50px;
	background-color: var(--pearcircuit-medium-grey-bg);
	text-align: center;
}
.partnerscard {
	padding-top: 70px;
	background: white;
}
.textcard {
	padding-top: 50px;
	line-height: 2.0em;
	background: white;
}
.textcard p {
    font-size: 15px;
}
.hostingcard {
	padding-top: 30px;
	line-height: 2.0em;
	background: white;
}
.overcardethos {
    padding-top: 20px;
    padding-bottom: 30px;
	margin-top:-10px;
	background: white;
}
.undercard {
	z-index: -1;
	background: var(--pearcircuit-white);
	padding-top: 50px;
	padding-bottom: 50px;
	color: white;
	text-align: center;
}
.circle {
	width: 40%;
	height: auto;
	margin: auto;
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
}


/* FOOTER CONTENT */

.footer a:link {
	color: var(--pearcircuit-grey-text);
}
.footer a:visited {
	color: var(--pearcircuit-grey-text);
}
.footer a:hover {
	color: var(--pearcircuit-green);
}
.footer a {
	line-height: 1.1em;
	font-weight: 400 !important;
}
.footer p {
	font-size: 0.90em;
	line-height: 0.95em;
	color: var(--pearcircuit-grey-text);
}
.subfooter p {
	font-size: 0.75em;
	line-height: 0.75em;
	color: var(--pearcircuit-grey-text);
}
.subfooter {
	background-color:var(--pearcircuit-light-grey-bg);
	padding-top: 27px;
	padding-bottom: 10px;
	text-align: center;
}
#ethos2, #services, #partnersText{
	text-align: center;
}
#text {
	text-align: left;
}
#hosting {
	text-align: center;
}
#top {
	position: absolute;
	top:-45px;
}
.undercard h2, .undercard h1, .undercard h4{
	color: var(--pearcircuit-grey-text);
}
.reasons {
    padding-left: 2%;
    padding-right: 2%;
}
.reasons p, #ethos2 p {
	font-size: 14px;
}
.projects p {
	font-size: 14px;
}
.centerText {
	text-align: center;
	padding-bottom: 4%;
}
.align {
	position: relative;
	top: 50%;
	transform: translateY(12.5%);
 	padding-top: 30px;
}
.footer {
	background-color:var(--pearcircuit-light-grey-bg);
	color: var(--pearcircuit-grey-text);
	padding: 30px 0px;
	-webkit-font-smoothing: antialiased !important;
}
.footer h6 {
	color: var(--pearcircuit-grey-text);
	font-weight: 700;
}
.footer i {
	color: var(--pearcircuit-grey-text);
}
.socialIcon {
	display: inline;
	width: 1.4vw;
	min-width: 20px;
	margin-right: 1.0vw;
	margin-top: 7px;
}
.fullWidthfooter .column {
	padding-top: 25px;
}


/* LIST STYLE */

ul.tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}
ul.tab li {
    float: left;
}
ul.tab li a {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}
ul.tab li a:hover {
    background-color: #ddd;
}
ul.tab li a:focus, .active {
    background-color: #ccc;
}


/* ANIMATION */

.floating {
    float: left;
    -webkit-animation-name: Floatingx;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: Floating;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    margin-left: 20px;
    margin-top: 5px;

}
@-webkit-keyframes Floatingx {
    from {-webkit-transform:translate(0, 0px);}
    65% {-webkit-transform:translate(0, 6px);}
    to {-webkit-transform: translate(0, -0px);}    
}
@-moz-keyframes Floating {
    from {-moz-transform:translate(0, 0px);}
    65% {-moz-transform:translate(0, 6px);}
    to {-moz-transform: translate(0, -0px);}    
}
.rolling {
    -webkit-animation-name: Rollingx;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
    -moz-animation-name: Rolling;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease-in-out;
	-moz-animation-fill-mode: forwards;
}
@-webkit-keyframes Rollingx {
    from {-webkit-transform:translate(0, 0px);}
    65% {-webkit-transform:translate(-50px, 0px);}
    to {-webkit-transform: translate(-50px, 0px);}    
}
@-moz-keyframes Rolling {
    from {-moz-transform:translate(0, 0px);}
    65% {-moz-transform:translate(-50px, 0px);}
    to {-moz-transform: translate(-50px, 0px);}    
}
.blinking-cursor {
  font-weight: 400;
  display: inline-block;
  position: relative;
  top: -5px;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}
@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: var(--pearcircuit-green);
  }
}
@-moz-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: var(--pearcircuit-green);
  }
}
@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: var(--pearcircuit-green);
  }
}
@-ms-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: var(--pearcircuit-green);
  }
}
@-o-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: var(--pearcircuit-green);
  }
}


/* BUTTONS */

.animate {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.action-button-large {
	position: relative;
	padding: 13px 60px;
  	margin: 0px auto 10px auto;
  	display: inline-block;
	border-radius: 3px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: white !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.action-button-large:hover,
.action-button:hover,
.action-button-email:hover,
.action-button-small:hover,
.action-button-small-header:hover {
    box-shadow: 0px 5px 20px rgba(0,0,0,0.16);
}
.action-button {
	position: relative;
	padding: 10px;
	width: 80%;
  	margin: 0px auto 10px auto;
  	display: inline-block;
	border-radius: 3px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: white !important;
	text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.action-button-small-header {
	position: relative;
	padding: 10px 20px;
	height: 40px;
  	margin: 0px auto 10px auto;
  	display: inline-block;
	border-radius: 3px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: white !important;
    text-decoration: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.action-button-small {
	position: relative;
	padding: 0px 20px;
	height: 40px;
  	margin: 0px auto 10px auto;
  	display: inline-block;
	border-radius: 3px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: white !important;
    text-decoration: none;
    padding-top: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.action-button-email {
	position: relative;
	padding: 7px 6px 8px;
	height: 50px;
	width: 52px;
  	margin: 0px auto 10px auto;
  	display: inline-block;
	border-radius: 50%;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 22px;
	color: white !important;
	text-decoration: none;
}
.green {
	background-color: var(--pearcircuit-green);
}
.blue {
	background-color: var(--pearcircuit-blue);
}
.red {
	background-color: var(--pearcircuit-red);
}
.white {
	color: var(--pearcircuit-green) !important;
	background-color: white;
}
.action-button.green:active,
.action-button-large.green:active,
.action-button-small.green:active,
.action-button-email.green:active {
	transform: translate(0px,5px);
  	-webkit-transform: translate(0px,5px);
  	-moz-transform: translate(0px,5px);
	-o-transform: translate(0px,5px);
	box-shadow: 0 1px 0 0 #2e9862;
}
.action-button.blue:active,
.action-button-large.blue:active,
.action-button-small.blue:active {
	transform: translate(0px,5px);
  	-webkit-transform: translate(0px,5px);
  	-moz-transform: translate(0px,5px);
	-o-transform: translate(0px,5px);
	box-shadow: 0 1px 0 0 #3c61a2;
}
.action-button.red:active,
.action-button-large.red:active,
.action-button-small.red:active {
	transform: translate(0px,5px);
  	-webkit-transform: translate(0px,5px);
  	-moz-transform: translate(0px,5px);
	-o-transform: translate(0px,5px);
	box-shadow: 0 1px 0 0 #aa392d;
}


/* INPUT CONTENT */

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    	#9ca0ac;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    	#9ca0ac;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    	#9ca0ac;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:   	#9ca0ac;
}
.formcard {
	padding-top: 50px;
	line-height: 2.0em;
}
.formcard fieldset {
	margin: 0;
  	padding: 0;
  	border: 0;
	position: relative;
}
.formcard input {
	font-family: 'Work Sans', sans-serif !important;
	font-weight: 400 !important;
	text-align: left;
	height: 60px;
	border-radius: 3px;
	border-color: white;
	font-size: 1.1em;
	display: block;
	padding: auto 16px;
	line-height: 1;
	outline: 0;
	transition: all 0.2s ease-in-out;
	box-shadow: none !important;
	color: var(--pearcircuit-grey-text);
}
.formcard input:focus,
.formcard input:active {
	background-color: white;
	outline: 0;
	box-shadow: none !important;
	border-color: white;
}
.formcard input[data-empty="false"],
.formcard input:valid,
.formcard input:focus {
	padding: 22px 16px 10px;
	outline: 0;
	box-shadow: none !important;
	border-color: white;
}
.formcard input[data-empty="false"] + label,
.formcard input:valid + label,
.formcard input:focus + label {
      color: var(--pearcircuit-green);
	  font-weight: 700 !important;
      font-size: 11.5px;
      transform: translate3d(0, -10px, 0);
	  border-color: white;
}
.formcard .no-animation input {
	font-family: 'Work Sans', sans-serif !important;
	text-align: left;
	height: 55px !important;
	border-radius: 6px;
	border-color: white;
	font-size: 1.3em !important;
	display: block;
	padding: 5px 3px 5px 16px !important;
	line-height: 1;
	outline: 0;
	box-shadow: none !important;
	color: var(--pearcircuit-grey-text);
}
.formcard .no-animation input:focus,
.formcard .no-animation input:active {
	background-color: white;
	outline: 0;
	box-shadow: none !important;
	border-color: white;
}
.formcard .no-animation input[data-empty="false"],
.formcard .no-animation input:valid,
.formcard .no-animation input:focus {
	padding: 5px 3px 5px 16px !important;
	outline: 0;
	box-shadow: none !important;
	border-color: white;
}
.formcard label {
	position: absolute;
	font-family: 'Work Sans', sans-serif !important;
	font-weight: 400 !important;
    top: 17px;
    left: 16px;
    color: #79878c;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease-in-out;
	cursor: text;
	font-size: 1.1em;
}
.formcard select {
	font-family: 'Work Sans', sans-serif !important;
	font-weight: 400 !important;
	font-size: 1.1rem !important;
	height: 60px !important;
	border-radius: 3px !important;
	background-color: white !important;
	cursor: pointer !important;
	border-color: white;
	padding-left: 14px !important;
	color: var(--pearcircuit-grey-text);
	outline: 0;
}
.formcard select:required:invalid {
  	color: #79878c;
	outline: 0;
}
.formcard option[value=""][disabled] {
  	display: none;
}
.formcard option {
	color: var(--pearcircuit-grey-text);
}
.formcard textarea {
	font-family: 'Work Sans', sans-serif !important;
	font-weight: 400 !important;
	font-size: 1.1rem !important;
	border-radius: 3px !important;
	padding-top: 12px;
	padding-left: 16px !important;
	color: var(--pearcircuit-grey-text) !important;
	border: none !important;
}
.formcard textarea:focus,
.formcard textarea:active {
	background-color: white;
	outline: 0;
	box-shadow: none !important;
	border-color: white;
}
.formcard textarea[data-empty="false"],
.formcard textarea:valid,
.formcard textarea:focus {
	padding: 24px 16px 10px;
	outline: 0;
	box-shadow: none !important;
	border-color: white;
}
.formcard textarea[data-empty="false"] + label,
.formcard textarea:valid + label,
.formcard textarea:focus + label {
      color: var(--pearcircuit-green);
	  font-weight: 700 !important;
      font-size: 11.5px;
      transform: translate3d(0, -11px, 0);
	  border-color: white;
}
.formcard .no-animation textarea {
	font-family: 'Work Sans', sans-serif !important;
	text-align: left;
	height: 55px !important;
	border-radius: 6px;
	border-color: white;
	font-size: 1.3em !important;
	display: block;
	padding: 5px 3px 5px 16px !important;
	line-height: 1;
	outline: 0;
	box-shadow: none !important;
	color: var(--pearcircuit-grey-text);
}
.formcard .no-animation textarea:focus,
.formcard .no-animation textarea:active {
	background-color: white;
	outline: 0;
	box-shadow: none !important;
	border-color: white;
}
.formcard .no-animation textarea[data-empty="false"],
.formcard .no-animation textarea:valid,
.formcard .no-animation textarea:focus {
	padding: 5px 3px 5px 16px !important;
	outline: 0;
	box-shadow: none !important;
	border-color: white;
}
.green-link {
    color: var(--pearcircuit-green) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.blue-link {
    color: var(--pearcircuit-blue) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.red-link {
    color: var(--pearcircuit-red) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.green-link:hover,
.blue-link:hover,
.red-link:hover {
    text-decoration: underline;
}
.portfolio-card-holder {
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}
.portfolio-card {
    box-shadow: 0px 5px 20px rgba(0,0,0,0.14);
    background-color: white;
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.portfolio-card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.portfolio-card .content {
    padding: 15px 15px 20px;
}
.portfolio-card .content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 12px;
}
.portfolio-card .content p {
    line-height: 170%;
    font-size: 13.5px;
    opacity: 0.7;
    margin-bottom: 13px;
}
.portfolio-card .content span,
.portfolio-page span {
    padding: 3px 9px 2px 9px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    display: inline-block;
    border-radius: 3px;
    margin-right: 0px;
}
.green-tag {
    background-color: var(--pearcircuit-green);
}
.blue-tag {
    background-color: var(--pearcircuit-blue);
}
.light-blue-tag {
    background-color: var(--pearcircuit-light-blue);
}
.portfolio-card:hover {
    box-shadow: 0px 5px 25px rgba(0,0,0,0.22);
}
.portfolio-row {
    background-color: #f7f7fc;
}
.devices-holder-hero {
    width: 829px;
    top: -150px;
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
    transform-origin: 100% 0;
    flex-wrap: wrap;
    pointer-events: none;
    position: absolute;
    display: flex;
}
.one-two-divider {
    height: 130px;
    background-color: var(--pearcircuit-light-grey-bg);
}
.two-three-divider {
    height: 230px;
    background-color: var(--pearcircuit-light-grey-bg);
}
.three-divider {
    height: 170px;
    background-color: white;
}
@media only screen {
    .devices-holder-hero {
        display: none;
    }
    .one-two-divider {
        display: none;
    }
    .two-three-divider {
        display: none;
    }
    .three-divider {
        display: none;
    }
}
@media only screen and (min-width: 40.000em) {
    .devices-holder-hero {
        left: 20%;
        display: flex;
    }
    .one-two-divider {
        display: block;
    }
    .two-three-divider {
        display: block;
    }
    .three-divider {
        display: block;
    }
    .devices-holder-hero.left {
        left: 15%;
    }
}
@media only screen and (min-width: 64.063em) {
    .devices-holder-hero {
        left: 20%;
        display: flex;
    }
    .one-two-divider {
        display: block;
    }
    .two-three-divider {
        display: block;
    }
    .three-divider {
        display: block;
    }
    .devices-holder-hero.left {
        left: 30%;
    }
}
.devices-holder-hero  div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 38px;
    background: #fff;
    -webkit-box-shadow: inset 0 4px 7px 1px #fff, inset 0 -5px 20px rgba(173,186,204,.25), 0 2px 6px rgba(0,21,64,.14), 0 10px 20px rgba(0,21,64,.08);
    box-shadow: inset 0 4px 7px 1px #fff, inset 0 -5px 20px rgba(173,186,204,.25), 0 2px 6px rgba(0,21,64,.14), 0 10px 20px rgba(0,21,64,.08);
}
.tablet-landscape {
    align-self: flex-end;
    margin-right: 50px;
    width: 650px;
    height: 446px;
}
.phone-large {
    display: flex;
    width: 267px;
    height: 553px;
}
.phone-small {
    order: 0;
    margin: 50px 50px 0 0;
    width: 225px;
    height: 467px;
}
.tablet-portrait {
    display: flex;
    width: 450px;
    height: 675px;
    margin-top: 50px;
}
.fyi-container {
    background-color: var(--pearcircuit-light-grey-bg);
    border-radius: 6px;
    padding: 16px 16px;
    margin-bottom: 35px;
    text-align: left;
}
.fyi-container p {
    margin: 0px;
}