@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700;900&display=swap');

html {
  scroll-behavior: smooth;
}

body{
  margin: 0;
  width: 100%;
}

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #2D2424;
}

header{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-items: center;
}

.topnav{
  display: none;
}


/* Carrusel */

.slideshow-container {
  position: relative;
  width: 100%;
}


.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.headertext_container {
  position: absolute;
  width: 100%;
  bottom: 45%;
  text-align: center;
}

.header_text{
  color: white;
  width: 70%;
  margin: auto;
  font-size: 45px;
  font-weight: 900;
  text-shadow: 2px 2px 3px black;
}

.header_subtext{
  color: white;
  text-shadow: 2px 2px 3px black;
}

.animate__animated .animate__zoomIn {
  --animate-duration: 5s;
  --animate-delay: 5s;
}

.dots {
  margin: 15px;
  position: relative;
  bottom: 20px;
}

.btn a img {
  margin: 10px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.btn {
  z-index: 1;
  bottom: -10px;
  width: 100%;
}


.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Menu */

#navbar {
  overflow: hidden;
}

#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

.sticky {
  position: fixed;
  background: linear-gradient(180deg, rgba(0,0,0,0.4654236694677871) 50%, rgba(0,0,0,0.004) 100%) !important;
  width: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.header_img{
  width: 322px;
  padding: 0 30px ;
}

.menu_container{
  position: absolute;
  display: flex;
  margin: 25px;
  align-items: center;
  justify-content: center;
}

.menu_container ul{
  list-style: none;
  display: flex;
  height: 250px;
}

.menu_container ul li{
  margin: 0 15px;
}

.menu_container ul li a{
  color: white;
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
}

li.menu_item {
  text-shadow: 2px 2px 3px rgb(62, 62, 62);
}

/* Secciones */

/* Quienes somos */

.quienes_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #9a47c1;
    border-bottom: 1px solid #9a47c1;
    padding: 30px 0;
}

.quienes_container h1{
    font-weight: 900;
    font-size: 48px;
}

.quienes_container p{
    text-align: center;
    width: 58%;
    font-size: 20px;
    padding: 10px 0;
    font-weight: 300;
    color: #666666;
    line-height: 20px;
}

.quienes_container p span{
  font-weight: 500;
  color: #666666;
}

.quienes_subcontainer {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  max-width: 1000px;
  justify-content: center;
}

.quienes_subcontainer div{
    display: flex;
    justify-content: center;
    align-items:  center;
    padding: 20px;
    margin: 20px;
}

.quienes_subcontainer img{
    width: 50px;
}

.quienes_subcontainer p{
    font-size: 20px;
    width: 300px;
    height: 80px;
    font-weight: 900;
    line-height: 20px;
}

/* Directores */

section#directores {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #9a47c1;
    padding: 50px 30px;
}

.directores_container {
    display: flex;
}

.dir_subcontainer{
    width: 50%;
    display: flex;
    flex-direction: row;
    margin: 20px;
    border: 1px solid rgb(126, 53, 210);
    padding: 30px 40px;
    border-radius: 20px;
}

.directores_container img{
    width:  250px;
    height: 250px;
    border-radius: 20px;
}

.dir_data{
  display: flex;
  align-items: flex-end;
}

.dir_name{
    display: flex;
    flex-direction: column;
    background: #6F44BC;
    border-radius: 20px;
    width: fit-content;
    height: fit-content;
    padding: 10px 25px;
}

.dir_name h3, .dir_name h4{
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
    font-size: 15px;
}

.dir_name h4{
    font-weight: 100;
}

.dir_text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    align-content: space-between;
}

.dir_text p{
  margin: 10px;
    font-weight: 500;
    line-height: 20px;
    font-size: 15px;
}

.linkedin{
    margin: 20px;
}

.linkedin img{
    width: 30px;
    height: 30px;
    border-radius: unset;
}

a.mas_btn {
  margin: 20px;
  text-decoration: none;
  color: #4E2A8E;
  border: 1px solid #4E2A8E;
  width: fit-content;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
}

/* Testimonial */

#testimonial{
    margin: 40px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #9a47c1;
    overflow: hidden;
}

#testimonial img{
  width: 100%;
}

/* Que hacemos */

section#soluciones {
  padding-bottom: 40px;
  border-bottom: 1px solid #9a47c1;
}

