@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap);


/* var text-decoration */
/*--
	Common Css
--*/
.left_txt{
  text-align: left;
}
.center_txt{
  text-align: center;
}
body {
  font-family: 'Montserrat Medium', sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat Black', sans-serif;
}
h2 {
  font-size: 30px;
  font-weight: 400;
  color: rgb(0, 110, 255);
}
h3 {
  font-size: 28px;
  font-weight: 300;
}
p {
  font-size: 20px;
  line-height: 28px;
  color: rgb(72, 72, 72);
  text-align: justify;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
a,
a:active,
a:focus,
a:active {
  text-decoration: none !important;
}

hr{
  background-color: blue;
}

.titulos{
  padding-top: 25px;
  padding-bottom: 70px;
  line-height: 25px;
}
.titulos h3{
  font-family: 'Dancing Script', cursive;
  color: rgb(64, 64, 64);
  background-color: rgba(172, 172, 172, 0.3);
  font-size: 45px;
  transform: rotate(-8deg);
  line-height: 25px;
  height: 70px;
  width: 400px;
  padding: 20px;
}
.subtitulos{
  padding-top: 15px;
  padding-bottom: 0;
  line-height: 25px;
}
.subtitulos h2{
  text-align: left;
  font-family: 'Montserrat Medium', sans-serif;
  font-size: 20px;
  font-weight: bold;
}
.caja_nav{
  height: 80px;
}
.txt_1 p{
  font-family: "Montserrat Medium", sans-serif;
  text-align: center;
  font-size: 20px;
}
.txt_2 p{
  font-family: "Montserrat Medium", sans-serif;
  text-align: center;
  font-size: 20px;
}
/*--
	Header Start 
--*/
header {
  font-family: 'Montserrat Medium', 'sans-serif';
  /*background: rgba(0, 112, 192, 0.5);*/
  background: rgba(255, 255, 255, 1);
  padding: 0px 0;
  opacity: 1;
  position: fixed;
  width: 100%;
  z-index: 100;
  transition: 1.5s;
  height: 105px;
}
header .logo_resp{
  display: none;
}
header .header_txt{
  display: none;
}
header .navbar-nav {
  margin-top: 30px;
  margin-right: 25%;
}

/* Menu animado */

#nav-button{
  display: none;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
#nav-button span{
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-button span:nth-child(1) {
  top: 0px;
}
#nav-button span:nth-child(2),#nav-button span:nth-child(3) {
  top: 11px;
}
#nav-button span:nth-child(4) {
  top: 22px;
}
#nav-button.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#nav-button.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-button.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* Menu animado */

