/*
* Component Main
* Componente main del sitio web
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;1,100;1,300;1,400&display=swap');

:root {
  --blue: hsl(204deg 72% 62%);
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-display: swap;
}

body {
  margin: 0 !important;
  background: #fff;
  font-size: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute !;
}
/* ******************** SCROLL *********************/
::-webkit-scrollbar {
  width: 18px;
}

::-webkit-scrollbar-track {
  background-color: #fdfdfe;
  width: 20px;
}

::-webkit-scrollbar-thumb {
  width: 20px;
  border-radius: 100px;
  border: 5px solid transparent;
  background-clip: content-box;
  background-color: #dfdfe8;
}

/* ******************** SCROLL *********************/

a {
  color: #ffffff;
  list-style: none;
}

.text-primary {
  color: var(--blue);
}

.text-white {
  color: #ffffff;
}

iframe {
  border-radius: 8px;
}

.title-line {
  width: 120px;
  background: var(--blue);
  height: 3px;
  margin-top: 10px;
}

.uil-square-shape {
  background: var(--blue);
  font-size: 5px;
}

/* ******************* POPOVER ACTIVE SECTION ************/

.popover {
  position: relative;
  width: 300px;
  height: 50px;
  background-color: var(--blue);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  z-index: 1;
}

.popover-arrow {
  position: absolute;
  top: 48px;
  transform: rotate(180deg);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid var(--blue);
  width: 0;
  height: 0;
}


/* ******************** SUBMENU *********************/
.submenu {
  background-color: #0b0e10;
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.submenu_items {
  display: flex;
  list-style: none;
  margin-right: 30px;
  align-items: center;
}

.submenu_items li {
  border-radius: 3px;
  margin: 0 5px;
}
.submenu_items li a {
  padding: 2px 11px;
  text-decoration: none;
  font: arial;
  font-size: 13px;
  display: block;
  text-transform: uppercase;
  color: #fff;
}

/* ******************** ANIMACIONES *********************/
.menu[data-animation="to-left"] a::before {
  transform-origin: right;
}

.menu[data-animation="center"] a::before {
  transform-origin: center;
}

.menu[data-animation="bonus"] a::before {
  transform-origin: right;
}

.menu[data-animation="bonus"] a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.82, 0.94);
}