.soluciones_container{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.soluciones_container h1{
  font-weight: 900;
  font-size: 48px;
}

.soluciones_container p{
  width: 70%;
  text-align: center;
  margin: 20px 0;
}

.soluciones_subcontainer {
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 40px 0;
}

.soluciones_subcontainer div{
    display: flex;
    width: 50%;
    height: 250px;
}

.soluciones_subcontainer div img{
  width: 190px;
  height: 190px
}

.text_container {
    flex-direction: column;
    padding: 0 20px;
}

.text_container h3{
  font-size: 18px;
  line-height: 20px;
  font-weight: 900;
  padding: 0;
  margin: 0;
  color: #666666;
}

.text_container h4{
    font-size: 12px;
    font-weight: 300;
    color: #666666;
}

.contact_container {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 40% !important;
 }

 .contact_container img{
     width: 80px !important;
     height: auto !important;
     margin-right: 5%;
 }

.contact_container a{
    border: 2px solid;
    border-radius: 20px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
}

/* Donde estamos */

section#donde {
    height: 800px;
    margin: 30px 0;
    padding: 40px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.donde_container div{
    margin: 20px;
}

.donde_container div h1{
    color: white;
    font-size: 40px;
    padding: 0;
    margin: 20px 0;
}

.donde_container div h3{
    color: white;
    font-size: 18px;
    font-weight: 100;
    margin: 20px 0;
}

.location_container {
    margin: 50px 20px !important;
}

.donde_container .location_container h1{
  color: white;
  border: 2px solid white;
  width: 150px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 20px;
  margin: 10px;
}


/* Footer */

footer{
  height: 1000px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer_container {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 850px;
  margin: 0 40px;
}

.contacto {
  margin: 30px;
}

.contacto h1{
  color: white;
  font-weight: 900;
}

.contacto h3{
  color: white;
  font-weight: 300;
  font-size: 20px;
}

.suscripcion{
  margin: 40px;
  background: linear-gradient(180deg, rgba(207, 55, 136, 0.600) 0%, rgba(109, 63, 177, 0.600) 80%);
  padding: 40px;
  border-radius: 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.suscripcion form {
  display: flex;
  flex-direction: column;
}

.suscripcion h3 {
  color: white;
  font-size: 15px;
  font-weight: 400;
}

input.textinput {
  width: 300px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin: 10px 0;
}

button.btninput{
 padding: 10px 20px;
 margin: 10px;
 border-radius: 20px;
 border: none;
 background: #424242;
 color: white;
 font-weight: 900;
 font-size: 15px;
 cursor: pointer;
}

.suscripcion textarea {
  border-radius: 5px;
}

/*--Mailchimp--*/

div#mc_embed_signup_scroll {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
div#mc_embed_signup_scroll input {
  width: 300px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}
#mc_embed_signup div#mce-responses {
  width: 300px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
div#mce-success-response {
  color: white !important;
}
input#mc-embedded-subscribe {
  background-color: #424242 !important;
  margin: 10px !important;
  border-radius: 20px !important;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  color: white;
}
label {
  color: white !important;
}
/*--*/


.rights { 
  background-color: black;
  text-align: center;
  border-top: white 1px solid;
  padding-top: 20px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rights img {
  width: 200px;
  margin: 0 40px;
}

.rights h4{
  font-size: 12px;
  color: white;
  text-align: left;
  padding: 0 70px;
  font-weight: 400;
}

.linkedinfooter{
  margin: 0;
  width: 20px;
  
}


/* Pantalla XS */

@media screen and (max-width: 1024px){
  .headertext_container{
    bottom: 35%;
  }
  .header_text{
    font-size: 30px;
  }
  .quienes_subcontainer{
    width: 80%;
  }
  .header_subtext{
    font-size: 12px;
  }
  .directores_container img{
    width: 150px;
    height: 150px;
  }
  .dir_text p {
    margin: 0 0 10px;
    font-weight: 500;
    line-height: 12px;
    font-size: 12px;
  }
  .dir_data {
    display: flex;
    align-items: center;
  }
  .dir_name{
    padding: 10px;
    width: 150px;
  }
  .dir_name h3, .dir_name h4{
    font-size: 10px;
  }
  .linkedin img{
    width: 15px;
    height: 15px;
  }
  .soluciones_subcontainer div{
    height: 350px;
    margin: 0;
  }
}

/* Pantalla S */

@media screen and (max-width: 1440px){
  .header_text{
    font-size: 40px;
  }
  .quienes_subcontainer{
    width: 60%;
  }
  .dir_data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
  }
  .dir_text p {
    margin: 10px;
    font-weight: 500;
    line-height: 16px;
    font-size: 15px;
  }
  .dir_name h3, .dir_name h4{
    font-size: 12px;
  }
}

/* Tablet */

/* Mobile */

