/* CSS RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
input, textarea {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}
/*//////   GLOBAL TAGS CSS OR IN SMACSS CALLED BASE   //////*/
html {
	font-size: 20px;
	line-height: 28px;
}
body {
	font-family:'Nunito Sans', sans-serif;
	color: #4E3C5C;
	margin: 0;
	font-size: 1em; /* Base Font Size 20px */
	font-weight: 100;
	line-height: 1.4rem; /* Magic Number 28px */
}
body.open {
	overflow: hidden;
}
img {
	max-width: 100%;
	vertical-align: middle;
}
h1,h2,h3,h4,h5,h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	color: #5F2887;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 1.4rem;
}
h1 {
	font-size: 3.157em;
	line-height: 3.5rem;
	margin-top: 2.8rem;
}
h2 {
	font-size: 2.369em;
	line-height: 2.6rem;
}
h3 {
	font-size: 1.777em;
	color: #897396;
	line-height: 2rem;
}
h4 {
	font-size: 1.333em;
	line-height: 1.5rem;
	font-weight: 300;
}
h5 {
	font-size: 1.333em;
	line-height: 1.5rem;
	color: #897396;
	font-weight: 300;
}
h6 {
	font-size: 1em; /* Equivalente a 20px */
	line-height: 1.3rem;
}
p {
	margin-top: 0;
	margin-bottom: 1.4rem;
}
a {
	color: #897396;
	text-decoration: none;
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
}
a:hover {
	color: #5F2887;
}
/* LAYOUT RULES CALLED BY SMACSS */
header {
	width: 100%;
	position: fixed;
	top:0;
	z-index: 1;
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
}
.main_header.hide {
      top: -150px;
    }
