/* CSS Resets */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior:smooth;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap:;
}

a {
  cursor: pointer;
  text-decoration: none;
}

#root, #__next {
  isolation: isolate;
}

/*------------------------------------*\
	DEFINE WEBSITE VARIABLES
\*------------------------------------*/
:root {
  --blue: #048DC3;
  --green: #02AC6E;
  --orange: #F28A31;
  --purple: #7D3ADA;
  --red: #DA3240;
  --light-color: #FFFFFF;
  --body-font: "sofia-pro", sans-serif;
	--body-font-color: #000000;
	--light-grey: #EEEEEE;
  --dark-grey: #333333;
  font-size: 10px;
}

#container {
	width: 100%;
	float: left;
	overflow: hidden;
}

.wrapper {
	width: 100%;
	float: left;
}

.modal {
  max-width: 1740px !important;
  padding: 60px !important;
}

/*------------------------------------*\
	HIDE MOBILE NAV
\*------------------------------------*/
#mobile-navigation {
    display:none;
}

#mobile-nav:not( .mm-menu ) {
    display: none;
}

.mm-menu {
    --mm-color-background: var(--dark-color);
    --mm-color-text: var(--light-color);
}

/*------------------------------------*\
	FORM RESETS
\*------------------------------------*/
form {
	width: 100%;
	float: left;
}

input, select, textarea {
	margin:0; padding:0; font-size:15px; outline:none;
	font-family:inherit;
	-moz-box-sizing:border-box; /* Firefox */
	-webkit-box-sizing:border-box; /* Safari */
	box-sizing:border-box;
	border-radius: none;
	-webkit-border-radius:0px;
}

.ie9 input[type="text"] { line-height:normal; } /* Get the stuff to line up right */

/*------------------------------------*\
	FORM ELEMENT STYLING
\*------------------------------------*/
label {
  display: block;
	margin: 18px 0 8px 0;
  font-size: 1.8rem;
	font-weight: 400;
}

label .asterisk {
  font-weight: 900;
  margin-left: 5px;
}

.indicates-required {
    font-size: 1.8rem;
    color: var(--body-font-color);
    font-weight: 900;
}

/* ------------  Inputs and textareas  ------------- */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	border: 1px solid var(--body-font-color);
	outline: medium none;
	margin: 6px 0px 10px;
	padding: 10px 8px;
	-webkit-appearance: none;
}

.ie9 input[type="text"] {
	line-height:normal;
} /* Get the stuff to line up right */

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	border: solid 1px var(--green);
}

.error {
    color: red;
    font-size: 16px;
}

input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 22px;
  height: 22px;
  border: 2px solid var(--body-font-color);
  border-radius: 4px;
  transform: translateY(-0.2px);
  display: inline-grid;
  place-content: center;
}