header img{
  padding-top: 20px;
  margin-left: 14%;
  height: 85px;
  width: 100px;
}
header .navbar-nav li a {
  margin-top: 0px;
  color: rgba(0,112,192,255);
  /* rgba(0,112,192,255) */

  padding: 0px 20px;
  font-size: 18px;
  font-family: "Montserrat Medium", sans-serif;
  transition: 0.3s;
}
header .navbar-nav li a:hover {
  color: #000;
  border-bottom: 3px #ffcc00 solid;
  border-radius: 20px;
}
/*---------------------------------------------
					Index Start 
-----------------------------------------------*/
/*--
	Slider Start 
--*/
#slider {
  background: url('../img/slider-bg.webp');
  background-size: cover;
  position: relative;
  background-position: 10% 0%;
  padding: 350px 0 80px 0;
  font-family: 'Montserrat', sans-serif;
  height: 600px;
  width: 100%;
}
#slider:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #8b86a3, #322e40);
  opacity: 0;
}
#slider .fondo{
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 30px;
  width: 70%;
  height: 100px;
  margin-left: 15%;
}
#slider .slider_logo{
  margin-top: 60px;
  width: 15%;
  display: flex;
  margin-left: 100px;
}
#slider img{
  height: 130px;
  width: 170px;
  display: flex;
}
#slider .eslogan{
  width: 100%;
  margin-left: 5%;
}
#slider .eslogan h1{
  font-size: 60px;
  color: black;
  text-align: center;
  font-family: 'Montserrat Medium', sans-serif;
  font-weight: bold;
}
/*--
	service Start 
--*/
#service {
  width: 100%;
  padding: 20px 0;
  margin-top: 50px;
}
#service .titulos h3{
  width: 500px;
  margin-left: 28%;
}
#service .items{
  width: 100%;
  margin-top: 30px;
  display: flex;
  margin: auto;
}
#service .item {
  background-color: grey;
  background-size: contain;
  width: 350px;
  height: 800px;
  margin: 10px;
  border-radius: 20px;
}
#service .fondo {
  height: 100%;
  padding: 20px;
  border-radius: 20px;
}
#service .item:nth-child(1){
  background-image: url(../img/1.webp);
}
#service .item:nth-child(1) .fondo{
  background-color: rgba(191,191,191, 0.5);
}
#service .item:nth-child(2){
  background-image: url(../img/2.webp);
}
#service .item:nth-child(2) .fondo{
  background-color: rgba(253, 249, 22, 0.5);
}
#service .item:nth-child(3){
  background-image: url(../img/3.webp);
}
#service .item:nth-child(3) .fondo{
  background-color: rgba(66,136,240, 0.5);
}
.item .contenido{
  margin-top: 0;
  padding-top: 85%;
}
.item h1{
  text-align: center;
  font-family: 'Montserrat Medium', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: black;
  transition: 0.4s;
}
#service .item h1:hover {
  color: rgb(0, 110, 255);
}
#service .item p{
  margin-top: 50px;
  text-align: left;
  font-size: 18px;
}
#service .items button{
  font-family: 'Dancing Script', cursive;
  background-color: #ffcc00;
  height: 50px;
  width: 180px;
  margin-top: 150px;
  margin-left: -200px;
  border-radius: 20px;
  border: 2px black solid;
  color: black;
  font-size: 25px;
  transition: 0.5s;
}
#service .items button:hover{
  background-color: #e6b800;
}

/*--
	Demos start
--*/
#demos{
  background: url('../img/servicios_slider-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
}
#demos .fondo{
  background-color: rgba(100, 100, 100, 0.5);
  height: 100%;
}
#demos .video{
  text-align: center;
  padding-top: 100px;
}
#demos .video h2{
  color: white;
  margin-bottom: 50px;
}
#demos video{
  height: 30%;
  width: 50%;
}
/*--
	Demos close
--*/

/*--
	Clientes start
--*/
#clientes{
  margin-top: 50px;
  margin-bottom: 100px;
}

#clientes h3{
  margin-left: 30%;
}

#clientes .item{
  height: 50%;
  width: 30%;
  margin-left: 20px;
  display: inline-block;
}

#clientes .item p{
  font-size: 14px;
  text-align: center;
}

#clientes .imagen{
  height: 100%;
  width: 100%;
  text-align: center;
}

#clientes img{
  height: 80px;
  width: 250px;
}
/*--
	Clientes close
--*/


/*--
	Blog start
--*/
.separador{
  height: 25px;
  width: 100%;
  background-color: rgba(0, 112, 192, 1);
}
.blog-box{
  background-color: rgba(191, 191, 191, 0.5);
  padding: 50px;
}
.blog-box .titulos h3{
  width: 350px;
  margin-left: 34%;
}
#blog{
  text-align: left;
}
.post-allblog{
  background-color: black;
  width: 30%;
  height: 400px;
  padding: 10px;
  display: inline-block;
  border-radius: 15px;
}
.post-allblog:nth-child(n+2){
  margin-left: 40px;
}
.caja-post img{
  width: 100%;
  height: 250px;
  border-radius: 15px;
}
.caja-post #titulo_post{
  font-weight: bold;
  display: flex;
  margin-top: 35px;
  font-size: 16px;
  text-align: center;
  color: white;
}
/*--
	Blog close 
--*/
/*---------------------------------------------
					Index Close 
-----------------------------------------------*/

