/*****VARIABLES*****/
/***************Clases generales*****************/
body {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  margin: 0 auto;
  color: #122024;
  background-color: #fff;
}
body p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.8em;
}
body a {
  text-decoration: none;
  color: #122024;
}

.centrar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.centrar-columna {
  flex-direction: column;
}

.centrar-espaciado-entre {
  justify-content: space-between;
}

.centrar-espaciado-alrededor {
  justify-content: space-around;
}

.centrar-espaciado-inicio {
  justify-content: flex-start;
}

.centrar-espaciado-fin {
  justify-content: flex-end;
}

.centrar-align-left {
  align-items: flex-start;
}

.centrar-align-right {
  align-items: flex-end;
}

.width-100 {
  width: 100%;
}

/****LAYOUT****/
.contenedor {
  display: none;
}
@media screen and (max-width: 480px) {
  .contenedor {
    display: flex;
  }
}

.cont-download {
  position: fixed;
  right: 15px;
  top: 15px;
}
.cont-download div span {
  font-size: 2em;
}
.cont-download p {
  color: #122024;
  font-size: 0.6em;
  margin: 5px;
}

.cont-logo {
  margin: 0 0 40px 0;
}
.cont-logo .logo-helo {
  width: 70vw;
}

.nombre {
  color: #122024;
  font-family: "Poppins", sans-serif;
}
.nombre h2 {
  margin: 0;
  line-height: 0.9;
  font-weight: 700;
  font-size: 4.5vh;
  letter-spacing: 2px;
}
.nombre p {
  font-size: 1.3em;
  font-weight: 500;
}

.content-contact {
  margin: 20px 0;
}
.content-contact .cont-icon {
  background-color: #EAA420;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: relative;
}
.content-contact .cont-icon::before {
  content: "";
  background-color: transparent;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.3);
  position: absolute;
  top: -5px;
  left: -7px;
  z-index: 1;
}
.content-contact .cont-icon::after {
  content: "";
  background-color: #F5D416;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -1;
}
.content-contact .cont-icon span {
  font-size: 25px;
}
.content-contact .cont-icon .icon-mail {
  font-size: 20px;
}
.btn-qr {
  background-color: #4C81DB;
  color: #ffffff;
  border-radius: 41px;
  padding: 5px 20px;
  border: none;
  font-size: 18px;
  position: relative;
  margin: 50px 0;
  font-family: "Poppins", sans-serif;
}
.btn-qr::after {
  content: "";
  background-color: #2BDBEA;
  border-radius: 41px;
  border: none;
  position: absolute;
  width: 155px;
  height: 40px;
  top: -6px;
  left: 0;
  z-index: -1;
}
.btn-qr::before {
  content: "";
  background-color: transparent;
  border-radius: 41px;
  border: 1px solid rgba(0,0,0,0.5);
  position: absolute;
  width: 155px;
  height: 36px;
  top: -2px;
  left: -6px;
  z-index: 1;
}
.rrss {
  margin-left: 20px;
  margin-top: 5px;
}
.rrss .cont-red {
  margin: 5px;
  background-color: #F5D416;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.rrss .cont-red:first-child {
  margin: 5px 5px 5px 0px;
}
.rrss .cont-red i {
  font-size: 5vw;
}
.web {
  margin-left: 20px;
  margin-top: 40px;
}
.web p{
  font-size: 20px;
  margin: 0;
}
.cont-dots {
  width: 32vw;
  margin-bottom: 20px;
}
.cont-dots img {
  width: 100%;
}
.insigth {
  margin-left: 20px;
}
.insigth p{
  margin: 0;
  font-size: 30px;
  line-height: 1em;
}
.insigth p strong{
  font-weight: 700;
}

.modal {
  font-family: "Poppins", sans-serif;
}
.modal .modal-content .cont-modal {
  padding: 20px;
}
.modal .modal-content button {
  opacity: 1;
  border: 0;
}
.modal .modal-content .icon-close {
  font-weight: bold;
  font-size: 0.8em;
}
.modal .modal-content .modal-title h2 {
  color: #122024;
  font-weight: 700;
  margin-bottom: 20px;
}
.modal .modal-content .cont-qr {
  width: 100%;
}
.modal .modal-content .cont-qr img {
  width: 100%;
}