input[type="checkbox"]::before {
  content: "";
  width: 12px;
  height: 12px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

input[type="checkbox"]:focus {
  outline: 5px solid var(--light-grey);
}

/* ------------  Buttons & Submits  ------------  */
input[type="submit"],
input[type="button"],
button[type="submit"] {
	cursor: pointer;
  font-weight: 900;
	background: var(--blue);
  color: var(--light-color);
	display: inline-block;
  padding: 6px 20px 10px 20px;
	transition: all .4s linear;
	font-size: 1.8rem;
  margin-top: 18px;
  border-radius: 6px;
  transition: all .4s linear;
  border: none;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover {
  background: var(--red);
  border-radius: 0;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	margin: 0;
  font-family: var(--body-font);
	font-weight: 400;
	font-size: 2rem;
  line-height: 1.5;
	color: var(--body-font-color);
	background-color: var(--light-color);
}

p {
	margin: 16px 0;
}

p.narrow {
  max-width: 740px;
  margin: 16px auto;
}

p.narrow.left {
  margin: 16px 0;
}

a {
	text-decoration: none;
	color: var(--blue);
	cursor: pointer;
	transition: all .4s linear;
}

a:hover {
	color: var(--orange);
}

a.button {
  font-weight: 900;
	background: var(--blue);
  color: var(--light-color);
	display: inline-block;
  padding: 6px 20px 10px 20px;
	transition: all .4s linear;
	font-size: 1.8rem;
  margin-top: 18px;
  border-radius: 6px;
  transition: all .4s linear;
}

a:hover.button {
	background: var(--red);
  border-radius: 0;
}

h1, h2, h3, h4 {
	font-family: var(--body-font);
	font-weight: 700;
	line-height: 1.2;
  margin: 24px 0;
}

h1 {
	font-size: 5.2rem;
}

h2 {
	font-size: 4.2rem;
}

h2.features-title {
  margin-top: 0;
}

h3 {
	font-size: 3rem;
}

h4 {
	font-size: 2.6rem;
}

.content-area ul {
  margin: 12px 0;
  padding: 0;
}

.content-area ul li {
  list-style: none;
  background: url(../images/li-bg.png) no-repeat top left;
  padding: 0 0 8px 38px;
}

/*------------------------------------*\
	HERO SECTION
\*------------------------------------*/
.hero-top {
  width: 100%;
  padding: 32px 60px;
  overflow: hidden;
  background-color: inherit;
  top: -112px;
  transition: all .4s linear;
}

.hero-top.fixed {
  position: fixed;
  top: 0;
  background-color: var(--light-color);
  z-index: 9999999;
  border-bottom: 2px solid var(--body-font-color);
}

.hero-top .logo {
  float: left;
}

.hero-top .desktop-nav {
  float: left;
  margin-left: 62px;
}

.hero-top .desktop-nav ul,
.hero-top .desktop-nav ul li {
	margin: 0;
	padding: 0;
}

.hero-top .desktop-nav ul li {
	list-style: none;
	display: inline-block;
	position: relative;
}

.hero-top .desktop-nav ul li a {
  color: var(--body-font-color);
  font-weight: 600;
  overflow: hidden;
  display: block;
	position: relative;
	padding: 0 0 4px 0;
  margin-right: 30px;
}

.hero-top .desktop-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--body-font-color);
	opacity 1;
	transition: transform 300ms;
  transform: translate3d(-100%, 0, 0);
}

.hero-top .desktop-nav ul li a:hover::after,
.hero-top .desktop-nav ul li a:focus::after,
.hero-top .desktop-nav ul li.active a::after {
  transform: translate3d(0, 0, 0);
}

.hero-top .desktop-nav ul li.active a::after {
  background-color: var(--red);
}

.hero-top .desktop-nav ul li.active a {
  color: var(--red);
}

.mobile-navigation-show-wrapper {
    display: none;
}

.mobile-navigation-show-wrapper a.simple-menu {
    color: var(--body-font-color);
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 999999;
    font-size: 1.5rem;
    font-weight: 700;

}

.hamburger .nav-line{
    width: 30px;
    height: 3px;
    background-color: var(--body-font-color);
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover{
    cursor: pointer;
}

body.mm-wrapper--opened .hamburger {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.mm-wrapper--opened .hamburger .nav-line:nth-child(2){
    width: 0px;
}

body.mm-wrapper--opened .hamburger .nav-line:nth-child(1),
body.mm-wrapper--opened .hamburger .nav-line:nth-child(3){
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

body.mm-wrapper--opened .hamburger .nav-line:nth-child(1) {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}

body.mm-wrapper--opened .hamburger .nav-line:nth-child(3){
    -webkit-transform: translateY(-8px) rotate(90deg);
    -ms-transform: translateY(-8px) rotate(90deg);
    -o-transform: translateY(-8px) rotate(90deg);
    transform: translateY(-8px) rotate(90deg);
}

nav#mobile-nav ul li a {
    color: var(--body-font-color);
    font-weight: 600;
    transition: color .8s linear;
}

nav#mobile-nav ul li a:hover,
nav#mobile-nav ul li a.active,
nav#mobile-nav ul li.active a {
    color: var(--red);
}

nav#mobile-nav ul li a.mm-subclose,
nav#mobile-nav ul li a:hover.mm-subclose {
    color: var(--blue);
}

.hero-top .hero-cta {
  float: right;
}

.hero-top .hero-cta a.button {
  margin: 0;
}

.hero-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 62px 60px;
  overflow: hidden;
}

.hero-body-copy {
  font-size: 2rem;
  width: 48%;
  float: left;
}

.hero-body-copy h1 {
  font-size: 5.2rem;
}

.hero-body-copy h2 {
	font-size: 3.2rem;
}