@media screen and (max-width: 768px){
  .menu_container{
    display: none;
  }

  i.fa.fa-bars {
    color: white;
  }

  .btn {
    display: none;
  }

  /* Menu */
  .topnav {
    overflow: hidden;
    background-color: rgba(23, 22, 22, 0.66);
    position: relative;
    display: block;
    width: auto;
  }

  .topnav #myLinks {
    display: none;
    background: rgba(23, 22, 22, 0.66);
  }

  .topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .topnav a.icon {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .active {
    background-color: black;
    color: white;
  }

  div#navbarMobile{
    position: fixed;
    z-index: 100;
    width: 100%;
  }

  a.active.headerMobile {
    background-color: transparent;
  }

  .header_img{
    width: 40%;
    margin: 0 0 0 25%;
  }

  .sticky .header_img{
    width: 50%;
  }

  a#logoMobile.sticky {
    position: absolute;
    z-index: 100;
    top: -6px;
  }
    
  div#myLinks {
    position: fixed;
    top: 50px;
    width: 100%;
  }

  .headertext_container{
    bottom: 40%;
    padding: 0 40px;
  }

  .header_text {
    font-size: 20px;
  }

  .header_subtext{
    font-size: 15px;
    width: 100%;
  }

  img#img1, img#img2, img#img3 {
      height: 100%;
  }

  .quienes_container h1 {
    font-size: 20px;
  }

  .quienes_container p {
    font-size: 12px;
  }

  .quienes_subcontainer {
    flex-direction: column;
    flex-wrap: nowrap;
    width: auto;
  }

  .quienes_subcontainer div{
    margin: unset;
    padding: unset;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .quienes_subcontainer img{
    width: 40px;
    margin: 0 10px;
  }

  .quienes_subcontainer p{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /*--DIRECTORES--*/

  section#directores{
      justify-content: center;
  }

  .directores_container {
      display: flex;
      flex-direction: column;
  }

  .dir_subcontainer{
      flex-direction: column;
      align-items: center;
      width: 300px;
  }

  .directores_container img{
      width: 180px;
      height: 180px;
  }

  .dir_text p{
      font-size: 12px;
  }

  .linkedin img {
      width: 30px;
      height: 30px;
      border-radius: unset;
  }

  .dir_name h3, .dir_name h4{
      font-size: 12px;
  }

  /*--NUESTRAS SOLUCIONES*/

  .soluciones_container h1 {
    font-size: 20px;
  }

  .soluciones_container p{
      font-size: 12px;
  }

  .soluciones_subcontainer {
      flex-direction: column;
      flex-wrap: nowrap;
  }

  .soluciones_subcontainer div{
    display: flex;
    width: unset;
    height: auto;
    margin: 20px 0;
    justify-content: center;
  }

    .contact_container {
      width: 100% !important;
      justify-content: center;
      align-items: center;
  }

  .contact_container img{
      margin-right: unset;
  }

  .text_container h3{
      font-size: 14px;
      width: 150px;
  }

  .text_container h4{
    width: 150px;
    font-size: 12px;
  }

  .soluciones_subcontainer div img{
      width: 150px;
      height: 150px;
  }

  section#donde{
    background-position: left;
  }

  .donde_container {
      display: inline-block;
  }

  .donde_container div {
    width: auto;
    margin: 20px;
  }

  .location_container img {
      width: 200px;
  }

  footer{
    background: black;
    height: 900px;
    background-image: none !important;
  }

  .footer_container {
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
    align-items: center;
  }

  .contacto {
    margin: 10px 30px;
    text-align: center;
  }

  .contacto h3{
    font-size: 15px;
  }

  .suscripcion{
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 280px;
  }

  .suscripcion h3{
      text-align: center;
  }

  input.textinput{
      width: 225px;
  }

  input.btninput{
      width: 150px;
  }

  /*--mailchimp--*/

  div#mc_embed_signup_scroll input {
    width: 200px;
    padding: 10px;
    margin: 10px;
    border: none;
    border-radius: 5px;
}

  #mc_embed_signup div#mce-responses {
    width: 250px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  } 

  .rights {
    margin: -5px;
    align-items: center;
  }

  .rights h4{
      font-size: 10px;
  }
  #mc_embed_signup .foot {
    display: flex !important;
    grid-template-columns: 1fr;
    width: 100%;
    align-items: center !important;
    justify-content: center !important;
  }
  #mc_embed_signup .mc-field-group input {
    display: block;
    width: 200px;
    padding: 8px 0;
    text-indent: 2%;
  }
  #mc_embed_signup .mc-field-group {
    clear: left;
    position: relative;
    width: auto !important;
    padding-bottom: 3%;
    min-height: 50px;
}
}