/*---------------------------------------------
					Nosotros Start 
-----------------------------------------------*/
/*--
	intro Start 
--*/
#intro {
  padding: 80px 250px;
}
#intro .titulos{
  margin-left: 30%;
}
#intro .titulos h3{
  width: 300px;
}
#intro .info{
  height: 450px;
  background-image: url(../img/formas.webp);
  background-repeat: no-repeat;
  background-size: 70%;
  background-position-x: -50px;
  background-position-y: center;
  display: flex;
  margin-top: 50px;
  padding-top: 80px;
}
#intro .intro_info{
  display: inline-block;
  width: 35%;
  height: 300px;
  margin-left: 50px;
}
#intro .intro_info:nth-child(1){
  margin-left: 5%;
  width: 40%;
}
#intro .intro_info img{
  height: 100%;
}

/*---------------------------------------------
					Nosotros Close 
-----------------------------------------------*/


/*---------------------------------------------
					servicios Start 
-----------------------------------------------*/

/*--
	Slider Start 
--*/
#servicios #slider {
  background: url('../img/slider-bg.webp');
  background-size: cover;
}

/*--
	service Start 
--*/
#servicios #service {
  width: 100%;
  padding: 100px 0;
}
#service h3{
  width: 300px;
}
#servicios #service .items{
  display: block;
}
#servicios #service .item {
  margin: auto;
  width: 80%;
  height: 500px;
  margin-top: 50px;
}
#servicios #service .fondo {
  height: 100%;
  padding: 80px;
  padding-top: 0px;
  border-radius: 20px;
}
#servicios #service .item:nth-child(1){
  background-image: url(../img/servicios_2.webp);
  background-size: cover;
}
#servicios #service .item:nth-child(1) .fondo{
  background-color: rgba(150, 150, 150, 0.5);
}
#servicios #service .item:nth-child(2){
  background-image: url(../img/servicios_1.webp);
  background-size: cover;
}
#servicios #service .item:nth-child(2) .fondo{
  background-color: rgba(255, 252, 75, 0.5);
}
#servicios #service .item:nth-child(2) .contenido1{
  display: inline-block;
  width: 30%;
  margin-left: 10%;
}
#servicios #service .item:nth-child(2) h2{
  text-align: center;
}
#servicios #service .item:nth-child(2) p{
  text-align: justify;
}
#servicios #service .item:nth-child(2) .contenido2{
  display: inline-block;
  width: 50%;
  margin-left: 30px;
}
#servicios #service .item:nth-child(3){
  background-image: url(../img/servicios_3.webp);
  background-size: cover;
}
#servicios #service .item:nth-child(3) .fondo{
  background-color: rgba(88, 149, 240, 0.5);
}
#servicios .item .contenido{
  padding-top: 10%;
}
#servicios .item h1{
  text-align: center;
  font-family: 'Montserrat Medium', sans-serif;
  font-weight: bold;

  font-size: 50px;
  color: black;
}
#servicios .item p{
  color: black;
  margin-top: 50px;
  text-align: justify;
  font-weight: bold;
}

/*Que_es_rpa Start*/
#que_es_rpa .titulos{
  padding-top: 0;
  margin-left: 38%;
  padding-bottom: 0px;
}
#que_es_rpa .titulos h3{
  width: 300px;
}
#que_es_rpa .info{
  height: 450px;
  background-image: url(../img/formas.webp);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position-x: 600px;
  background-position-y: center;
  display: flex;
  margin-top: 50px;
  padding-top: 80px;
}
#que_es_rpa .intro_info{
  display: inline-block;
  width: 35%;
  height: 300px;
  margin-left: 50px;
}
#que_es_rpa .intro_info p{
  font-size: 18px;
}
#que_es_rpa .intro_info:nth-child(1){
  margin-left: 10%;
  width: 40%;
}
#que_es_rpa .intro_info:nth-child(2){
  margin-left: 0;
  width: 40%;
}
#que_es_rpa .intro_info img{
  height: 100%;
}
#que_es_rpa button{
  font-family: 'Dancing Script', cursive;
  background-color: #ffcc00;
  height: 50px;
  width: 180px;
  margin-top: 10px;
  margin-left: 200px;
  border-radius: 20px;
  border: 2px black solid;
  color: black;
  font-size: 25px;
  transition: 0.5s;
}
#que_es_rpa button:hover{
  background-color: #e6b800;
}