.hero-body-image {
  width: 48%;
  margin-left: 4%;
  float: left;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-body-image img {
  width: 100%;
  position: absolute;
  left: 0;
}

.hero-body-image img.placeholder {
  position: relative;
}

.content-area {
  max-width: 1280px;
  margin: 0 auto;
  padding: 62px 60px;
  overflow: hidden;
}

.hero-body-copy.right {
  float: right;
}

.hero-body-copy.large {
  width: 68%;
}

.hero-body-image.left {
  margin-left: 0;
  margin-right: 4%;
}

.hero-body-image.small {
  width: 28%;
}

/*------------------------------------*\
	SCROLLING STAT STYLING
\*------------------------------------*/
#stats .content-area {
  padding-top:0;
}

.stat {
  width: 33.33%;
  float: left;
  color: var(--body-font-color);
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-top: 46px;
  padding: 46px 1% 0 1%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat .stat-info .info {
  margin-top: 32px;
  font-size: 2.2rem;
  line-height: 1.2;
}

.stat .stat-image {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}

/*------------------------------------*\
	LOGO SECTION
\*------------------------------------*/
#logo-wrapper {
  text-align: center;
}

.carousel-partners {
  margin-top: 42px;
}

.logo-listing {
  line-height: 90px;
  filter: grayscale(100%);
}

/*------------------------------------*\
	FEATURES SECTION
\*------------------------------------*/
#features h2:after {
  width: 43px;
  height: 43px;
  background-image: url(../images/stars.svg);
  content:"";
  display:inline-block;
}

#features .content-area .features-inner .features-listing .features-copy {
  width: 46%;
  margin-right: 4%;
  float: left;
}

#features .content-area .features-inner .features-listing .features-image {
  width: 50%;
  float: left;
}

/*------------------------------------*\
	TESTIMONIALS SECTION
\*------------------------------------*/
#testimonials .content-area .testimonial-inner {
  position: relative;
  color: var(--light-color);
  padding: 72px 72px 52px 72px;
}

#testimonials .content-area .testimonial-clip {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--body-font-color);
  clip-path: polygon(5% 22%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

#testimonials .content-area .testimonial-inner .testimonial-listing {
  display: flex;
  padding-bottom: 72px;
}

#testimonials .content-area .testimonial-inner .testimonial-listing .testimonial-image {
  aspect-ratio: 1 / 1;
  flex: 0 0 320px;
  height: 320px;
}

#testimonials .content-area .testimonial-inner .testimonial-listing .testimonial-copy {
  margin-left: 52px;
  font-size: 2.2rem;
  padding-top: 24px;
}

#testimonials .content-area .testimonial-inner .testimonial-copy-quotes {
  position: absolute;
  top: 42px;
  left: 420px;
}

#testimonials .content-area .testimonial-inner .testimonial-listing .testimonial-copy .testimonial-copy-name {
  font-weight: 700;
  font-size: 1.8rem;
}

/*------------------------------------*\
	PORTFOLIO SECTION
\*------------------------------------*/
#our-work .content-area {
  max-width: 1360px;
  padding: 60px 100px;
}

.portfolio {
  margin-top: 42px;
}

.portfolio.content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio-listing {
  position: relative;
}

.portfolio.content .portfolio-listing {
    flex-basis: 31.33%;
    float: left;
    margin: 1%;
    text-align: center;
    outline: solid 1px var(--dark-grey);
}

.portfolio-image img {
  width: 100%;
  float: left;
}

.portfolio.owl-carousel .portfolio-image img {
  border: solid 1px var(--dark-grey);
}

.portfolio-overlay {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 14px 12px;
}

.portfolio-overlay img {
  width: 100%;
}

/*------------------------------------*\
	CONTACT SECTION
\*------------------------------------*/
#contact form {
  max-width: 600px;
  border: 2px solid var(--body-font-color);
  padding: 32px 42px;
  margin: 62px auto 0 auto;
  float: none;
  position: relative;
  background-color: var(--light-color);
}

#contact form:before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 12px;
  left: -12px;
  right: 12px;
  bottom: -12px;
  border: 2px solid var(--body-font-color);
}

#contact form .form-top-bg {
  position: absolute;
  right: -32px;
  top: -32px;
}

#contact form .form-bottom-bg {
  position: absolute;
  left: -44px;
  bottom: -44px;
}

#contact form .form-arrow-left {
  position: absolute;
  left: -240px;
}

#contact form .form-arrow-right {
  position: absolute;
  right: -240px;
}

#form {
  width: 100%;
  float: left;
  height: 1px;
}

.email,
.phone,
.address {
  font-size: 2.6rem;
  margin: 18px 0;
}