/* ******************** CONTACTO *********************/
.Contacto {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #dfe6e9;
  padding: 3em 7em;
}
.formulario {
  width: 70%;
  display: flex;
}
#formLateral {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.formulario-content {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 85%;
  margin: auto;
}
.Titulo {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.Titulo h1 {
  margin: auto;
  font-weight: 500;
  color: #333333;
}
.contacto_msj {
  display: flex;
  width: 80%;
  margin: auto;
}
.contacto_msj h2 {
  margin: auto;
  text-align: center;
  color: #333333;
  font-weight: 500;
  font-size: 150%;
}
.form_camp1 {
  display: flex;
  width: 90%;
  justify-content: space-between;
  align-items: center;
}
.dato_nombre {
  width: 100%;
  display: flex;
}
.dato_tel {
  width: 100%;
  display: flex;
}
.dato_email {
  display: flex;
  width: 100%;
}
.dato_emp {
  display: flex;
  width: 100%;
}
.dato_nombre input {
  display: flex;
  width: 90%;
  background-color: #ffffff;
  color: #000;
  border-radius: 5px;
  padding: 12px 15px;
}
.dato_tel input {
  display: flex;
  width: 90%;
  background-color: #ffffff;
  color: #000;
  border-radius: 5px;
  padding: 12px 15px;
}
.dato_email input {
  display: flex;
  width: 90%;
  background-color: #ffffff;
  color: #000;
  border-radius: 5px;
  padding: 12px 15px;
}
.dato_emp input {
  display: flex;
  width: 90%;
  background-color: #ffffff;
  color: #000;
  border-radius: 5px;
  padding: 12px 15px;
}
.dato_coment {
  display: flex;
  width: 100%;
}
.dato_coment textarea {
  resize: none;
  width: 85.5%;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 12px 15px;
}

::-webkit-input-placeholder {
  color: #7f8c8d;
  font-size: 15px;
}

input:focus,
textarea:focus {
  border: 2px solid var(--blue);
}

.input-error {
  border: 2px solid #ee5253 !important;
}

.input-success {
  border: 2px solid #1dd1a1 !important;
}

.enviarForm {
  display: flex;
  width: 100%;
}

.btn_enviar {
  background: var(--blue);
  color: #fff;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s; 
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 5px;
}
.btn_enviar:hover {
  background-color: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.datos_contacto1 {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.contenido_datos {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #666666;
}
.contenido_datos a {
  color: #666666;
  cursor: pointer;
}
.contDat_contacto {
  width: 100%;
  display: flex;
}
.cont_cont {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contDat_correo {
  width: 100%;
  display: flex;
  flex-direction: column;
  line-height: 30px;
}



/* ******************** CARRUSEL *********************/

.splide__slide img {
/*   border: 1.8px solid #ecf0f3 !important; */
/*   box-shadow: 0 2px 5px 0 rgb(0 0 0 / 3%) !important; */
  border-radius: 5px;
  object-fit: scale-down;
}

.splide__arrow {
  height: 2.5rem !important;
  width: 2.5rem !important;
}

.splide__arrow--prev{
  left: 40px !important;
}

.splide__arrow--next{
  right: 40px !important;
}

.main-splide{
  width: 100%;
}

.splide .main-splide{
  position: unset !important;
}

.main-splide .splide__arrow--prev{
  left: 40px !important;
}

.main-splide .splide__arrow--next{
  right: 40px !important;
}

.carrusel {
  position: relative;
  margin: auto;
  padding: 0 30px;
  z-index: 1;
  width: 90%;
  margin-bottom: 50px;
}

.tile {
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.tile .product-image {
  width: 70%;
  height: 180px !important;
}

.related-card_titulo{
  height: 30px;
  margin-top: 15px;
}

.related-card_titulo h2{
  display: inline-block;
  border-bottom: 3px solid #74b9ff;
  color: #000000;
}

.related-card_texto{
  height: 90px;
  margin-top: 10px;
}

/* ******************** FOOTER *********************/
footer {
  background-color: #0b0e10;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.barraInferior {
  color: #fff;
  padding: 2em 0 1em 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  background-color: #0b0e10;
}
.elemFooter_razon {
  display: flex;
  width: 70%;
  text-align: center;
}
.elementosFooter {
  display: flex;
  width: 30%;
  flex-direction: column;
  align-items: center;
}
.elementosFooter2 {
  display: flex;
  width: 30%;
}
.elementosFooter3 {
  display: flex;
  width: 30%;
  flex-direction: column;
}
.enlaces {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}
.cont_enlaces {
  display: flex;
  width: 45%;
  flex-direction: column;
  line-height: 35px;
}
.cont_enlaces li {
  list-style: none;
  font-size: 13px;
}
.cont_enlaces a:hover {
  border-bottom: #0069b2;
}
.titulo_enlaces {
  display: flex;
  width: 90%;
}
.titulo_enlaces h2 {
  margin: auto;
  font-size: 20px;
}
.datosFooter {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.datosFooter h2 {
  font-size: 20px;
}
#tel_footer {
  display: none;
}
.redes_sociales {
  display: flex;
  width: 40%;
}
.politica_Priv {
  display: flex;
  width: 100%;
  color: #38343c;
  justify-content: space-evenly;
}
.politica_Priv h3 {
  font-weight: normal;
}
.redes_sociales a {
  text-decoration: none;
  color: #fff;
  background-color: #262626;
  list-style: none;
  font-size: 24px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  margin: auto;
  transition: all 500ms ease;
}

.redes_sociales,
.lk {
  text-align: center;
  align-items: center;
  margin: auto;
  top: 0px;
}
.redes_sociales .lk:hover {
  color: #0069b2;
  background: #fff;
  margin: auto;
  text-align: center;
  align-items: center;
}
.redes_sociales .fb:hover {
  color: #fff;
  background: #3968aa;
  margin: auto;
  text-align: center;
  align-items: center;
}
.redes_sociales .yt:hover {
  color: #ff0000;
  background: #fff;
  margin: auto;
  text-align: center;
  align-items: center;
}
.uil-facebook-f {
  font-size: 25px;
}
.uil-youtube {
  font-size: 25px;
}
.uil-angle-left-b {
  font-size: 40px;
  color: var(--blue);
}
.uil-angle-right-b {
  font-size: 40px;
  color: var(--blue);
}
.uil-youtube {
  font-size: 25px;
}

/* ******************** MEDIA QUERIES *********************/




@media screen and (max-width: 900px) {
  .productosRel {
    margin-bottom: 0px !important;
  }
  .Contacto {
    padding: 2em 0;
  }
  .contacto_msj {
    text-align: center;
  }
  .formulario-content {
    flex-direction: column;
  }
  .formulario {
    width: 100%;
  }
  #formLateral {
    align-items: center;
  }
  .dato_tel input {
    width: 100%;
  }
  .dato_emp input {
    width: 100%;
  }
  .dato_coment textarea {
    margin: auto;
    width: 90%;
  }
  .enviarForm {
    justify-content: flex-end;
  }
  .datos_contacto1 {
    flex-direction: row;
    width: 100%;
  }
  .cont_cont {
    align-items: center;
  }
  .contDat_correo {
    align-items: center;
  }
  .titulo_banner h3 {
    width: 98%;
    margin-bottom: 10px !important;
  }

  #home_video {
    display: none;
  }
  #home_video2 {
    display: flex;
  }
}
@media screen and (max-width: 800px) {
  .barraInferior {
    flex-direction: column;
  }
  .elementosFooter {
    flex-direction: row;
    width: 90%;
  }
  .elemFooter_razon {
    width: 100%;
    justify-content: center;
  }
  .elementosFooter2 {
    flex-direction: column;
    width: 80%;
  }
  .datosFooter {
    align-items: center;
    text-align: center;
  }
  .elementosFooter3 {
    flex-direction: column;
    width: 90%;
    align-items: center;
  }
  .enlaces {
    justify-content: flex-end;
  }
  .cont_enlaces {
    width: 40%;
  }
  .banner {
    margin-top: 70px;
  }
}

@media screen and (max-width: 700px) {
  
  .vent_video {
    width: 90%;
    display: flex;
    margin: auto;
  }
  .elementosFooter {
    flex-direction: column;
  }
  .enlaces {
    flex-direction: column;
    align-items: center;
  }
  .cont_enlaces {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .barraInferior {
    flex-direction: column;
  }
  .elementosFooter {
    width: 100%;
  }
  .ac_botones {
    width: 100%;
  }
}

@media screen and (max-width: 555px) {
  .ac_prod_img img {
    object-fit: cover !important;
    border-radius: 10px !important;
  }

  .datos_contacto1 {
    flex-direction: column;
  }
  .form_camp1 {
    flex-direction: column;
  }
  .dato_nombre input {
    width: 100%;
    font-size: 20px;
  }
  .dato_email input {
    width: 100%;
    font-size: 20px;
  }
  .dato_tel input {
    font-size: 20px;
  }
  .dato_emp input {
    font-size: 20px;
  }
  .dato_coment textarea {
    font-size: 20px;
  }
  .enviarForm {
    justify-content: center;
  }
  .contenido_datos {
    align-items: center;
    text-align: center;
  }
  .titulo_banner h3 {
    width: 95%;
    font-size: 100%;
    margin-bottom: 10px !important;
  }
  .contacto_msj h2 {
    width: 100%;
    font-size: 100%;
  }

  .formulario-content {
    width: 100%;
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .ac_botones {
    width: 100%;
  }
}

/* Configuraciones extras */
#camera-section {
  background-color: rgb(244, 244, 244, 0.9) !important;
}

.hiper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3vh;
}
.hiper a {
  color: transparent;
}
.link {
  color: #FFFFFF;
  margin-top: 45px;
  text-align: center;
  background-color: hsl(204deg 72% 62%);
  width: 250px;
  height: 35px;
  border-radius: 10px;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

#more-content {
  margin-bottom: 170px
}

#modal-description {
  margin-top: -25px;
  line-height:1.2;
}

#modal-1-title {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#modal-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal-display .e-grid-12 {
  display: flex;
  align-items: stretch;
}

