/* 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 {
  --pink: #F227BC;
  --dark-pink: #a41c80;
  --light-blue: #26DCF2;
  --purple: #5D0992;
  --dark-purple: #340454;
  --light-color: #FFFFFF;
  --body-font: "sofia-pro", sans-serif;
	--body-font-color: #000000;
	--light-grey: #BFBFBF;
  --dark-grey: #666666;
  font-size: 10px;
}

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

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

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

@-webkit-keyframes animate-gradient-bg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes animate-gradient-bg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*------------------------------------*\
	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 {
	margin: 12px 0;
  font-size: 2rem;
	font-weight: 400;
}

/* ------------  Inputs and textareas  ------------- */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	border: 2px solid var(--dark-grey);
	outline: medium none;
	margin: 6px 0px 10px;
	padding: 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 2px var(--light-blue);
}

.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"] {
	font-family: var(--body-font);
	font-weight: 900;
	font-size: 2.8rem;
	color: var(--pink);
	-webkit-transition: color .4s linear;
	-moz-transition: color .4s linear;
	-o-transition: color .4s linear;
	transition: color .4s linear;
  padding: 6px 20px 8px 20px;
	cursor: pointer;
	background: none;
	border: none;
  outline: solid 3px var(--pink);
  margin-top: 18px;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover {
	color: var(--purple);
  outline: solid 3px var(--purple);
}

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

p {
	margin: 16px 0;
}

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

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

a.button {
  font-weight: 900;
	color: var(--pink);
	display: inline-block;
  padding: 6px 20px 8px 20px;
  outline: solid 3px var(--pink);
	transition: all .4s linear;
	font-size: 2.8rem;
  margin-top: 18px;
}

a:hover.button {
	color: var(--purple);
  outline: solid 3px var(--purple);
}

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

h1 {
	font-size: 6rem;
}

h2 {
	font-size: 4.2rem;
}

h3 {
	font-size: 3rem;
}

h4 {
	font-size: 2.6rem;
}

h1:after,
h2:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f45c";
  font-size: 1rem;
  margin-left: 5px;
}

h2:after {
  font-size: 0.8rem;
}

/*------------------------------------*\
	HERO SECTION
\*------------------------------------*/
#hero-wrapper {
  background: url(../images/hero-bg-grid.png) center center;
  position: relative;
  overflow: hidden;
}

.hero-top {
    position: relative;
    z-index: 1;
  padding: 60px 60px 0 60px;
  overflow: hidden;
}

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

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

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

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

.hero-top .nav ul li a {
  color: var(--pink);
  font-weight: 900;
  overflow: hidden;
  display: block;
	position: relative;
	padding: 0 0 4px 0;
}

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

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

.hero-body {
  max-width: 1880px;
  margin: 0 auto;
  padding: 6% 60px 7% 60px;
  overflow: hidden;
  position: relative;
  z-index: 999999;
}

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

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

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