footer {
	background: #401768;
	color: #897396;
	font-size: 0.75em;
	text-align: center;
}
.main-nav {
	padding: 112px 14px;
	display: flex;
	justify-content: space-around;
}
.main-nav ul li {
	font-family: 'Oswald', sans-serif; 
	font-size: 2.369em;
	padding: 1rem 0;
	text-transform: uppercase;
	font-weight: 400;
	overflow: hidden;
	color: #5F2887;
}
label {
	color: #897396;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	display: block;
	font-weight: 400;
	transition: all 0.3s cubic-bezier(0,.2,.5,1);
}
input, textarea {
	background: transparent;
	width: 100%;
	padding: 7px;
	box-sizing: border-box;
	font-size: 19px;
	font-family:'Nunito Sans', sans-serif;
	font-weight: 100;
	color: #897396;
	-webkit-appearance: none;
	-webkit-border-radius:0;
	border-radius: 0;
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
	border: none;
	border-bottom: 1px solid #897396;
}
input:focus, textarea:focus {
	outline: none;
}
.input-wrapper {
	position: relative;
	height: auto;
	padding: 56px 0 0;
}
.animation {
	position: absolute;
	bottom: 0;
	left:0;
	background: #F89B25;
	height: 2px;
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
	width: 0;
}
input:focus ~ .animation, textarea:focus ~ .animation {
	width: 100%;
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
}
input[type="submit"] {
	border: 2px solid #897396;
	background: transparent;
	text-transform: uppercase;
	color: #401768;
	cursor: pointer;
	background: transparent url(../images/arrow.svg) no-repeat 90% center;
	margin-top: 28px;
	width: 100%;
	transition: all 0.3s cubic-bezier(0,.5,.5,1);
}
input[type="submit"]:hover {
	background-position: calc(100% + 56px);
	background: #F89B25;
	border-color: #F89B25;
	color: #fff;
}
textarea {
	height: 100px;
  display: block;
}
label span.error {
	color: red;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 15px;
	padding-left: 14px;
	text-transform: none;
	transition: all 0.3s cubic-bezier(0,.5,.5,1);
}
input.error, textarea.error {
	border-color: red;
	border-width: 2px;
	transition: all 0.3s cubic-bezier(0,.5,.5,1);
}
main {
	background: linear-gradient(-150deg, #FFFFFF 15%, #FAF9FA 15%);
}
*::selection {
  background: #55207c;
  color: #fff; }
/*/////   GENERIC CLASSES   //////*/

.content.pb-0{
	padding-bottom: 0;}
.btn {
	text-transform: uppercase;
	padding-right: 28px;
	background: transparent url(../images/arrow.svg) no-repeat right center;
	transition: all 0.3s cubic-bezier(0,.2,.5,1);
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.btn:hover {
	color: #F89B25;
}
.btn:after {
	content: '';
	height: 1px;
	width: 100%;
	background: #F89B25;
	position: absolute;
	left: -100%;
	bottom: 2px;
	transition: all 0.3s cubic-bezier(0,.2,.5,1);

}
.btn:hover:after {
	left: -28px;
}
.content {
	padding: 56px 28px;
	margin: 0 auto;
	box-sizing: border-box;
}
.col + .col {
	margin-top: 56px;
}
.alignment {
	text-align: center;
}
.bg-color {
	background: #FAF9FA;
}

/*///////   MODULES OR COMPONENTS    //////*/

/* //////   HEADER    //////*/
header .content {
	padding: 14px 28px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.logo {
	max-width: 60%;
	position: relative;
	z-index: 1;
}
.logo svg {
	width: 100%;
	max-width: 220px;
}
.logo-em, .logo.open .logo-em, .scrolling .home .logo-em {
	fill: #401768;
}
.home .logo-em {
	fill: #ffffff;
}
.burger {
	position: relative;
	height: 20px;
	width: 30px;
	transform: rotate(0deg);
	cursor: pointer;
	z-index: 1;
}
.burger span {
	width: 30px;
	height: 2px;
	background: #401768;
	display: block;
	transition: 0.5s cubic-bezier(0,.2,.5,1);
	position: absolute;
	transform: rotate(0deg);
	left: 0;
}
.burger.home span{
	background: #ffffff;
}
.home.open span, .scrolling .burger span  {
	background: #401768;
}
.burger span:nth-child(1) {
	top: 0;
}
.burger span:nth-child(2),.burger span:nth-child(3) {
	top: 8px;
}
.burger span:nth-child(4) {
	top: 16px;
}
.burger.open span:nth-child(1) {
	width: 0%;
	top: 8px;
	left: 50%;
}
.burger.open span:nth-child(2) {
	transform: rotate(45deg);
}
.burger.open span:nth-child(3) {
	transform: rotate(-45deg);
}
.burger.open span:nth-child(4) {
	width: 0%;
	top: 8px;
	left: 50%;
}
.main-nav {
	position: fixed;
	visibility: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: linear-gradient(-150deg, #FFFFFF 50%, #FAF9FA 50%);
	opacity: 0;
	transition: 0.5s cubic-bezier(0,.2,.5,1);
}
.main_header.scrolling {
	background: white;
	box-shadow: 0 1px 1px 1px rgba(137, 115, 150, 0.1);
}
.main-nav.open {
	opacity: 1;
	visibility: visible;
}
.main-nav a {
	color: #897396;
	position: relative;
	overflow: hidden;
}
.main-nav a:hover {
	color: #401768;
}
.main-nav a:after {
	content: '';
	height: 2px;
	width: 100%;
	background: #897396;
	position: absolute;
	left: -100%;
	bottom: 6px;
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
}
.main-nav a:hover:after {
	left: 0;
	background: #F89B25;
}
/* //////    FOOTER    //////*/
footer {
	background-image: linear-gradient(-45deg, #572480 0%, #4E2074 29%, #351555 82%, #2B1149 100%);
}
footer .content {
	padding: 28px;
}
footer blockquote {
	margin-bottom: 56px;
	color: #FAF9FA;
	opacity: 0.5;
}
footer cite {
	opacity: 0.5;
}
footer p {
	margin-bottom: 0;
	text-align: center;
}
.isotype {
	text-align: center;
}
/* //////    EYECATCHER    //////*/
.cover {
	position: relative;
}
.eyecatcher {
	background-color: #ffffff; 
	background-image: linear-gradient(-45deg, #572480 0%, #4E2074 29%, #351555 82%, #2B1149 100%);
}
.eyecatcher h1 {
	color: #FAF9FA;
}
.eyecatcher h1 span {
	color: #5F2887;
}
canvas {
	background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    transition: all 0.3s cubic-bezier(0,.2,.5,1);
}
canvas:hover {
	opacity: 0.25;
}
/* //////    BILLBOARD    //////*/
.billboard {
	background: #ffffff;
}
.billboard .title_box {
	padding-bottom: 0;
}
.billboard h3 + div {
		margin-bottom: 28px;
}
.grid, .brands {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
}
.grid {
	background: #401768;
}
.grid .item {
	flex-basis: calc(100%/3);
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
	opacity: 0.7;
}
.grid .item:hover {
	opacity: 1;
}
.brands .item {
	flex-basis: calc(100%/4);
}
.grid .call {
	position: absolute;
	left: 0;
	right: 0;
	opacity: 1;
	top: 50%; 
	text-align: center;
	width: 100%;
	color: orange;
	text-transform: uppercase;

}
/* //////    DIVIDED    //////*/
.design {
	background: #5F2887;
}
.develop {
	background: #401768;
}
.design h2, .develop h2 {
	color: #F5F4F6;
}
.design p, .develop p {
	color: #fff;
}
/* //////   ICON LIST   //////*/
.data-icons {
	margin-top: 56px;
}
.data-icons .col {
	cursor: default;
}
.data-icons p, .banner h2 {
	color: #897396;
}
.data {
	font-size: 2.369em;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	padding-top: 20px;
}
.icon-wrap {
	height: 64px;
	width: 100%;
	overflow: hidden;
}
.data-icons span {
	display: block;
	transition: all 0.3s cubic-bezier(0,.2,.5,1);
}
.data-icons .col:hover .icon{
	margin-top: -64px;
}

/* //////    FEATURES     //////*/
.features {
	margin-top: 84px;
}
.features .col {
	margin-bottom: 1.4rem;
}
.features h5, .features span {
	display: inline-block;
	vertical-align: middle;
}
.features h5 {
	margin:0 0 0 5px;
}
.features .col + .col {
	margin-top: 0;
}
/* //////    PROCESS     //////*/
.process {
	background: linear-gradient(150deg, #FAF9FA 60%, #FFFFFF 60%);
}
.step {
	padding: 112px 0;
}
.number {
	font-size: 13em;
	color: #897396;
	font-family: 'Oswald', sans-serif;
	opacity: 0.1;
	font-weight: 600;
	position: absolute;
	top: 0;
}
.step .icon {
	width: 128px;
	height: 128px;
	opacity: 0.6;
	display: inline-block;
}
.step h4 {
	margin-bottom: 0;
	font-weight: 400;
}
.step .col {
	position: relative;
}
.number {
	right: 10%;
}
/* //////    BANNER     //////*/
.banner {
	background: #401768;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
.bg1 {
	background-image: url('../images/duotone-1_sm.jpg');
	background-image: -webkit-image-set(  
    url(../images/duotone-1_sm.jpg) 1x,  
    url(../images/duotone-1_md.jpg) 2x  
  );
	background-image: image-set(  
    url(../images/duotone-1_sm.jpg) 1x,  
    url(../images/duotone-1_md.jpg) 2x  
  );
 
}
.bg2 {
	background-image: url('../images/duotone-2_sm.jpg');
	background-image: -webkit-image-set(  
    url(../images/duotone-2_sm.jpg) 1x,  
    url(../images/duotone-2_md.jpg) 2x  
  );
	background-image: image-set(  
    url(../images/duotone-2_sm.jpg) 1x,  
    url(../images/duotone-2_md.jpg) 2x  
  );
}
.bg3 {
	background-image: url('../images/duotone-3_sm.jpg');
	background-image: -webkit-image-set(  
    url(../images/duotone-3_sm.jpg) 1x,  
    url(../images/duotone-3_md.jpg) 2x  
  );
	background-image: image-set(  
    url(../images/duotone-3_sm.jpg) 1x,  
    url(../images/duotone-3_md.jpg) 2x  
  );
}
.bg4 {
	background-image: url('../images/duotone-4_sm.jpg');
	background-image: -webkit-image-set(  
    url(../images/duotone-4_sm.jpg) 1x,  
    url(../images/duotone-4_md.jpg) 2x  
  );
	background-image: image-set(  
    url(../images/duotone-4_sm.jpg) 1x,  
    url(../images/duotone-4_md.jpg) 2x  
  );
}
.banner h5, .banner h2, .banner h3, .banner h4, .banner nav a {
	color: #fff;
}
.banner h4{
  margin-bottom: 1.5rem;
}
.banner ul {
  width: 100%;
  max-width: 80%;
  column-count: 2; }
.banner nav a, .banner nav p {
  font-size: 0.8em; }
.banner nav p{
	margin-bottom: 15px;}
.banner nav {
  margin-bottom: 1.5rem; }
#map {
	width: 100%;
	height: 400px;
}

.icon {
	width: 64px;
	height: 64px;
}
/*//////// BROWSER ////////////*/
.bar {
	background: #F5F4F6;
	padding-left: 10px;
	text-align: left;
}
.bar span {
	width: 8px;
	height: 8px;
	border: 1px solid #897396;
	border-radius: 50%;
	display: inline-block;
}
.browser {
	box-shadow: 0 0 0 2px rgba(239,236,242,0.8);
	margin-bottom: 28px;
	position: relative;
	overflow: hidden;

}
.browser img {
	width: 100%;
	transition: all 0.5s cubic-bezier(0,.2,.5,1); 
}
.screen {
	background: rgba(64,23,104,0.9);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
}
.screen h3, .screen p {
	color: #fff;
	margin-bottom: 0;
	transition: all 0.5s cubic-bezier(0,.2,.5,1);
	opacity: 0.7;
}
.screen h6 {
	color: #897396;
	font-weight: 300;
}
.screen .btn {
	font-size: 70%;
}
.browser:hover .screen {
	opacity: 1;
}
.browser:hover img {
	transform: scale(1.1);
}
/* //////  SERVICES  //////*/
.nav_services li {
  font-weight: 400; }
.nav_services li + li {
  margin-top: 5px; }
.nav_services a {
  display: inline-block;
  overflow: hidden;
  position: relative; }
.nav_services a:hover {
  color: #F89B25; }
.nav_services a:after {
  content: '';
  height: 1px;
  width: 100%;
  background: #F89B25;
  position: absolute;
  left: -100%;
  bottom: 2px;
  transition: all 0.3s cubic-bezier(0,.2,.5,1); }
.nav_services a:hover:after {
  left: -20px; }
.nav_services span {
  color: #F89B25; }
.process_box {
  margin-top: 2rem; }
.iconArrow {
  display: inline-block; }
.process_box li {
  position: relative; }
.process_box li:nth-child(1):before, .process_box li:nth-child(2):before{
  content: "";
  background: url(../images/bigArrow.svg) no-repeat center top;
  width: 200%;
  height: 90px;
  display: block;
  position: absolute;
  top: -70px;
  left: 60%; }
.process_box li:nth-child(1):after, .process_box li:nth-child(2):after, .process_box li:nth-child(3):after{
  content: "";
  background: url(../images/littleArrow.svg) no-repeat center top;
  width: 100%;
  height: 60px;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%; }
.tools h3 {
  text-align: center; }
.tools img, .tools svg {
  margin: 0 auto;
  display: block;
  filter: grayscale(1);
  opacity: 0.45;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.48, 1.02);}
.tools img:hover, .tools svg:hover{
  filter: grayscale(0);
  opacity: 1; }
.description {
  margin: 4rem 0 3rem; }
.projects_box .row + .row {
  margin-top: 3rem; }
.projects_box .col + .col {
  margin-top: 1rem; }
.projects_box .col span {
  font-weight: 400;
  text-transform: uppercase;
  color: #897396; }
.projects_box h4 {
  width: 100%;
  max-width: 320px;
  font-weight: 400;
  margin: 2.5rem 0 1rem; }
.projects_box .btn_box {
  margin-top: 3rem;
  text-align: center; }
.tools .row {
  justify-content: center;
  align-items: center; }
@media only screen and (min-width: 35em) {
	h1, h2 {
		max-width: 70%;
	}
}
@media only screen and (min-width: 40em) {
	.content {
		padding: 112px 56px;
	}
	header .content {
		padding: 14px 56px;
	}
	.data-icons .row, .features .row {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.data-icons .col, .features .col {
		flex-basis: calc(100%/2 - 40px);
	}
	.data-icons .col + .col {
		margin-top: 0;
	}
	.data-icons .col {
		text-align: center;
	}
	.data-icons span {
		margin:0 auto;
	}
	input[type="submit"] {
		width: 50%;
	}

}
@media only screen and (max-width: 59em) and (min-width: 35em) { 
	.cover h3 {
		max-width: 60%;
	}
}
@media only screen and (max-width: 767px) {
	.btn{
		display: inline;}
	.btn:after{
		content: none;}
	.process_box {
    width: 45%;
    margin-left: auto;
    margin-right: auto; }
  .process_box li {
    margin-bottom: 1.5rem; }
  .iconArrow {
    width: 100px;
    text-align: center; }
  .iconArrow svg {
    transform: rotate(90deg);
    margin-top: 0.5rem;
    vertical-align: super;}
  .process_box li:nth-child(1):before, .process_box li:nth-child(2):before {
    transform: rotate(-90deg);
    left: -120%;
    top: 220px;}
  .process_box li:nth-child(1):after, .process_box li:nth-child(2):after, .process_box li:nth-child(3):after {
    transform: rotate(-90deg);
	bottom: -35px;
	left: 70%; }
  .metodology_box {
    margin-top: 3rem; }
  .metodology_box h5 {
    margin-bottom: 1rem; }
  .tools .col {
    flex-basis: 50%; }
  .tools .col:nth-child(2) {
	margin-top: 0; }
  .tools img {
	  max-width: 80%; }
  .services_box .col + .col {
	  margin-top: 3rem; }
}
@media only screen and (min-width: 48em) { 
/*///////    BASE     /////*/
	
	h1,h2,h3,h4,h5,h6 {
	margin-bottom: 2.8rem;
	}
	h1 {
	font-size: 4.209em;
	line-height: 4.6rem;
	}
	h2 {
	font-size: 3.157em;
	line-height: 3.4rem;
	}
	h3 {
	font-size: 2.369em;
	line-height: 2.8rem;
	}
	h4 {
	font-size: 1.777em;
	line-height: 2rem;
	}
	h5 {
	font-size: 1.333em;
	line-height: 1.5rem;
	}
	h6 {
	font-size: 1em;
	line-height: 1.5rem;
	}

/*/////    GENERIC CLASSES   /////*/
	

/*/////   COMPONENTS    /////*/

	/* //////    HEADER   //////*/

	nav ul li {
		display: block;
		margin-right: 0;
	}
	/* //////   EYECATCHER   //////*/
	.eyecatcher {
		min-height: 100vh;
	}
	/* //////   DIVIDED   //////*/
	.divided {
		background: linear-gradient(to right, #5F2887 0%,#5F2887 50%,#401768 50%,#401768 50%,#401768 100%);
		display: flex;
		justify-content: center;
	}
	.divided section {
		flex-basis: calc(100%/2);
	}
	/* //////  BILLBOARD  //////*/
	.billboard h3 {
		text-align: center;
		max-width: 700px;
		margin-left: auto;
		margin-right: auto;
	}
	.data-icons .row {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.features .row {
		flex-wrap: wrap;
	}
	.step {
		display: flex;
		justify-content: space-between;
	}
	.step .col {
		flex-basis: calc(100%/2 - 14px);
	}
	.number {
		font-size: 17em;
	}
	.step:nth-child(odd) {
		justify-content: flex-end;
		text-align: left;
	}
	footer .contact {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
  .banner .row {
    justify-content: space-between; }
  .banner nav {
    margin-bottom: 2rem; }
	.bg1 {
		background-image: url('../images/duotone-1_md.jpg');
		background-image: -webkit-image-set(  
	    url(../images/duotone-1_md.jpg) 1x,  
	    url(../images/duotone-1_lg.jpg) 2x  
	  	);
		background-image: image-set(  
	    url(../images/duotone-1_md.jpg) 1x,  
	    url(../images/duotone-1_lg.jpg) 2x  
	  	);
 
	}
	.bg2 {
		background-image: url('../images/duotone-2_md.jpg');
		background-image: -webkit-image-set(  
	    url(../images/duotone-2_md.jpg) 1x,  
	    url(../images/duotone-2_lg.jpg) 2x  
	  );
		background-image: image-set(  
	    url(../images/duotone-2_md.jpg) 1x,  
	    url(../images/duotone-2_lg.jpg) 2x  
	  );
	}
	.bg3 {
		background-image: url('../images/duotone-3_md.jpg');
		background-image: -webkit-image-set(  
	    url(../images/duotone-3_md.jpg) 1x,  
	    url(../images/duotone-3_lg.jpg) 2x  
	  );
		background-image: image-set(  
	    url(../images/duotone-3_md.jpg) 1x,  
	    url(../images/duotone-3_lg.jpg) 2x  
	  );
	}
	.bg4 {
		background-image: url('../images/duotone-4_md.jpg');
		background-image: -webkit-image-set(  
	    url(../images/duotone-4_md.jpg) 1x,  
	    url(../images/duotone-4_lg.jpg) 2x  
	  );
		background-image: image-set(  
	    url(../images/duotone-4_md.jpg) 1x,  
	    url(../images/duotone-4_lg.jpg) 2x  
	  );
	}
  /* //////  SERVICES  //////*/
  .services_links {
    align-items: center; }
  .row .col.nav_services {
    flex-basis: 26%; }
  .services_box .col:nth-child(2n+2) {
    margin-top: 20%; }
  .services_box .col p {
    margin-top: 1rem; }
  .process_box {
    margin-top: 5rem;
    display: flex;
    justify-content: space-between; }
  .process_box h5 {
    width: 100%;
    max-width: 180px; }
  .iconArrow {
    position: absolute;
    top: 50%;
    left: calc(100% - 20px); }
  .metodology_box {
    margin-top: 3.5rem; }
  .metodology_box h5 {
    margin-bottom: 1.5rem; }
  .tools .col {
    flex-basis: 25%; }
  .tools .col:nth-child(2), .tools .col:nth-child(3), .tools .col:nth-child(4) {
    margin-top: 0; }
  .description {
    margin: 5rem 0 4rem; }
  .services_wrap section + section .content, .services_wrap section section .content {
    padding-top: 0; }
  .projects_box .row {
    align-items: center; }
  .projects_box .row + .row {
    margin-top: 4rem; }
  .projects_box .row:nth-child(2n+2){
    flex-direction: row-reverse; }
  .projects_box .col  {
    flex-basis: 45%; }
  .projects_box .btn_box {
    margin-top: 4rem; }
}
@media only screen and (max-width: 60em){
  .tools .row {
    display: flex;
    flex-wrap: wrap; }
}
@media only screen and (min-width: 48em) and (max-width: 60em){
  .process_box h5 {
    font-size: 1em;
    max-width: 110px; }
  .iconArrow {
    left: calc(100% + 5px); }
  .process_box li:nth-child(1):before, .process_box li:nth-child(2):before {
    width: 280%; }
  .process_box li:nth-child(1):after, .process_box li:nth-child(2):after, .process_box li:nth-child(3):after {
	width: 170%; }
  .projects_box .row {
	display: flex;
	justify-content: space-between;}
  .projects_box .col {
	flex-basis: 45%;}
  .projects_box .col + .col, .projects_box h4{
	margin-top: 0;}
  .projects_box h5{
	margin-bottom: 2rem;}
}
@media only screen and (min-width: 60em) {
	.content, footer .content {
		padding: 56px;
		max-width: 1100px;
	}
	.main-nav ul li {
		font-size: 3.157em;
		padding: 1.4rem 0;
	}
	h1, h2 {
		max-width: 100%;
	}
	.row {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
  .info{
    align-items: center;}
	.cover .col, .eyecatcher .col, .info .col, .banner .col, .process .title {
		flex-basis: calc(100%/2 - 14px);
	}
	.data-icons {
		margin-top: 82px;
	}
	.data-icons .col  {
		flex-basis: calc(100%/4 - 14px);
	}
	.design .row {
		justify-content: flex-start;
	}
	.develop .row {
		justify-content: flex-end;
	}
	.design .col, .develop .col {
		max-width: 70%;
	}
	.design, .develop {
		background: transparent;
	}
	.divided {
		background: linear-gradient(112.5deg, #5F2887 50%, #401768 50%);
	}
	.map {
		overflow: hidden;
		width: 100%;
		
	}
	.col + .col {
		margin-top: 0;
	}
	.form-container {
		padding-left: 56px;
	}
	#map {
		height: 550px;
	}
	main.contact {
		background: linear-gradient(-150deg, #FFFFFF 45%, #FAF9FA 45%);
	}
	.work .col:nth-child(even) .browser {
		margin-top: -50%;
	}
	.divided section {
		max-width: 550px;
	}
  .tools .col:nth-child(1n+5){
    margin-top: 2.5rem; }
  .description > h2{
    width: calc((100%/3) * 2 - 14px);}
  .description > p{
    width: calc(100%/2 - 14px);}
  .process {
	background: linear-gradient(150deg, #FAF9FA 55%, #FFFFFF 55%);}
}
@media only screen and (min-width: 68em){
  .iconArrow {
    left: calc(100% + 5px); }
  .process_box li:nth-child(1):before, .process_box li:nth-child(2):before {
    width: 230%;
	left: 65%; }
  .services_box .col:nth-child(2n+2) {
	margin-top: 15%; }
  .data-icons .col, .features .col {
	flex-basis: calc(100%/2 - 55px); }
}
@media only screen and (min-width: 75em) {
	h1 {
		font-size: 5.61em;
		line-height: 6rem;
	}
	.data-icons {
		margin-top: 112px;
	}
  .description {
    margin: 6rem 0 5rem; }
  .projects_box .row + .row {
    margin-top: 5rem; }
  .projects_box .btn_box {
    margin-top: 5rem; }
  .banner nav {
    margin-bottom: 2.5rem; }
  .banner ul {
    max-width: 85%;}
  .banner nav a, .banner nav p {
    font-size: 0.78em; }
}
@media only screen and (min-width: 85em) {
	html {
		font-size: 25px;
	}
	h1 {
		margin-top: 0;
	}
	.content {
		padding: 168px 56px;
		max-width: 1200px;
	}
	.brands {
		max-width: 1200px;
		margin: 0 auto;
	}
	.divided section {
		max-width: 650px;
	}
	.design .col, .develop .col {
		max-width: 90%;
	}
	.divided .content {
		max-width: 100%;
	}
	.icon-wrap {
		height: 75px;
	}
	.data-icons .col:hover .icon {
		margin-top: -64px;
	}
	.main-nav a::after {
		bottom: 10px;
	}
	.divided section {
		max-width: 600px;
	}
	.bg1 {
		background-image: url('../images/duotone-1_lg.jpg');
	}
	.bg2 {
		background-image: url('../images/duotone-2_lg.jpg');
	}
	.bg3 {
		background-image: url('../images/duotone-3_lg.jpg');
	}
	.bg4 {
		background-image: url('../images/duotone-4_lg.jpg');
	}
	.iconArrow {
		left: calc(100% + 35px); }
	.process_box li:nth-child(1):before, .process_box li:nth-child(2):before {
		width: 250%;
		height: 120px;
		left: 80%; }
	.process_box li:nth-child(1):after, .process_box li:nth-child(2):after, .process_box li:nth-child(3):after {
		left: 80%; }
	.billboard h3 {
		max-width: 800px; }

}
