/**
 * Fix fonts that render as bold in Firefox
 *
 * Put this near the top of your style.css
 * Before any overriding styles
 */
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
  /*scroll-behavior: smooth;*/

}

/**
 * Firefox specific rule
 */
@-moz-document url-prefix() {
  body {
    font-weight: lighter !important;
  }
}
@font-face {
  font-family: "Manrope";
  font-display: swap;
}
body {
  position: relative;
	/* Desktop - Landing */
	width: 100%;
	/* height: 4553px;*/
	font-family: Manrope;
	/* White - #FFFFFF */
	background-color: #f7f7f7;
	overflow-x: hidden;
  color: #444444;
	/*color: #1c2420;*/
}
.content-wrap{
  max-width: 1800px;
    margin: auto;
}
video:focus {
    outline: none;
}


::selection {
  color: #fff;
  background-color: #3f5efb;
}
 .fade{
    opacity: 0;
  }




.container {
	opacity: 1;
	animation-name: fadein;
	animation-duration: 0.7s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	position: relative;
  margin: auto;
  width: 75%;
  scroll-behavior: smooth;

}
h1 {
	font-style: normal;
    font-weight: 500;
    font-size: 82px;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    color: #444444;
}
/* If a gradient H1 intro is desired
.intro h1{
  background: -webkit-linear-gradient(#FC466B 0%, #3F5EFB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

h2 {
	font-weight: 500;
	font-size: 32px;
	text-transform: lowercase;
}
h3 {
	font-weight: 500;
	font-size: 20px;
}
a {
	color: #444444;
	font-size: 26px;
}
.work a:hover {
	color: rgba(212, 212, 212, 1);
	transition: color 0.7s;
}
.footer-links a {
  color: #444444;
   transition: .7s ease;
}

.footer-links {
  text-decoration: none;
	font-size: 26px;
  font-weight: 500;
	display: flex;
	justify-content: space-between;
}

.footer-links:hover a{
  color: #c4c4c4;
  transition: .7s ease;
}
.footer-links a:hover{
  color: #3f5efb;
}
@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.logo-margin {
	float: left;
	position: fixed;
	margin-left: 5%;
  top: 60px;
}
h1.logo {
	opacity: 1;
	animation-name: fadein;
	animation-duration: 0.7s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	background: -webkit-linear-gradient(90deg, #a056cd, #3f5efb);
  background-size: 300% 300%;

	height: 62px;
	width: 62px;
  
  
     -webkit-animation: AnimationName 8s ease infinite;
    -moz-animation: AnimationName 8s ease infinite;
    animation: AnimationName 8s ease infinite;
}


@-webkit-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
h1.logo svg{
  position: fixed;
}



.nametag {
	opacity: 1;
	animation-name: fadein;
	animation-duration: 0.7s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	transform-origin: top left;
	position: fixed;
	text-transform: lowercase;
	top: 300px;
	color: #444444;
	transform: rotate(-90deg);
  font-size: 12px;
}
.copyright{
 		float: left;
    font-weight: 400;
    color: #c4c4c4;
    margin-top: 7%;
    font-size: 12px;
    text-transform: capitalize;
    clear: both;
}
.intro { 
	opacity: 1;
	animation-name: fadein;
	animation-duration: 0.7s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	/* position: absolute; */
	max-width: 96%;
	margin-top: 200px;
	/* margin-right: 150px;*/
	/*height: 86px;
 /* left: 185px*/
}
.intro h1 {
	margin: 0 0 40px 0;
}

.intro p {
	-webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
	line-height: 1.5em;
  font-variation-settings: 'wght' 200;
	/* or 60px */
	color: #444444;
  font-size: calc(36px + (40 - 36) * ((100vw - 1025px) / (1200 - 1025)));
}
header {
	overflow: hidden;
}
header nav {
	opacity: 1;
	animation-name: fadein;
	animation-duration: 0.7s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	position: fixed;
	float: right;
	top: 45px;
	width: 75px;
	padding-left: 20px;
	right: 5%;
	line-height: 200%;
}
nav a {
  display: block;
  opacity: 1;
	font-size: 18px;
	color: #444444;
	font-weight: 500;
	text-decoration: none;
  transition: .7s ease;
}
nav:hover a{
  transform: scale(0.85);
  opacity: .3;
}
nav a:hover{
  color: #3f5efb;
  transform: scale(1);
  opacity: 1;
}
.main-nav a{
  transform-origin: 5% 50%;
}