/*Ventajas start*/
#ventajas {
  height: 700px;
  width: 100%;
  text-align: center;
}
#ventajas .titulos{
  padding-top: 100px;
  margin-left: 29%;
  padding-bottom: 0px;
}
#ventajas .titulos h3{
  transform: rotate(-2deg);
  height: 80px;
  width: 600px;
  padding: 25px
}
#ventajas .items{
  width: 100%;
}
#ventajas .ventajas-item {
  width: 300px;
  height: 300px;
  margin-top: 50px;
  margin-left: 0;
}
#ventajas .ventajas-item:nth-child(1) {
  margin-left: 20%;
}
#ventajas .circulo{
  border: 3px yellow dotted;
  border-radius: 50%;
  width: 200px;
  height: 200px;

  font-size: 23px;
  font-weight: bold;
  font-family: 'Montserrat Black', sans-serif;
  padding-top: 60px;
}
#ventajas .ventajas-item p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-left: 5px;
  width: 200px;
}

/*Que automatizar*/
#que_automatizar{
  padding: 100px;
  padding-top: 50px;
  background-color: rgb(31, 78, 121);
}
#que_automatizar .titulos{
  margin-left: 26%;
}
#que_automatizar .titulos h3{
  color: white;
  width: 500px;
}
#que_automatizar .textos{
  padding: 0 100px;
}
#que_automatizar p{
  color: white;
  font-size: 18px;
}
#que_automatizar .tareas1{
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  padding-top: 50px;
}
#que_automatizar .tareas_ppales{
  width: 200px;
  margin: 3px;
  border: 1px yellow solid;
  border-radius: 10px;
  display: inline-block;

  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  padding: 3px;
}
#que_automatizar .tareas2{
  text-align: center;
  font-size: 1.5em;
}
#que_automatizar .tareas_sec{
  color: white;
  width: 150px;
  margin: 4px;
  padding: 10px;
  display: inline-block;
  border-bottom: 1px solid gray;

  text-align: center;
  font-size: 15px;
}
#que_automatizar button{
  font-family: 'Dancing Script', cursive;
  background-color: #ffcc00;
  height: 50px;
  width: 200px;
  margin-top: 50px;
  float: right;
  border-radius: 20px;
  border: 2px black solid;
  color: black;
  font-size: 25px;
  transition: 0.5s;
}
#que_automatizar button:hover{
  background-color: #e6b800;
}
/*--
	Cómo lo hacemos Start
--*/
#como_lo_hacemos .titulos{
  margin-top: 50px;
  margin-left: 32%;
}
#como_lo_hacemos .items{
  display: block;
  padding-bottom: 50px;
  margin: 0 10%;
}
#como_lo_hacemos h1{
  text-align: center;
  font-family: 'Montserrat Light', sans-serif;
  font-size: 24px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  color: black;
  width: 100%;
}
#como_lo_hacemos h2{
  font-size: 22px;
  margin-top: 50px;
}
#como_lo_hacemos p{
  color: black;
  text-align: justify;
  font-size: 18px;
}
/*---------------------------------------------
					servicios Close 
-----------------------------------------------*/

/*---------------------------------------------
					Contacto Start 
-----------------------------------------------*/
/*--
	contact-form Start 
--*/
.contact-bg{
  background: url('../img/img_contacto.webp') no-repeat;
  background-size: cover;
  height: 800px;
}
.contact-bg .fondo{
  height: 100%;
  background-color: rgba(43, 90, 160, 0.5);
}
.contact-item{
  display: block;
  margin-left: 0%;
  width: 100%;
  padding: 100px;
  padding-top: 20px;
}
#contact-form{
  width: 60%;
  margin-left: 20%;
  margin-top: 50px;
  display: block;
  height: 1000px;
}
#contact-form .titulos{
  text-align: center;
  padding-bottom: 60px;
}
#contact-form .titulos h2{
  color: white;
  font-family: "Montserrat Medium", sans-serif;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  font-size: 60px;
}
.form-group input{
  border-radius: 30px;
  height: 50px;
}
.form-group-2 textarea{
  border-radius: 20px;
  width: 100%;
  height: 250px;
}
.botones{
  margin-left: 3%;
  display: inline-block;
}
.botones .item{
  display: inline-block;
}
.botones span{
  color: black;
  font-size: 12px;
}
.botones a{
  color: white;
  cursor: pointer;
  transition: 0.5s;
}
.botones a:hover{
  color: #ffcc00;
}
#contact-form button{
  border-radius: 15px;
  font-size: 20px;
  height: 60px;
  width: 150px;
  margin: 20px 47%;
  background-color: #ffcc00;
  border: white 2px solid;
  color: black;
  transition: 0.5s;
}
#contact-form button:hover{
  background-color: #f0c000;
  color: white;
}
#contact-form #alerta{
  background-color: red;
}
#contact-form #alerta button{
  background-color: red;
}
#contact-form #alerta span{
  background-color: red;
}
/*---------------------------------------------
					Contacto Close 
-----------------------------------------------*/

