.features {
	background-color: rgb(212, 212, 212);
	height: auto;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
	font-family: "Outfit", sans-serif !important;
	font-weight: 800;
}
p,a{
	font-family: "Space Grotesk", sans-serif !important;
}
img {
	max-width: 100%;
}
@keyframes beat {
	0%, 50%, 100% {
		transform: scale(1.2, 1.2);
	}
	30%, 80% {
		transform: scale(0.92, 0.95);
	}
}
.imgApi{
	animation: 3s ease 0s infinite beat;
}
@keyframes slide {
	from {
		transform: translateX(30%);
		/* Comienza a la derecha de la vista */
	}
	to {
		transform: translateX(-30%);
		/* Termina a la izquierda de la vista */
	}
}
.imgApi1{
	animation: slide 3s linear infinite;
}
@keyframes blink {
	0% {
		opacity: 1;
		/* Totalmente visible al inicio */
	}
	50% {
		opacity: 0.3;
		/* Totalmente invisible en el punto medio */
	}
	100% {
		opacity: 1;
		/* Vuelve a ser totalmente visible al final */
	}
}
.imgApi2{
	animation: blink 1.3s linear infinite;
}
.imgApi2a{
	animation: blink 2s linear infinite;
}
@keyframes rotate {
	from {
		transform: rotate(0deg);
		/* Comienza sin rotación */
	}
	to {
		transform: rotate(360deg);
		/* Termina con una rotación completa de 360 grados */
	}
}
.imgApi3{
	animation: rotate 3s linear infinite;
}
@keyframes moveDown {
	0% {
		transform: translateY(0);
		/* Comienza en la posición inicial */
	}
	100% {
		transform: translateY(45px);
		/* Mueve hacia abajo hasta el final de la vista */
	}
}
.currency{
	position: absolute;
	top:3;
	left:24px;
	animation: moveDown 1s linear infinite;
}
@keyframes moveUpRight {
	0% {
		transform: translate(-100, 100%);
		/* Comienza desde abajo */
	}
	100% {
		transform:translate(100%, -100%);
		/* Termina en la esquina superior derecha */
	}
}
.arrow{
	position: absolute;
	top:8px;
	left:5px;
	animation: moveUpRight 1s linear infinite;
}
@keyframes rotateAroundCenter {
	0% {
		transform: rotate(0deg);
		/* Comienza sin rotación */
	}
	25% {
		transform: rotate(-30deg);
		/* Gira 45 grados a la izquierda */
	}
	45% {
		transform: rotate(0deg);
		/* Regresa a la posición inicial */
	}
	65% {
		transform: rotate(30deg);
		/* Gira 45 grados a la derecha */
	}
	85% {
		transform: rotate(0deg);
		/* Regresa a la posición inicial */
	}
}
.security {
	animation:rotateAroundCenter 2s ease-in-out infinite;
	transform-origin: center;
	/* La animación dura 5 segundos, es continua y repetitiva */
}
@keyframes rotateClockwise {
	0% {
		transform: rotate(0deg);
		/* Comienza sin rotación */
	}
	100% {
		transform: rotate(360deg);
		/* Completa una rotación de 360 grados */
	}
}
/* Define la animación de rotación en sentido antihorario */
@keyframes rotateCounterClockwise {
	0% {
		transform: rotate(0deg);
		/* Comienza sin rotación */
	}
	100% {
		transform: rotate(-360deg);
		/* Completa una rotación de -360 grados (sentido antihorario) */
	}
}
.rotate{
	position: absolute;
	right: -2px;
	top:0px;
	animation: rotateCounterClockwise 8s linear infinite;
}
.rotate1{
	position: absolute;
	left: 0px;
	bottom:3px;
	animation: rotateClockwise 10s linear infinite;
}
@keyframes moveUp{
	0% {
		transform: translateY(0%);
		/* Comienza desde abajo */
	}
	100% {
		transform:translateY(-150%);
		/* Termina en la esquina superior derecha */
	}
}
.tecno{
	animation: moveUp 1s linear infinite;
}
/*CONTACT*/
.contactContainer {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 2rem;
	background-color: #fafafa;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contactContainer h3{
	padding-bottom: 0;
}
.contactContainer p{
	font-weight: 400;
}
.form {
	width: 100%;
	max-width: 820px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
	z-index: 20;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.contact-form {
	background-color: #0d919b;
	position: relative;
}
.circle {
	border-radius: 50%;
	background: linear-gradient(135deg, transparent 20%, #000414);
	position: absolute;
}
.circle.one {
	width: 130px;
	height: 130px;
	top: 130px;
	right: -40px;
}
.circle.two {
	width: 80px;
	height: 80px;
	top: 10px;
	right: 30px;
}
.contact-form:before {
	content: "";
	position: absolute;
	width: 26px;
	height: 26px;
	background-color: #0d919b;
	transform: rotate(45deg);
	top: 50px;
	left: -13px;
}
form {
	padding: 2.3rem 2.2rem;
	z-index: 10;
	overflow: hidden;
	position: relative;
}
.title {
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 0.7rem;
}
.input-container {
	position: relative;
	margin: 1rem 0;
}
.input {
	margin-bottom:12px;
	width: 100%;
	height: 2rem;
	outline: none;
	border: 1.7px solid #fafafa;
	background: none;
	padding: 0.6rem 1.2rem;
	color: #fff;
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	border-radius: 25px;
	transition: 0.3s;
}
.input::placeholder{
	color:rgba(255, 255, 255, 0.765)
}
.error-message {
	color: rgb(209, 4, 4);
	padding-left: 20px;
	margin-top: -5px;
	margin-bottom: 5px;
	font-weight: 800;
	font-size: 0.6rem;
	font-family: "Poppins", sans-serif;
	display: block;
}
textarea.input {
	padding: 0.8rem 1.2rem;
	min-height: 150px;
	border-radius: 22px;
	resize: none;
	overflow-y: auto;
}
.contactContainer .btn {
	padding: 0.6rem 1.3rem;
	background-color: #fff;
	border: 2px solid #fafafa;
	font-size: 0.95rem;
	font-weight: 600;
	color: #0d919b;
	line-height: 1;
	border-radius: 25px;
	outline: none;
	cursor: pointer;
	transition: 0.3s;
	margin: 0;
}
.contactContainer .btn:hover {
	background-color: transparent;
	color: #fff;
}
.input-container span {
	position: absolute;
	top: 0;
	left: 10px;
	transform: translateY(-50%);
	font-size: 0.8rem;
	padding: 0 0.4rem;
	color: transparent;
	pointer-events: none;
	z-index: 25;
}
.input-container span:before,.input-container span:after {
	content: "";
	position: absolute;
	width: 15%;
	opacity: 0;
	transition: 0.3s;
	height: 8px;
	background-color: #000d3a;
	top: 50%;
	transform: translateY(-50%);
}
.input-container span:before {
	left: 50%;
}
.input-container span:after {
	right: 50%;
}
.input-container.focus label {
	top: 0;
	transform: translateY(-50%);
	left: 12px;
	font-size: 0.8rem;
}
.input-container.focus span:before,.input-container.focus span:after {
	width: 50%;
	opacity: 1;
}
.contact-info {
	padding: 2.3rem 2.2rem;
	position: relative;
}
.contact-info .title {
	color: #0d919b;
}
.text {
	color: #333;
	margin: 1rem 0 2rem 0;
}
.information {
	display: flex;
	color: #555;
	margin: 0.7rem 0;
	align-items: center;
	font-size: 0.95rem;
}
.information a{
	font-size: 0.95rem;
}
.social-media {
	padding: 2rem 0 0 0;
}
.social-media p {
	color: #333;
}
.social-icons {
	display: flex;
	margin-top: 0.5rem;
}
.social-icons a {
	width: 35px;
	height: 35px;
	border-radius: 40px;
	background: linear-gradient(45deg, #0d919b, #09a8b4);
	color: #fff;
	text-align: center;
	line-height: 35px;
	margin-right: 0.5rem;
	transition: 0.3s;
}
.social-icons a:hover {
	transform: scale(1.05);
}
.contact-info:before {
	content: "";
	position: absolute;
	width: 110px;
	height: 100px;
	border: 22px solid #0d919b;
	border-radius: 50%;
	bottom: -77px;
	right: 50px;
	opacity: 0.3;
}
.big-circle {
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: linear-gradient(to bottom, #000d3a, #000414);
	bottom: 50%;
	right: 50%;
	transform: translate(-40%, 38%);
}
@media (max-width: 600px) {
	.form {
		grid-template-columns: 1fr;
	}
}