.modal__content {
  margin-bottom: 0;
}

.note-text {
  text-align: right;
  font-weight: bold;
  margin-top: -2rem;
}

.subcat-style {
  font-size: 16px;
  background-color: hsla(0, 0%, 100%, 0);
  font-weight: bold;
  text-align: center;
}
.subcat-style img {
  width: 30px;
}

#columns .col-2 {
  width: 20% !important;
  margin-bottom: -15px;
  background-color: rgba(247, 247, 247, 0.7);
}

#camera-banner img {
  width: 100vw;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: -100px;
  filter: saturate(0.7);
}

button {
  cursor: pointer;
}

#camera-section {
  margin-top: 100px
}

/* Estilos para las nuevas tarjetas */
#software-section {
  background-color: rgb(244, 244, 244, 0.9) !important;
  margin-top: 80px;
}
.col-10.mobile-1.d-flex.justify-content-between.align-items-center {
  margin-top: 10px;
}
#new-card {
  height: 350px;
  width: 100%;
}

#new-cards-style {
  padding-bottom: 50px;
  border-radius: 10px;
}


#software-description-list {
  width: 42%;
}

.plyr--video {
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 0;
}


#media-img-vid .tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#media-img-vid .media-wrapper {
  flex: 0 0 90% !important;
  max-height: 90% !important;
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

