@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	margin-block-start: 0;
	margin-block-end: 0;
	outline:0;
}

img {
    border: none;
    display: block
}

ol,
ul {
    list-style: none;
	padding: 0;
	margin: 0;
}
a {
    text-decoration: none;
    cursor: pointer !important;
	color: #613d9f;
}
body,
html {
    height: 100%;
	min-height: 100%
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #000;
}
.container {
	width: 100%;
	max-width: 1240px;
	padding: 100px 20px;
	text-align: center;
	margin: 0 auto;
}

/* nav */
header {
	width: 100%;
	padding: 10px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(2px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}
header .container {
	padding: 0;
	display: grid;
	grid-template-columns: max-content auto;
	justify-content: space-between;
	align-items: center;
}
.logo {
	max-width: 250px;
}
nav ul {
	width: max-content;
	display: grid;
	grid-template-columns: auto repeat(4, max-content);
	gap: 40px;
	align-items: center;
	font-weight: 500;
}
nav li {
	cursor: pointer;
}

/* slider */
.slick-arrow {
	display: none !important;
}
.slick-list,
.slick-track {
	height: 100% !important;
}
.wrapper,
.lk {
	width: 100%;
	height: 100%;
	background: #000;
}
.wrapper div {
	width: 100%;
	height: 100% !important;
	color: #fff;
	position: relative;
}
.wrapper div::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 13, 38, 0.45);
	z-index: 0;
}
.lk h1 {
	position: absolute;
	left: 50%;
	bottom: 200px;
	width: 90%;
	max-width: 800px;
	transform: translateX(-50%);
	z-index: 1;
	text-align: center;
	font-size: clamp(2.5rem, 4vw, 3rem);
	letter-spacing: -1px;
	line-height: 1.2;
	font-weight: 600;
}
.lk .s1 {
    background: url("../img/s1b.jpg") no-repeat center center;
	background-size: cover;
}
.lk .s2 {
    background: url("../img/s2b.jpg") no-repeat center center;
	background-size: cover;
}
.lk .s3 {
    background: url("../img/s3b.jpg") no-repeat center center;
	background-size: cover;
}
.slick-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	list-style: none;
	z-index: 10;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
	border-radius: 50%;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.field {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}
.scroll {
	width: 50px;
	height: 50px;
	border: 2px solid #f5f5f5;
	border-radius: 50%;
	position: relative;
	animation: down 1.5s infinite;
	-webkit-animation: down 1.5s infinite;
	&::before {
		content: '';
		position: absolute;
		top: 11px;
		left: 15px;
		width: 14px;
		height: 14px;
		border-left: 2px solid #f5f5f5;
  		border-bottom: 2px solid #f5f5f5;
		transform: rotate(-45deg);
	}
}

@keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

@-webkit-keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

.about {
	width: 100%;
}
.container h1 {
	font-size: 3rem;
	letter-spacing: -1px;
	font-weight: 800;
}
.container p {
	font-size: clamp(1rem, 4vw, 1.25rem);
	padding: 30px 0;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.banner {
	width: 100%;
	display: grid;
	grid-template-columns: 331px auto 300px;
	background: #000;
	align-items: center;
}
.banner p {
	font-size: clamp(1.125rem, 4vw, 1.5rem);
	color: #fff;
	max-width: 390px;
}
.cta {
	background: rgba(243, 125, 0, 1);
	border-radius: 10px;
	width: 200px;
	color: #fff;
	font-weight: 600;
	font-size: 22px;
	padding: 15px 0;
	margin: 0 auto;
	cursor: pointer;
	text-align: center;
}

.wedo {
	width: 100%;
	background: url('../img/hacemos.webp') no-repeat center top rgba(0, 13, 38, 1);
	background-size: 100% auto;
	color: #fff;
	padding: 180px 0 0;
}
.features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	margin: 50px 0;
}
.features div {
	background: rgba(243, 125, 0, 1);
	border-radius: 10px;
	padding: 40px;
	display: grid;
	place-items: center;
}
.features div p {
	padding: 10px 0 0;
}

.projects ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}
.projects img {
	width: 100%;
	cursor: pointer;
}

.contact {
	width: 100%;
	background: rgba(0, 13, 38, 1);
	color: #fff;
	position: relative;
}
.success, .error {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	display: none;
}
.error {
	background: #FFE5E5;
	padding: 10px 20px;
	color: #000;
	border-radius: 10px;
}
.success {
	background: #e5fff4;
	padding: 10px 20px;
	color: #000;
	border-radius: 10px;
}

.form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
	max-width: 900px;
	margin: 0 auto;
}
.form .button {
	grid-column: 1 / 3;
}
textarea,
input {
	border: 1px solid #999;
	padding: 15px 10px;
	width: 100%;
	border-radius: 10px;
	font-family: 'Poppins', sans-serif;
	margin-top: 10px;
	color: rgba(137, 137, 137, 1);
}
::placeholder {
	color: rgba(137, 137, 137, 1);
}
.err {
	border: 1px solid #FF3F42 !important;
	background: #FFE5E5;
}
.e {
	font-size: .75rem;
	color: #FF3F42;
	margin: 5px 0;
}
textarea {
	height: calc(100% - 10px);
}
.contact .container {
	text-align: left;
	padding: 100px 20px 30px;
}
.contact .container p {
	padding: 0 0 30px;
}
.contact .container p,
.contact .container h1 {
	max-width: 900px;
	margin: 0 auto;
}

.sk-chase {
	width: 30px;
	height: 30px;
	position: relative;
	animation: sk-chase 2.5s infinite linear both;
	margin: 0 auto;
}
  