/*---------------------------------------------
					Info Legal Start 
-----------------------------------------------*/

#info_seguridad, #info_datos{
  padding: 150px;
  padding-top: 100px;
}
#info_seguridad p, #info_datos p{
  font-size: 16px;
  text-align: justify;
}
#info_seguridad .titulos h2, #info_datos .titulos h2{
  line-height: 1.5;
}
#info_seguridad ul, #info_datos ul{
  list-style-type: disc;
  margin-left: 65px;
}
#info_seguridad .rayas, #info_datos .rayas{
  list-style-type: "-  ";
  margin-left: 65px;
}
#info_seguridad ol, #info_datos ol{
  text-align: justify;
  margin-left: 25px;
}
#info_seguridad li, #info_datos li{
  margin-top: 10px;
  font-size: 16px;
}

/*---------------------------------------------
					Info Legal Close 
-----------------------------------------------*/

/*---------------------------------------------
					proximamente Start 
-----------------------------------------------*/

#proximamente{
  padding-top: 50px;
}
#proximamente .titulos h2{
  line-height: 1.5;
  padding: 100px;
}
#proximamente .titulos button{
  font-size: 30px;
  height: 100px;
  width: 500px;
  margin-top: 0px;
  margin-left: 30%;
  transition: 0.5s;
}

/*---------------------------------------------
					proximamente Close 
-----------------------------------------------*/

/*--
	footer Start 
--*/
footer {
  height: 430px;
}
footer .separador{
  background: linear-gradient(rgba(191, 191, 191, 0.5), black);
}
footer .container{
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-left: 50px;
}
footer .items{
  margin-top: 50px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  width: 100%;
}
.footer-item{
  display: inline-block;
}
footer #links{
  width: 120px;
  text-align: left;
  margin-top: 200px;
}
footer #links a{
  color: white;
  font-size: 15px;
  line-height: normal;
  cursor: pointer;
  transition: 0.5s;
}
footer #links a:hover{
  color: #0070C0;
}
.final{
  margin-left: 265px;
  width: 26%;
  height: 300px;
  background-color: rgb(218,227,243);
  display: block;
  padding: 20px;
  border-radius: 40px;
}
.final .txt{
  margin-top: 8%;
}
.final p{
  line-height: normal;
  text-align: center;
  color: black;
  font-size: 15px;
}
.final button{
  margin-top: 10px;
  margin-left: 180px;
  color: black;
  font-family: 'Dancing Script', cursive;
  font-size: 25px;
  height: 60px;
  width: 200px;
  border-radius: 40px;
  border: 2px white solid;
  background-color: #ffcc00;
  transition: 0.5s;
}
footer #info{
  margin-top: 150px;
  margin-left: 20%;
  text-align: center;
}
footer .social{
  margin-bottom: 15px;
}
footer .social img{
  height: 30px;
  width: 30px;
}
footer .iconos{
  display: inline-block;
}
footer .info p{
  line-height: 23px;
}
footer p{
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: white;
  display: block;
}
footer .items-2{
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 10px;
}
footer .items-2 img{
  height: 30px;
  width: 100px;
}
footer #seguridad{
  margin-left: 15%;
}
footer #datos{
  margin-left: 2%;
}
footer #seguridad a, footer #datos a{
  font-size: 12px;
  color: white;
  cursor: pointer;
  transition: 0.5s;
}
footer #seguridad a:hover, footer #datos a:hover{
  color: #0070C0;
}
footer #copyright{
  margin-left: 8%;
}
footer #copyright p{
  font-size: 12px;
}