.hero-body-image {
  width: 36%;
  margin-left: 8%;
  float: left;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-body-image img {
  padding: 40px;
}

.backwrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.back-shapes {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.back-shapes img {
  opacity: 0.2;
  position: absolute;
  width: 1.5%;
}

.floating {
  position: absolute;
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.floating.square {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
}

.floating.square.pink {
  background-image: url("../images/pink-square.png");
}

.floating.square.purple {
  background-image: url("../images/purple-square.png");
}

.floating.square.blue {
  background-image: url("../images/blue-square.png");
}

@keyframes floating {
  0% {
    transform: translateY(0%) rotate(-55deg);
    opacity: 0;
  }
  50% {
    transform: translateY(300%) rotate(55deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0%) rotate(-55deg);
    opacity: 0;
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%) rotate(-55deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(300%) rotate(55deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateY(0%) rotate(-55deg);
    opacity: 0;
  }
}

/*------------------------------------*\
	INTRO SECTION
\*------------------------------------*/
#intro-wrapper {
  background: linear-gradient(to right, var(--purple), var(--pink));
  color: var(--light-color);
  background-size: 300% 300%;
  -webkit-animation: animate-gradient-bg 20s ease infinite;
  animation: animate-gradient-bg 20s ease infinite;
}

.intro-inner {
  max-width: 1980px;
  margin: 0 auto;
  overflow: hidden;
  padding: 120px 60px;
}

.intro-left,
.intro-right {
  width: 46%;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-right {
  float: right;
  margin-left: 8%;
  align-items: left;
}

/*------------------------------------*\
	SERVICES SECTION
\*------------------------------------*/
.service-inner {
  max-width: 1880px;
  margin: 0 auto;
  overflow: hidden;
  padding: 120px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service {
  flex-basis: 29.33%;
  margin: 2% 0;
}

.service-icon {
  margin: 0 0 42px 0;
  padding: 42px;
  outline: dashed 6px var(--body-font-color);
  text-align: center;
}

/*------------------------------------*\
	WORK SECTION
\*------------------------------------*/
#work-wrapper {
  background: linear-gradient(to right, var(--pink), var(--light-blue));
  color: var(--light-color);
  background-size: 300% 300%;
  -webkit-animation: animate-gradient-bg 20s ease infinite;
  animation: animate-gradient-bg 20s ease infinite;
}

.work-inner {
  max-width: 1880px;
  margin: 0 auto;
  overflow: hidden;
  padding: 120px 60px;
}

.work-inner h1 {
  font-size: 9rem;
}

.work-inner h2 {
  font-size: 5.4rem;
  margin-bottom: 24px;
  background-color: var(--purple);
  background-image: linear-gradient(45deg, var(--purple), var(--light-blue));
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.work-item-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.work {
  flex-basis: 48.33%;
  margin: 3% 0;
  background-color: var(--light-color);
  border-bottom: solid 10px var(--purple)
}

.work a span {
  font-size: 4rem;
  margin-left: 0;
  transition: all .4s linear;
}

h3.services-header {
  margin-top: 42px;
}

p.services-list {
  margin-bottom: 42px;
  font-weight: 600;
}

.fa-gear {
  margin: 0 8px;
  font-size: 2.2rem;
}

h3.goto-website a {
  font-size: 3.4rem;
  transition: all .4s linear;
}

h3.goto-website span:first-child {
  margin: 0 8px;
  font-size: 2.8rem;
  color: var(--pink);
}

h3.goto-website span.link {
  font-size: 3.4rem;
  background-color: var(--pink);
  background-image: linear-gradient(45deg, var(--pink), var(--light-blue));
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

h3.goto-website a:hover span.link {
  background-color: var(--pink);
  background-image: none;
}

.work .work-image img {
  float: left;
  width: 100%;
  overflow: hidden;
  opacity: 1;
  transition: all .4s linear;
}

.work-copy {
  background: url(../images/hero-bg-grid.png) center center var(--light-color);
  padding: 32px;
  overflow: hidden;
  color: var(--body-font-color);
}

/*------------------------------------*\
	CONTACT SECTION
\*------------------------------------*/
#contact-wrapper {
  background: url(../images/hero-bg-grid.png) center center;
}

.contact-inner {
  max-width: 1880px;
  margin: 0 auto;
  overflow: hidden;
  padding: 120px 60px;
}

.contact-inner h1 {
  font-size: 9rem;
}

.contact-left {
  width: 54%;
  float: left;
  margin: 3% 0 0 0;
}

.contact-left form {
  width: 100%;
  float: left;
}

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

.asterisk {
  color: var(--pink);
  font-weight: 900;
  margin-left: 5px;
}

.contact-left p {
  margin-top: 42px;
  width: 100%;
  float: left;
}

.contact-left h2 {
  margin-bottom: 32px;
  width: 100%;
  float: left;
}

.contact-left h2 a:hover {
  color: var(--pink);
}

.contact-right {
  width: 40%;
  float: left;
  margin: 7% 0 0 6%;
}

.person-photo {
  margin-left: 58px;
}

.person-photo img {
  border: dashed 5px var(--body-font-color)
}

.quote-mark {
  margin-top: 28px;
}

.quote {
  margin-left: 58px;
}

p.name {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0;
}

p.company {
  font-weight: 900;
  margin-top: 0;
}

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

  .floating.square.desktop {
    display: none;
  }

}

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

  h1 {
  	font-size: 5rem;
  }

  h2 {
  	font-size: 3.4rem;
  }

  h3 {
  	font-size: 2.6rem;
  }

  h4 {
  	font-size: 2rem;
  }

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

  .work-inner h1,
  .contact-inner h1 {
    font-size: 8rem;
  }

  .work-inner h2 {
    font-size: 5rem;
  }

}

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

  body {
    font-size: 2.4rem;
  }

  a.button,
  input[type="submit"],
  input[type="button"],
  button[type="submit"] {
    font-size: 2.4rem;
  }

  h1 {
  	font-size: 4rem;
  }

  h2 {
  	font-size: 3rem;
  }

  h3 {
  	font-size: 2.2rem;
  }

  h4 {
  	font-size: 2rem;
  }

  .intro-inner,
  .service-inner,
  .work-inner,
  .contact-inner {
    padding: 60px 50px;
  }

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

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

  .work-inner h1,
  .contact-inner h1 {
    font-size: 6rem;
  }

  .work-inner h2 {
    font-size: 4rem;
  }

  p.name {
    font-size: 2.8rem;
  }

}

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

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

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

  .hero-body-image img {
    max-width: 400px;
  }

  .intro-left,
  .intro-right {
    width: 100%;
  }

  .intro-right {
    float: left;
    margin-left: 0;
    margin-bottom: 60px;
  }

  .service {
    flex-basis: 48%;
    margin: 4% 0;
  }

  .contact-left {
    width: 100%;
  }

  .contact-right {
    display: none;
  }

}

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

  body {
    font-size: 2.2rem;
  }

  a.button,
  input[type="submit"],
  input[type="button"],
  button[type="submit"] {
    font-size: 2.2rem;
  }

  h1 {
  	font-size: 4rem;
  }

  h2 {
  	font-size: 2.8rem;
  }

  h3 {
  	font-size: 2rem;
  }

  h4 {
  	font-size: 2rem;
  }

  h1:after,
  h2:after {
    font-size: 0.6rem;
  }

  .hero-body {
    padding:  60px;
  }

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

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

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

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

  .hero-body-image img {
    max-width: 300px;
  }

  .service {
    flex-basis: 80%;
    margin: 5% 0;
  }

  .service-inner {
    justify-content: center;
  }

  .work-item-wrapper {
    margin-top: 60px;
  }

  .work {
    flex-basis: 80%;
    margin: 5% 0;
  }

  .work-inner h1,
  .contact-inner h1 {
    font-size: 4rem;
  }

  .work-item-wrapper {
    justify-content: center;
  }

  .work-inner h2 {
    font-size: 3rem;
  }

  h3.goto-website a {
    font-size: 2.8rem;
  }

  p.name {
    font-size: 2.2rem;
  }

  .contact-left {
    margin: 60px 0 0 0;
  }

}

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

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

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

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

  .intro-inner,
  .service-inner,
  .work-inner,
  .contact-inner {
    padding: 42px 32px;
  }

  .nav {
    display: none;
  }

  .service {
    flex-basis: 100%;
    margin: 6% 0;
  }

  .work {
    flex-basis: 100%;
    margin: 6% 0;
  }

  .work a span {
    font-size: 3rem;
  }

}

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

  a.button,
  input[type="submit"],
  input[type="button"],
  button[type="submit"] {
    font-size: 2rem;
  }

  h1 {
  	font-size: 3.4rem;
  }

  h2 {
  	font-size: 2.8rem;
  }

  h1:after,
  h2:after {
    font-size: 0.6rem;
  }

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

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

  .hero-body-image img {
    max-width: 240px;
  }

  h3.goto-website a {
    font-size: 2.4rem;
  }

  .contact-left h2 {
    font-size: 2.5rem;
  }

  .contact-left h2:after {
    font-size: 0.5rem;
  }

}