.address {
  margin-bottom: 32px;
}

.form {
  margin: 18px 0;
  overflow: hidden;
  font-size: 2.6rem;
}

.form span.title {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
}

.legals {
  font-size: 1.8rem;
  margin-top: 62px;
}

/*------------------------------------*\
	LP Features
\*------------------------------------*/
.feature-listing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 2%;
  justify-content: center;
}

.feature {
  width: 31.33%;
  flex-basis: 31.33%;
  margin-bottom: 2%;
}

/*------------------------------------*\
	LP Audience
\*------------------------------------*/
.audience-listing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 2%;
  justify-content: center;
}

.audience {
  width: 31.33%;
  flex-basis: 31.33%;
  margin-bottom: 2%;
}

.audience .audience-image {
  z-index: 1;
  position: relative;
}

.audience .audience-info {
  outline: solid 2px var(--dark-grey);
  padding: 42px 12px 32px 12px;
  margin-top: -32px;
}

/*------------------------------------*\
	CONTACT SECTION
\*------------------------------------*/
#footer-wrapper {
    width: 100%;
    padding: 72px 60px;
    float: left;
    font-size: 1.8rem;
    border-top: 2px solid var(--body-font-color);
    margin-top: 72px;
    font-weight: 600;
}

.footer-copyright {
    float: left;
}

.footer-menu {
    float: right;
}

.footer-menu ul,
.footer-menu ul li {
    margin: 0;
    padding: 0;
}

.footer-menu ul li {
    list-style: none;
    display: inline;
    position: relative;
}

.footer-menu ul li a {
    margin-left: 24px;
    text-decoration: none;
    color: var(--body-font-color);
}

.footer-menu ul li a:hover {
    color: var(--blue);
}

#mobile-cta {
  display: none;
}

/*------------------------------------*\
	FEATURES
\*------------------------------------*/

#cog-wrapper {
  margin: 0;
}

#cog-wrapper .content-area {
  max-width: 380px;
  padding: 0;
  position: relative;
}

#cog-wrapper .content-area img {
  width: 100%;
  float: left;
}

#cog-wrapper .content-area .cog-1 {
  width: 68%;
  position: absolute;
  top: 0;
  left: 0;
}

#cog-wrapper .content-area .cog-arrow-1 {
  width: 10%;
  position: absolute;
  top: 11%;
  left: 65%;
}

#cog-wrapper .content-area .cog-2 {
  width: 30%;
  position: absolute;
  top: 34%;
  left: 68%;
}

#cog-wrapper .content-area .cog-arrow-2 {
  width: 15%;
  position: absolute;
  top: 62%;
  left: 80%;
}

#cog-wrapper .content-area .cog-3 {
  width: 44%;
  position: absolute;
  top: 58%;
  left: 38%;
}

#cog-wrapper .content-area .cog-arrow-3 {
  width: 10%;
  position: absolute;
  top: 64%;
  left: 32%;
}

#cog-wrapper .content-area .cog-arrow-3 {
  width: 10%;
  position: absolute;
  top: 64%;
  left: 32%;
}

#cog-wrapper .content-area .cog-notes {
  width: 15%;
  position: absolute;
  top: 14%;
  left: 85%;
}

#cog-wrapper .content-area .cog-stars {
  width: 15%;
  position: absolute;
  top: 65%;
  left: 12%;
}

.feature-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 60px;
  position: relative;
  display: flex;
}

.feature-body-copy {
  font-size: 2rem;
  width: 48%;
  float: left;
}

.feature-body-copy h2 {
	font-size: 3.2rem;
}

.feature-body-image {
  width: 48%;
  margin-left: 4%;
  float: left;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cog-divider {
  position: absolute;
  left: -24px;
  bottom: -52px;
}

/*------------------------------------*\
	BLOG
\*------------------------------------*/

#blog .content-area {
  max-width: 880px;
}

.blog-listing {
  display: flex;
  border-top: solid 1px var(--light-grey);
  margin-top: 24px;
  padding-top: 12px;
}

.blog-image {
    aspect-ratio: 1 / 1;
    flex: 0 0 200px;
    height: 200px;
    margin: 24px 24px 0 0;
}

.blog-title {
  font-weight: 700;
  font-size: 2.5rem;
}

.blog-title a {
  color: var(--body-font-color);
}

.blog-intro {
  font-size: 1.8rem;
}