.main-nav {
	display: block;
  position: fixed;
	float: right;
  top: 60px;
	width: 75px;
	padding-left: 20px;
	right: 5%;
	line-height: 200%;
}


/* Navigation */

.hero {
  margin-bottom: 9%;
}

.work {
	padding-top: 60px;
	position: absolute;
	width: 100%;
	height: 100px;
}
.h2-rule {
	height: 1px;
	background-color: #c4c4c4;
	margin-bottom: 80px;
}
.work h2 {
    position: relative;
   	color: #444444;
    padding-bottom: 0px;
    padding-top: 30px;
    float: left;
}
.container a {
	font-size: 20px;
	text-decoration: none;
}
/* Case study Thumbnails */

section .cs_feature {
	clear: both;
	padding-top: 40px;
  width: 90%;
  margin: auto;
}
section .cs_two {
	padding-top: 40px;
	width: 100%;
	clear: both;
}
.cs_a {
	float: left;
  width: 49.5%;
}
.cs_b {
	float: right;
  width: 49.5%;
}
.cs-link {
	/*text-align: right;*/
}

.cs-link:hover img{
  transform: scale(.98);
}
.cs-link:hover .thmbmotion{
  transform: scale(.98);
transform-origin: center bottom;
  transition: 0.7s ease;
}
.thmbmotion{
  webkit-transition: 0.7s ease;
transition: 0.7s ease;
}
.proj-link{
  transition: .5s ease;
}
.cs-link:hover .proj-link{
  margin-left: 0px;
}
.arrow {
  opacity: 0;
    margin-right: 1%;
    margin-bottom: 0px;
    transition: .25s ease;
    color: rgb(63, 94, 251);
}

.cs-link:hover .arrow{
  margin-left: 5px;
		color: rgb(63, 94, 251);
    opacity: 1;
    transform: scale(1);
    transition: .5s ease;
    transition-delay: .15s;
}
.cs-link:hover h3{
		margin-left: 0%;
    color: #3f5efb;
    border-bottom: 2px solid rgb(63, 94, 251);
}
.work h3 {
  color: #c4c4c4;
  margin-left: -25px;
  margin-right: 0%;
	margin-top: 12px;
	text-transform: lowercase;
	display: inline-block;
	border-bottom: solid 2px rgba(0,0,0,0);
}


/*.cs-link:hover h3:before {
  opacity: 1;
    position: relative;
    content: url(nav_arrow.svg);
}*/
img{
  transform-origin: center bottom;
  -webkit-transition: 0.7s ease;
 transition: 0.7s ease;
}
h3{
  -webkit-transition: 0.7s ease;
 transition: 0.7s ease;
}



.footer {
	clear: left;
	float: left;
	width: 100%;
	position: relative;
	margin-top: 12%;
	margin-bottom: 5%;
}
.footer-rule {
	margin-top: 30px;
  height: 1px;
  background-color: #c4c4c4;
	margin-bottom: 30px;
}

.work .footer h2 {
  color: #444444;
    /*color: #1c2420;*/
    padding-bottom: 0;
    float: none;
    margin: 0;
}

@media only screen and (min-width:2358px){
  .intro p{
    font-size: 56px !important;
  }
}
/* VVV To clear out the type scaling after 1440px */
@media only screen and (min-width: 1440px){
  header {
    margin: auto;
    max-width: 2220px;
    position: relative;
}
  .projectHead img{
    width: 100%;
    height: auto;
  }
  .main-nav {
    line-height: 250%;
  }
  nav a {
    font-size: 22px;
}
  .intro p {
    font-size: 44px;
  }
  h3 {
	font-weight: 500;
	font-size: 24px;
}
  
  /* Contact Links*/
  .container a{
    font-size: 26px;
  }
}