#media-img-vid .related-card_titulo {
  flex: 0 0 10% !important;
  max-height: 10% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#media-img-vid .main-splide .splide__arrow--prev {
  left: -40px !important;
  top: 180px !important;
}
#media-img-vid .main-splide .splide__arrow--next {
  right: -40px !important;
  top: 180px !important;
}

#media-img-vid {
  margin-left: 6.22222%;
  margin-top: -15px;
}
#media-img-vid .plyr {
  max-height: 400px !important;
  height: 295px !important;
}

#media-img-vid img {
  max-height: 400px !important;
  height: 300px !important;
}

#media-img-vid .tile .product-image {
  width: 100% !important;
  border-radius: 10px;
}

#media-img-vid .related-card_titulo h2 {
  border-bottom: 2px solid var(--primary-color) !important;
  font-size: 21px !important;
}
#media-img-vid .related-card_titulo p {
  font-size: 14px !important;
  font-weight: 500 !important;
  margin-top: 5px !important;
}

#media-img-vid .plyr--full-ui.plyr--video .plyr__control--overlaid {
  scale: 0.6;
}

#new-card1 {
  height: 350px;
  width: 100%;
}

.cards{
  height: 400px !important;
  width: 100% !important;
}
.accordion-box {
  margin-top: 10px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f5f5f5;
  cursor: pointer;
}

.accordion-body {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #eee;
}