.blog-date {
  font-size: 1.6rem;
}

/*------------------------------
   PAGINATION
-------------------------------*/
#pagination {
	width: 100%;
	float: left;
  margin-top: 52px;
}

#pagination.our-work {
	text-align: center;
}

#pagination ul {
	list-style: none;
	margin: 0;
  padding: 0;
}

#pagination ul li {
	display: inline-block;
	margin: 0 3px 3px 0;
	padding: 0;
	border: none;
	background: none;
}

#pagination ul li a {
	display: inline-block;
	color: var(--body-font-color);
  width: 36px;
  height: 36px;
  text-align: center;
}

#pagination ul li a.active,
#pagination ul li a:hover {
	border: solid 1px var(--body-font-color);
}

#pagination ul li a.page-previous,
#pagination ul li a.page-next,
#pagination ul li a.page-last,
#pagination ul li a.page-first {
	color: var(--body-font-color);
  font-weight: 700;
	background: none;
	border: none;
  width: inherit;
}

#pagination ul li a:hover.page-previous,
#pagination ul li a:hover.page-next,
#pagination ul li a:hover.page-last,
#pagination ul li a:hover.page-first {
	color: var(--body-font-color);
	background: none;
	border: none;
}

/*------------------------------------*\
	ENTRY NAVIGATION
\*------------------------------------*/
.entry-navigation {
	text-align: center;
  margin-top: 52px;
}

.cs-item-wrapper .entry-navigation {
	padding: 0 20px;
}

.entry-navigation a.backtoall {
	width: 60px;
	height: 60px;
	text-indent: -9999px;
	background: url(../images/backtoall_bg.png) no-repeat center top;
	display: inline-block;
	overflow: hidden;
	margin-top: 14px;
  transition: none;
}

.entry-navigation a:hover.backtoall {
	background: url(../images/backtoall_bg.png) no-repeat center bottom;
}

.entry-navigation a.preventry,
.entry-navigation a.nextentry {
	height: 14px;
	line-height: 14px;
	background: url(../images/prev_entry_bg.png) no-repeat left top;
	display: inline-block;
	float: left;
	margin-top: 32px;
	font-weight: 700;
  color: var(--body-font-color);
  transition: none;
}

.entry-navigation a.preventry {
	padding-left: 38px;
}

.entry-navigation a.nextentry {
	background: url(../images/next_entry_bg.png) no-repeat right top;
	float: right;
	padding-right: 38px;
}

.entry-navigation a:hover.preventry,
.entry-navigation a:hover.nextentry {
	background: url(../images/prev_entry_bg.png) no-repeat left bottom;
	color: var(--red);
}

.entry-navigation a:hover.nextentry {
	background: url(../images/next_entry_bg.png) no-repeat right bottom;
}

@media only screen and (max-width:1279px) {
  .desktop-nav {
    display: none;
  }

  .mobile-navigation-show-wrapper {
    display: inherit;
    position: absolute;
    right: 60px;
    top: 26px;
  }

  .hero-cta {
    margin-right: 68px;
  }

  #features .content-area .features-inner .features-listing .features-copy {
    width: 100%;
    margin-right: 0;
    margin-bottom: 18px;
  }

  #features .content-area .features-inner .features-listing .features-image {
    width: 50%;
    float: none;
    margin: 0 auto;
  }

  .feature {
    width: 48.33%;
    flex-basis: 48.33%;
    margin-bottom: 2%;
  }

  .footer-copyright,
  .footer-menu {
      float: left;
      width: 100%;
      text-align: center;
      margin-bottom: 42px;
  }

  .footer-menu {
      margin-bottom: 0;
  }

  .footer-menu ul li a {
      margin-left: 0;
      width: 100%;
      display: block;
      margin-top: 12px;
  }

}

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

  .hero-body-copy {
    width: 100%;
  }

  .hero-body-copy.large {
    width: 100%;
  }

  .hero-body-copy.right {
    float: left;
  }

  .hero-body-image {
    width: 100%;
    margin-left: 0;
    margin-top: 6%;
  }

  .hero-body-image.left {
    width: 100%;
    margin-right: 0;
  }

  .stat {
    width: 100%;
    padding: 46px 32px 0 32px;
    margin-bottom: 52px;
  }

  .stat .info {
    margin-top: 18px;
  }

  .stat .stat-image {
    left: 0;
  }

  #testimonials .content-area .testimonial-inner .testimonial-copy-quotes {
    display: none;
  }

  #testimonials .content-area .testimonial-inner {
    padding: 72px 42px 52px 42px;
  }

  #testimonials .content-area .testimonial-inner .testimonial-listing {
    display: inherit;
  }

  #testimonials .content-area .testimonial-inner .testimonial-listing .testimonial-image {
    flex: auto;
    margin: 0 auto;
  }

  #testimonials .content-area .testimonial-inner .testimonial-listing .testimonial-copy {
    margin-left: 32px;
    padding-top: 24px;
  }

  #cog-wrapper {
    margin: 0;
  }

  .feature-body {
    display: inherit;
  }

  .feature-body-copy {
    width: 100%;
  }

  .feature-body-image {
    width: 100%;
    margin-left: 0;
    display: inherit;
  }

  .portfolio.content .portfolio-listing {
      flex-basis: 46%;
      margin: 2%;
  }

  .audience-listing {
    column-gap: 0;
  }

  .audience {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 4%;
  }

}