@media only screen and (min-width: 1201px) {
	nav {
		padding-left: 5px;
	}
  .content-wrap{
    display: block;
  }
  .intro p {
		    font-size: calc(40px + (44 - 40) * ((100vw - 1201px) / (1440 - 1201)));
	}
  .cs_wide{
    width: 80%;
  }
  .cs_two{
    width: 80%;
  }

}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .content-wrap{
    display: block;
  }
	.intro p { 
	}
}
/* 1024 breakpoint */

@media (max-width: 1024px) {
	.container {
		position: relative;
    width: 70%;
    
	}
	h1.logo {
		position: fixed;
		left: 5%;
	}
	nav {
		position: fixed;
		width: 75px;
		left: 90%;
		line-height: 200%;
		/*1295px;*/
	}
  .nametag{
    top: 255px;
  }
	/* Navigation */
	.main-nav {
    padding-left: 0;
		display: block;
	}

	.mobile-nav {
		display: none;
	}
	nav a {
		margin-bottom: 0px;
	}
	/* Top of Landing Page – Introduction */
	.intro {
		
	}
	.work {
	
	}
	.intro h1 {
		margin: 0 0 40px 0;
	}
	.intro p {
		font-size: 32px;
		line-height: 1.5em;
	}
  .h2-rule{
    margin-bottom: 40px;
  }
  .work h2{
    color: #444444;
    padding-top: 30px;
  }
  h2{
    font-size: 28px;
  }
}
/* 1024 breakpoint */

@media only screen and (min-width: 768px) and (max-width: 919px) {
	body {
		/*background-color: rgba(185, 26, 209, 1);*/
	}
	.intro {
		margin-top: 150px;
		
	}
  .main-nav {
		display: ;
	}
	h1 {
    font-size: 70px;
	}
	.intro p {
     font-size: calc(26px + (32 - 26) * ((100vw - 768px) / (1023 - 768)));
		color: #444444;
	}
	.work {
		
	}
  .cs_wide .proj-link{
    margin-left: -28px;
  }
  section .cs_two{
    width: 100%;
    margin: auto;
    padding-top: 40px;
  }
	.cs_a {
		float: left;
		width: 100%;
		margin-right: 0;
	}
	.cs_b {
		padding-top: 40px;
		float: left;
		width: 100%;
		margin-left: 0;
	}
	.footer {
		margin-top: 15%;
	}
	.footer-rule {
		margin-top: 30px;
	}
	.footer-links li {
		margin-bottom: 20px;
	}
}
/* 767 breakpoint */

@media only screen and (max-width: 767px) {
	body {
		/*background-color: rgba(232, 28, 28, 1);*/
	}
	.nametag {
   margin-top: 110%;
		display: block;
    font-size: 12px;
	}
	.container {
		position: relative;
		margin-right: 0;
		margin-left: 20%;
    width: 80%;
	}
	h1.logo {
		position: fixed;
		left: 0;
		top: 0;
		margin: 0;
    background-size: 200% 200%;
    width: 75px;
    height: 75px;
	}
  h1.logo svg{
    width: 75px;
    height: 75px;
  }
	nav {
		position: fixed;
		margin-top: 35px;
		margin-left: 0px;
		padding-left: 15px;
		left: 0;
	}
  nav a{
    font-size: 18px;
  }
	/* Navigation */
	.main-nav {
    padding-left: 10px;
    top: 65px;
		display: block;
	}
  .main-nav a{
    padding-bottom:10px;
  }
  

	.mobile-nav {
    top: 65px;
    padding-left: 10px;
		display: none;
	}
	/* Introduction Section */
	.intro {
		max-width: 640px;
		margin-top: 100px;
		margin-right: 10px;
	}
.intro h1 {
		font-style: normal;
		font-weight: 500;
		font-size: 40px;
		margin: 0 0 20px 0;
	}
  h3{
    font-size: 20px;
  }
	.intro p {
		font-size: 20px;
		line-height: 1.5em;
    font-variation-settings: 'wght' 200;
	}
	.work {
		padding-top: 75px;
		margin-right: 0;
	}
	.work h3 {
    margin-left: -25px;
   font-size: 20px;
	margin-right: 0;
	}
  
	section .cs_wide {
    margin: 0;
    width: 95%;
		padding-top: 50px;
	}
   .cs_wide .proj-link{
    margin-left: -27px;
  }
	section .cs_two {
    padding-top: 0;
    margin: 0;
    clear: both;
	}
	.cs_a {
		float: right;
    width: 100%;
    padding-top: 50px;
	}
	.cs_b {
    width: 100%;
    float: right;
    padding-top: 40px;
	}
	.footer {
 
	}
	.footer-rule {
		margin-top: 30px;
	}
	.footer-links {
		display: block;
	}
  .footer-links li {
    display: inline-block;
    margin-bottom: 20px;
    float: left;
    clear: left;
}
}

