/*BASE STYLE*/
:root {
  --violet-color: #43276f;
	--pink-color: #c684b8;
	--lila-color: #744092;
	--blue-color: #58b4e6;
	--text-color: #7a7a7a;
}
* {
    margin: 0;
    padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: #f6f8ff;
}

/* =============================================================================
   My CSS
   ========================================================================== */

/* ---- base ---- */

canvas{
  display:block;
  vertical-align:bottom;
}

/* ---- particles.js container ---- */

#particles-js{
  width: 100%;
  height: 100%;
  background-color: #f6f8ff;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.portada{
	position: relative;
}
.logo{
	position: absolute;
	left: 8%;
	top: 8px;
	width: 300px;
}
.contentBajada{
	position: absolute;
	left: 8%;
	top: 25%;
	width: 450px;
}
.contentImage{
	position: absolute;
	right: 8%;
	top: 20%;
}
h1{
	font-size: 40px;
	color: var(--violet-color);
	font-weight: 700;
}
h1 span{
	color: var(--blue-color);
}
.contentBajada p, .text{
	color: var(--text-color);
	font-size: 18px;
	font-weight: 400;
}
.boton{
	background: linear-gradient(90deg, rgba(116,64,146,1) 0%, rgba(88,180,230,1) 100%);
	color: white;
	border-radius: 40px;
	font-size: 16px;
	height: 54px;
	line-height: 54px;
	padding: 0 25px;
	text-transform: uppercase;
	transition: all 1.5s ease-in;
}
.boton:hover{
	background: linear-gradient(90deg, rgba(88,180,230,1) 0%, rgba(116,64,146,1) 100%);
	color: white;
}
h2{
	font-size: 30px;
	color: var(--violet-color);
	font-weight: 700;
}
.services, .porque{
	text-align: center;
	background-image: url("../img/bg-violet.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 80px 0;
}
.services h2, .porque h2{
	font-size: 30px;
	color: white;
	font-weight: 700;
}
.cardMercado{
	box-shadow: 0 0 0.2rem #fff, 0 0 0.2rem #fff, 0 0 2rem #bc13fe, 0 0 0.8rem #bc13fe, 0 0 2.8rem #bc13fe, inset 0 0 1.3rem #bc13fe;
	padding: 32px;
	color: white;
	border-radius: 0 40px 10px 10px;
	transition: transform 0.5s;
	transform: scale(1);
	width: 500px;
	margin: 0 auto;
}
.cardMercado:hover {
	transform: scale(1.1);
	box-shadow: 0 0 0.2rem #fff, 0 0 0.2rem #fff, 0 0 2rem #58b4e6, 0 0 0.8rem #58b4e6, 0 0 2.8rem #58b4e6, inset 0 0 1.3rem #58b4e6;
}
h3{
	font-size: 20px;
	font-weight: 700;
}
.gestion h3{
	color: var(--blue-color);
}
.destacar{
	font-weight: 600;
	color: var(--lila-color);
}
/* .gestion .row{
	display: flex;
  justify-content: center;
  align-items: center;
} */
.card{
	margin: 16px 0;
	box-shadow: 4px 6px 13px 0px rgba(0,0,0,0.75);
	height: 380px;
}

/*Contacto*/
#contacto .boton{
	width: auto;
}
.contact-form .form-field {
  position: relative;
  margin: 32px 0;
}
.contact-form .input-text {
  display: block;
  width: 100%;
  height: 36px;
  border-width: 0 0 2px 0;
  border-color: #939498;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
	background-color: #f6f8ff;
}
.contact-form .input-text:focus {
  outline: none;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
	border-color:var(--blue-color);
}
.contact-form .input-text:focus + .label,
.contact-form .input-text.not-empty + .label {
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
					color:var(--blue-color);
}
.contact-form .label {
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #939498;
  cursor: text;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, 
  -webkit-transform .2s ease-in-out;
}
.mapa{
	height: 450px;
	width: 100%;
}
.contactUs img:hover{
	transition: transform 1000ms linear 0s;
	transform: scale(1.05, 1.05);
}
.contactUs a{
	text-decoration: none;
	color:var(--blue-color);
}
footer{
	padding: 32px 0;
}
footer p{
	color:var(--violet-color);
}
.subtitleIcon{
	color:white;
}
.redes{
	display: flex;
}
.redes .red{
	color: #ffffff;
	font-size: 1.33rem;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	transition: all 280ms ease;
}
.redes .red{
	box-shadow: 0 0 0 1em #43276f inset;
}
.redes:hover .red{
	color: #43276f;
}
.redes:hover .red, .redesFooter:hover .red{
	background-color: #ffffff;
}
.redes:hover .red{
	box-shadow: 0 0 0 1px #43276f inset;
	color: #43276f;
}
.fa-whatsapp, .fa-instagram, .fa-envelope, .fa-twitter, .fa-tiktok{
	padding: 12px;
}
.fa-envelope, .fa-youtube{
	padding: 12px 10px;
}
.fa-discord{
	padding: 12px 8px;
}
.redesMenu{
	position: absolute;
	right: 8%;
	top: 8px;
}
/*Login*/
#formUsuario{
	width: 500px;
}
.float{
	position:fixed;
	width:70px;
	height:70px;
	bottom:30px;
	right:30px;
}
.my-float{
	width: 70px;
}
@media (max-width: 767.98px) {
	.portada{
		height: 85vh;
	}
	.logo {
    width: 275px;
	}
	h1 {
    font-size: 35px;
	}
	.redesMenu{
		display: none!important;
	}
	.partners, .subFooter{
		flex-direction: column!important;
	}
	.contentBajada{
		top: 20%;
		width: 300px;
	}
	.contentImage{
		position: absolute;
		right: 8%;
		top: 20%;
	}
	.contentImage img{
		display: none;
	}
	.cardMercado, .card{
		height: auto;
	}
	.cardMercado{
		width: 300px;
	}
  .redesSociales{
		flex-wrap: wrap;
    gap: 16px;
	}
	footer{
		text-align: center;
	}
}
@media (min-width: 768px) and (max-width: 991.98px) { 
	.portada{
		height: 70vh;
	}
	.contentImage img{
		display: none;
	}
	.redesMenu{
		display: none!important;
	}
}
@media (min-width: 992px) and (max-width: 1299.98px) {
	.contentImage img, .contentBajada, .cardMercado{
    width: 400px;
	}
	h1 {
    font-size: 33px;
	}
	.contentBajada p, .text {
    font-size: 16px;
	}
	.card{
    height: 400px;
	}
}
@media (min-width: 1400px) {
	.contentBajada {
    width: 600px;
	}
	h1 {
    font-size: 50px;
	}
	.contentBajada p, .text {
    font-size: 25px;
	}
	.boton {
    font-size: 24px;
    height: 70px;
    line-height: 70px;
	}
	.contentImage img{
		width: 800px;
	}
	.services h2, .porque h2, h2 {
    font-size: 45px;
	}
	.service p{
    font-size: 25px;
	}
	.cardMercado img, .porque img{
		width: 100px;
	}
	.services h3 {
    font-size: 25px;
	}
	.card{
		height: auto;
	}
	.gestion h3 {
    font-size: 30px;
	}
	.subtitleIcon {
    font-size: 25px;
	}
}

@media (min-width: 1401px) and (max-width: 1699.98px) {
	.contentImage img{
		width: 600px;
	}
}