@media only screen and (max-width:900px) {
  .form-arrow-right,
  .form-arrow-left {
    display: none;
  }
}

@media only screen and (max-width:767px) {
  #features h2:after {
    display: none;
  }

  #features .content-area .features-inner .features-listing .features-image {
    width: 100%;
  }

  .feature-listing {
    column-gap: 0;
  }

  .feature {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 4%;
  }

}

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

  h1,
  .hero-body-copy h1 {
  	font-size: 4.4rem;
  }

  h2,
  .hero-body-copy h2 {
  	font-size: 3.2rem;
  }

  h2.features-title {
    margin-top: 12px;
  }

  h3 {
  	font-size: 2.8rem;
  }

  h4 {
  	font-size: 2.4rem;
  }

  .hero-top {
    padding: 32px;
    overflow: hidden;
  }

  .hero-top.fixed {
    padding: 20px 32px;
  }

  .hero-cta {
    display: none;
  }

  .mobile-navigation-show-wrapper {
    display: inherit;
    position: absolute;
    right: 32px;
    top: 26px;
  }

  .hero-top.fixed .mobile-navigation-show-wrapper {
    top: 14px;
  }

  .hero-body {
    padding: 42px 32px;
  }

  .hero-body-image {
    margin-top: 42px;
  }

  .content-area {
    padding: 42px 32px;
    overflow: hidden;
  }

  #testimonials .content-area .testimonial-inner {
    padding: 72px 22px 52px 22px;
  }

  #testimonials .content-area .testimonial-inner .testimonial-listing .testimonial-image {
    flex: auto;
    margin: 0 auto;
    aspect-ratio: inherit;
    text-align: center;
  }

  .feature-body {
    padding: 52px 32px;
  }

  #our-work .content-area {
    padding: 60px 32px;
  }

  #footer-wrapper {
    padding: 52px 32px 92px 32px;
    margin-top: 52px;
  }

  .blog-image {
    flex: 0 0 120px;
    height: 120px;
    margin: 18px 18px 0 0;
  }

  #mobile-cta {
    display: inherit;
    width: 100%;
    position: fixed;
    bottom: -50px;
    z-index: 99999;
    transition: bottom .4s linear;
    text-align: center;
  }

  #mobile-cta .button {
    width: 100%;
    display: block;
    border-radius: 0;
  }

  #mobile-cta.fixed {
    bottom: 0;
  }

}

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

  h1,
  .hero-body-copy h1 {
  	font-size: 3.8rem;
  }

  h2,
  .hero-body-copy h2 {
  	font-size: 3.2rem;
  }

  #testimonials .content-area .testimonial-inner .testimonial-listing .testimonial-image {
    height: auto;
  }

  #testimonials .content-area .testimonial-inner .testimonial-listing .testimonial-copy {
    margin-left: 20px;
    padding-top: 12px;
  }

  #testimonials .content-area .testimonial-clip {
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }


  .blog-listing {
    display: inline-block;
    border-top: none;
  }

  .blog-image {
    flex: none;
    height: auto;
    margin: 0 0 24px 0;
    width: 100%;
    aspect-ratio: inherit;
  }

  #contact form {
    padding: 32px 22px;
  }

  .portfolio.content .portfolio-listing {
      flex-basis: 92%;
      margin: 4%;
  }

  #cog-wrapper {
      margin: 0 15%;
      width: 70%;
  }

}