@media only screen and (min-width:550px) and (max-width: 767px){
  .intro {
    max-width: 560px;
  }
  .intro p {
    font-size: calc(24px + (30 - 24) * ((100vw - 550px) / (767 - 550)));
  }
  .work{
    margin-top: 0;
    padding-top: 75px;
  }
  }


/*375 break */

@media only screen and (max-width: 475px) {
  .container {
	width: 75%;
    float: right;
	}
	.intro {
		margin-top: 105px;
		max-width: 300px;
	}
  h2{
    font-size: 26px;
  }
  .to-projects h2 {
    font-size: 26px;
}
  .project-title h3 {
    font-size: 16px;
    line-height: 125%;
}
  .cs_wide .proj-link {
    margin-left: 0;
}
   .cs_two .proj-link {
    margin-left: 20px;
}
  .arrow{
    display: none;
  }
}
  
@media only screen and (max-width: 320px) {
	body {
		background-color: rgb(255, 255, 255);
	}

  .nametag {
		display: block;
    top: 95%;
    font-size: 10px;
	}
	.intro {
    max-width: 180px;
		margin-top: 100px;
	}
	.intro h1 {
		font-size: 24px;
		margin: 0 0 20px 0;
	}
	h2 {
		font-size: 18px;
	}
  
  .arrow{
    display: none;
  }
  h3 {
    font-size: 16px;
  }
	.intro p {
		font-size: 18px;
	}
  nav a{
    font-size: 16px;
  }
	.work {
		margin-top: 20%;
	}
	section .cs_wide {
		padding-top: 50px;
	}
	section .cs_two {
		padding-top: 0px;
		width: 100%;
		clear: both;
	}
  .cs_wide .proj-link {
    margin-left: 0px;
}
   .cs_two .proj-link {
    margin-left: 0px;
}
	.cs_a {
		float: none;
		width: 100%;
		margin-right: 0%;
		padding-top: 50px;
	}
	.cs_b {
		float: none;
		width: 100%;
		margin-left: 0%;
		padding-top: 50px;
	}
	.footer {
		margin-top: 25%;
	}
	.footer-rule {
		margin-top: 30px;
	}
	.footer-links li {
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 319px) {
	.container {
		display: none;
	}
  h1.logo{
    
  } 
	.main-nav {
		display: none;
	}
	h1.logo {
		position: fixed;
		width: 100%;
		background-size: 100% 100%;
		height: 100%;
		background: -webkit-linear-gradient(90deg, #fc466b , #3f5efb);
  background-size: 300% 300%;
	}
	body {
		
	}
}

/*
@media (prefers-color-scheme:dark){
  body{
    background-color: #080808;
    color: #c4c4c4;
  }
h1.logo{
  
  background-position: right top;
  opacity: .95;
}
.nametag {
	color: rgba(196, 196, 196, 1);
}
 nav a {
    color: #c4c4c4;
  }
  .arrow{
    color: #c4c4c4;
  }
  img{
    opacity: .75;
  }
  img:hover{
    opacity: 1;
  }
.h2-rule {
    background-color: rgba(196, 196, 196, 1);
}
  
.cs-link:hover h3{
  color: rgba(196, 196, 196, 1);
  border-bottom: 2px solid rgba(196, 196, 196, 1);
}
.work h3 {
  color: rgba(196, 196, 196, 1);
  margin-right: 0%;
	margin-top: 12px;
	text-transform: lowercase;
	display: inline-block;
	border-bottom: solid 2px rgba(196, 196, 196, 0);
}
}