.sk-chase-dot {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0; 
	animation: sk-chase-dot 2.0s infinite ease-in-out both; 
}
  
.sk-chase-dot:before {
	content: '';
	display: block;
	width: 25%;
	height: 25%;
	background-color: #fff;
	border-radius: 100%;
	animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
}
  
.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }
  
@keyframes sk-chase {
	100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot {
	80%, 100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot-before {
	50% {
	  transform: scale(0.4); 
	} 100%, 0% {
	  transform: scale(1.0); 
	} 
}

footer {
	width: 100%;
	background: rgba(0, 13, 38, 1);
	color: #fff;
	position: relative;
}
footer .container {
	max-width: 900px;
	padding: 10px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: space-between;
	text-align: left;
	gap: 200px;
}
footer ul {
	width: 100%;
}
footer .info {
	text-align: right;
}
footer .tel {
	border-bottom: 1px solid rgba(137, 137, 137, 1);
	margin-bottom: 20px;
}
footer li {
	padding-bottom: 20px;
}
footer li span {
	color: rgba(137, 137, 137, 1);
}
footer img {
	display: inline-block;
	position: relative;
	top: 5px;
	margin-right: 5px;
	max-width: 24px;
}
footer a {
	color: #fff;
}
.fb {
	margin-right: 25px;
}

.mob-menu {
	display: none;
}

@media screen and (max-width: 1080px) {
	.features {
		max-width: 600px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
		margin: 50px auto;
	}
	.features div:nth-of-type(3) {
		grid-column: 1 / 3;
	}
}
@media only screen and (max-width:980px) {
	nav {
		width: 100%;
		height: 80%;
		position: fixed;
		top: 0;
		left: 0;
		display: block;
		transform: translateX(-110%);
		opacity: 0;
		z-index: 1;
		background: #fff;	
		transition: transform 1s ease-in-out;
	}
	nav ul {
		width: 100%;
		display: block;
		grid-template-columns: unset;
		gap: unset;
		align-items: left;
		font-weight: 500;
	}
	nav li {
		margin: 5px 0;
		padding: 30px 30px 20px;
		text-transform: uppercase;
		font-size: 1.25rem;
		cursor: pointer;
		text-align: left;
		font-weight: 800;
		letter-spacing: -1px;
		color: #000 !important;
	}
	body.present nav {
		opacity: 1;
		transform: translateX(0);
	}
	body.present header {
		backdrop-filter: unset;
	}

	header .container {
		padding: 0;
		display: grid;
		grid-template-columns: max-content auto;
		justify-content: space-between;
		align-items: center;
	}
	.logo {
		max-width: 200px;
	}
	.mob-menu {
		display: block;
		display: grid;
		align-items: center;
		justify-content: flex-end;
	}
	body.present .mob-menu {
		position: fixed;
		z-index: 2;
		top: 29px;
		right: 10px;
	}
	.mob-menu span{
		display: block;
		width: 33px;
		height: 4px;
		margin-bottom: 5px;
		position: relative;	
		background: #000;
		border-radius: 3px;	
		z-index: 1;	
		transform-origin: 4px 0px;	
		transition: transform .5s cubic-bezier(0.77,0.2,0.05,1.0),
					opacity .1s ease;
	}
	.mob-menu span:first-child {
		transform-origin: 0% 0%;
	}

	.mob-menu span:nth-last-child(2){
		transform-origin: 0% 100%;
	}
	body.present .mob-menu span {
		opacity: 1;
		transform: rotate(45deg) translate(-3px, -1px) !important;
		transform-origin: unset;
	}
	body.present .mob-menu span:nth-last-child(3) {
		opacity: 0;
		transform: rotate(0deg) scale(0.2, 0.2);
		transform-origin: unset;
	}
	body.present .mob-menu span:nth-last-child(2) {
		transform: rotate(-45deg) translate(-5px, 3px) !important;
		transform-origin: unset;
	}

	.banner {
		grid-template-columns: auto max-content;
		overflow: hidden;
		position: relative;
	}
	.banner__pic {
		position: absolute;
		z-index: 0;
		opacity: .3;
	}
	.banner__copy,
	.banner__cta {
		position: relative;
		z-index: 1;
	}
	.banner__cta {
		padding: 0 20px;
	}
}

@media screen and (max-width: 720px) {
	.form {
		gap: 30px;
	}
	.features img {
		width: 100px;
	}
}

@media screen and (max-width: 680px) {
	.features {
		max-width: 380px;
		display: grid;
		grid-template-columns: 100%;
		gap: 40px;
		margin: 50px auto;
	}
	.form .button,
	.features div:nth-of-type(3) {
		grid-column: unset;
	}
	.projects ul {
		grid-template-columns: 100%;
	}
	.projects ul li:last-of-type {
		display: none;
	}
	.form {
		grid-template-columns: 100%;
		gap: 0px;
	}
	textarea {
		height: 200px;
		margin-bottom: 15px;
	}
	footer .container {
		padding: 10px 20px;
		grid-template-columns: 100%;
		justify-content: unset;
		gap: 50px;
	}
	footer .info {
		text-align: left;
	}
	.logo {
		max-width: 160px;
	}
	.banner {
		grid-template-columns: 100%;
		padding: 0 50px 30px;
	}
	.wedo {
		padding: 80px 0 0;
	}
	.lk .s2 {
		background: url("../img/s2.jpg") no-repeat center center;
		background-size: cover;
	}
}

@media only screen and (max-width: 920px) and (max-height: 480px) and (orientation: landscape) { 
	.wrapper, .lk {
		height: 120vh;
		min-height: 120vh;
	}
	.field {
		display: none;
	}
}