.rotated {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.mobile-contents {
  padding-right: 20px
}

.mobile-contents h2 {
  padding: 20px 0;
}

.mobile-contents .list-group {
  padding-right: 10px !important;
}


.fix-start {
display: flex;
}

@media (max-width: 768px) {
  /* Estilos para las sección en móviles*/

  .modal__title {
    font-size: 20px !important;
  }
  #modal-description p {
    font-size: 14px !important;
  }
  #modal-image-container img {
    width: 225px !important;
    height: 150px !important;
  }
  #modal-image-container .list-group-primary li {
    font-size: 15px !important;
  }

  .modal__close {
    font-size: 20px !important;
    margin-top: -25px !important;
    margin-right: -20px !important;
  }

  .header {
    margin-bottom: 15px !important;
  }


  /* Estilos para la sección de software en móviles*/
  #new-cards-style {
    padding: 1rem !important;
    margin: 0 !important;
  }

  .new-container-details {
    padding: 1rem !important;
  }

  .product-image,
  .product-video {
    max-width: 100% !important;
    max-height: 250px !important;
    object-fit: contain;
  }

  #new-cards-style .related-card_titulo h2 {
    font-size: 1rem !important;
  }

  #new-cards-style  .subtitle-2 {
    font-size: 12px !important;
    text-align: center;
    margin-left: 10px;
  }

  .btn-more-info {
    width: 100% !important;
    font-size: 1rem;
  }

  .splide__slide {
    padding: 0.5rem;
  }

  .e-grid-12 {
    flex-direction: column !important;
  }

  .col-6,
  .col-10,
  .mobile-1 {
    width: 100% !important;
    max-width: 100% !important;
  }

  #media-img-vid {
    margin-top: 1rem;
  }
  #media-img-vid img {
    height: 115px !important;
  }
  #media-img-vid .plyr {
    height: 130px !important;
  }

  .col-10.mobile-1.d-flex.justify-content-between.align-items-center {
    margin-top: 5px !important;
  }

  #media-img-vid .related-card_titulo h2 {
    font-size: 14px !important;
  }

  #media-img-vid .related-card_titulo p {
    font-size: 12px !important;
  }

  .list-group {
    margin-left: -30px !important;
    margin-bottom: -30px; !important;
  }
  .list-group li {
    font-size: 10px !important;
  }

  #new-cards-style .subtitle-1 {
    font-size: 14px !important;
  }
  .main-splide {
    margin-left: -20px !important;
  }

  .btn-xs {
    font-size: 11px !important;
  }

  .btn-close {
    font-size: 15px !important;
  }

  .right-0 {
    right: -20px !important;
  }

  .top-0 {
    top: -5px !important;
  }

  #media-img-vid .main-splide .splide__arrow--next {
    right: -20px !important;
    top: 70px !important;
    scale: 0.8;
  }
  #media-img-vid .main-splide .splide__arrow--prev {
    left: -40px !important;
    top: 70px !important;
    scale: 0.8;
  }

  .fix-start {
    display: block !important;
  }

  #cbanner .splide__arrow--prev{
    left: 5px !important;
    top: 75px !important;
    scale: 0.8;
  }
  #cbanner .splide__arrow--next{
    right: 5px !important;
    top: 75px !important;
    scale: 0.8;
  }
  #relacionados .splide__arrow--prev{
    left: 0 !important;
    top: 150px !important;
  }
  #relacionados .splide__arrow--next{
    right: 0 !important;
    top: 150px !important;
  }

  .mob-1 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 70vw !important;
  }
  .mob-1 #new-card1 {
    height: 350px !important;
    width: 100% !important;
  }
  .mob-column {
    flex-direction: column !important;
    align-items: center !important;
  }

  .mob-2 .btn-sm {
    font-size: 11px !important;
  }

  .mobile-list {
    padding-left: 3rem;
    margin: 0.5rem 0.5rem;
  }

  .mobile-list li {
    margin-bottom: 0.3rem;
    list-style-type: none;
    position: relative;
    right: 25px;
  }

  .img-poster img {
    scale: 1.1;
    margin-top: 20px;
  }

  .popover {
    scale: 0.75;
  }

  .mobile-banner {
    position: relative;
    width: 100vw;
    height: 180px;
    overflow: hidden;
  }

  .mobile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.25;
  }

  .mobile-banner > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 10px;
  }

  .mobile-banner .subtitle-1.main-title {
    font-size: 26px !important;
    background: transparent !important;
    margin-bottom: 8px;
  }

  .mobile-banner .subtitle-4 {
    font-size: 16px !important;
    line-height: 1.3;
  }
  #media-img-vid .plyr--full-ui.plyr--video .plyr__control--overlaid {
    scale: 0.8;
  }
}

.main-title{
  background-color: #fafafa;
  padding: 15px;
}

#encabezado {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin-top: 1rem !important;
}

#encabezado .btn-action {
  width: 165px !important;
  height: 40px !important;
  margin: 5px !important;
}

#encabezado .btn-action img {
  width: 30px !important;
  margin-top: 3px !important;
}

#encabezado .btn-action-title {
  font-size: 12px !important;
}

#relacionados .splide__arrow--prev{
  left: -10px !important;
  top: 120px !important;
}
#relacionados .splide__arrow--next{
  right: -10px !important;
  top: 120px !important;
}

#relacionados .related-card_texto {
  padding: 0 20px !important;
}

.col-3 {
  width: 25%;
}

.gap-10 {
  gap: 10px;
}

.h6 {
  border-bottom: 3px solid var(--primary-color)
}

.gap-30{
  gap: 30px;
}


.btn-action-icon {
  margin-left: 17px;
}

.subtitle-4 {
  width: 80vw !important;
}

.subtitle-5 {
  color: var(--dark-color);
  font-weight: 550;
  text-align: justify;
  position: relative;
  box-sizing: border-box;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.card-grid {
  width: 25%;
  margin: 10px 10px;
}

.cust-1 {
  width: 23vw;
}

.lg-sub-html h1 {
  font-size: 22px !important;
}

.lg-sub-html p {
  font-size: 16px !important;
}

.gal-sub {
  text-align: center;
  margin-top: 20px;
  font-weight: bolder;
}