/*-------Theme--------*/
.layout-sidebar-large .sidebar-left .navigation-left .nav-item.active .triangle {
  border-color: transparent transparent #003473 !important;
}
/*--------------------*/

/*------Colors-------*/
.bg-blue-1 {
  background-color: #0155a9 !important;
  color: #ffffff !important;
}

.bg-blue-2 {
  background-color: #0099fa !important;
}

.bg-blue-3 {
  background-color: #46a4cf !important;
}

.bg-blue-4 {
  background-color: #99ccfa !important;
}
/*-------------------*/

/*------Images--------*/
.imagen:hover {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: 0px 0px 15px 15px #331eec;
  -webkit-box-shadow: 0px 0px 15px 15px #8e83f0;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
/*--------------------*/

/*------Tables--------*/
tr.selected-custom {
  background-color: #b9d6f3 !important;
}
/*--------------------*/

/*--------Buttons-----*/
.btn-padding {
  padding: 2px 5px 2px 5px !important;
}

.badge {
  font-size: 12px;
}
/*-------------------*/

/*-------Logo--------*/
.loading_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  display: block;
  position: absolute;
}

.loader_logo {
  height: 80px;
  width: 80px;
  position: absolute;
  left: calc(50% - 50px);
  top: 38%;
}

.loader_logo img {
  height: 100%;
  width: 100%;
}

.loading {
  border: 3px solid rgba(102, 51, 153, 0.45);
  position: absolute;
  left: calc(50% - 35px);
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border-top-color: #00397a;
  animation: loader 1s ease-in-out infinite;
  -webkit-animation: loader 1s ease-in-out infinite;
}
/*------------*/

/*-----Modals--------*/
.modal-body {
  /* 100% = dialog height, 120px = header + footer */
  max-height: calc(80vh - 150px);
  height: auto !important;
  overflow-y: auto;
}

.modal-footer-no-flex {
  display: block;
}

.modal-height-h80 {
  height: 80vh;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  /* background-color: #003473; */
}

@media (min-width: 992px) {
  .modal-dialog-w70 {
    max-width: 70vw;
  }

  .modal-dialog-w80 {
    max-width: 80vw;
  }
}

.modal-dialog.modal-xxl {
  max-width: 95vw;
}
/*----------------------*/

.custom-file-label::after {
  content: "Elegir" !important;
}

.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 600px) {
  #header_text {
    display: none;
    visibility: hidden;
  }
}

@keyframes loader {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes loader {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* ------------------------------------------------- */

/* @import url('https://fonts.googleapis.com/css2?family=Benne&display=swap'); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  /* font-family: 'Benne', serif; */
}
header {
  width: 100%;
  height: 100px;
  background: #0c1f30;
  color: #c2c2c1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.logo {
  /* margin: auto; */
  width: 200px;
  height: 60px;
}
.contenedor {
  width: 98%;
  margin: auto;
}
.contenedor h1 {
  float: left;
  color: #ffffff;
  font-size: 305%;
}
/* h1 {
    float: left;
} */
header .contenedor {
  display: table;
}
section {
  width: 100%;
  margin-bottom: 25px;
}

.encabezados {
  font-size: 50px;
}

/* -----------------------------MENU.CSS ------------------------------ */

#menu-bar {
  display: none;
}
header label {
  float: right;
  font-size: 80px;
  margin-top: 30px;
  margin-right: auto;
  cursor: pointer;
  color: rgb(255, 255, 255);
}
header .icono-menu {
  width: 50px;
  height: 50px;
  top: auto;
  right: auto;
}
.menu {
  position: absolute;
  top: 101;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0c1f30;
  transition: all 0.5s;
  transform: translateX(100%);
}
.menu a {
  display: block;
  color: #fff;
  height: 100px;
  text-decoration: none;
  padding: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.menu a:hover {
  background: rgba(255, 255, 255, 0.6);
}
#menu-bar:checked ~ .menu {
  transform: translateX(0%);
}
@media (min-width: 1024px) {
  .menu {
    position: static;
    width: auto;
    height: auto;
    transform: translateX(0%);
    float: right;
    display: flex;
  }
  .menu a {
    border: none;
  }
  header label {
    display: none;
  }
}

/* -----------------------------BANNER ------------------------------ */

#banner {
  margin-top: 100px;
  position: relative;
}
#banner .contenedor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
}
#banner h2 {
  margin-left: 15%;
  font-size: 25px;
  color: #ffffff;
}
#banner p {
  margin-left: 15%;
  font-size: 15px;
  color: #ffffff;
}
@media (min-width: 1200px) {
  #banner h2 {
    margin-left: 16%;
    font-size: 50px;
    color: #ffffff;
  }
  #banner p {
    margin-left: 16%;
    font-size: 35px;
    color: #ffffff;
  }
}
@media (min-width: 1920px) {
  #banner h2 {
    margin-left: 16%;
    font-size: 60px;
    color: #ffffff;
  }
  #banner p {
    margin-left: 16%;
    font-size: 45px;
    color: #ffffff;
  }
}

/* -----------------------------CUALIDADES - SEGURIDAD - SOPORTE - ACTUALIZACION - ACCESO ------------------------------ */

.card-v {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.card-ventajas {
  position: relative;
  width: 500px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-radius: 2%;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
  margin: 30px;
}
.card-ventajas img {
  width: 500px;
  height: 250px;
  object-fit: cover;
}
.card-ventajas h5 {
  position: absolute;
  color: #c4b4a3;
  font-size: 35px;
}
.hover-ventajas {
  position: absolute;
  width: 500px;
  height: 250px;
  top: 0;
  transform: scale(0);
  transition: transform 0.5s;
  cursor: pointer;
  background-color: #e4e4e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hover-ventajas > p {
  color: #000;
  font-size: 20px;
  text-align: center;
  margin: 10px;
  /* font-family: 'Libre Baskerville', serif; */
}
.card-ventajas:hover .hover-ventajas {
  transform: scale(1);
}

/*Fin Ventajas*/

/*-----Cards----*/
.card-title {
  font-size: 25px;
}

.container-card-m {
  width: 100%;
  display: flex;
  margin: auto;
}
.card-m {
  width: 100%;
  margin: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  transition: all 400ms ease-out;
  cursor: default;
  position: relative;
  text-align: center;
}
.card-m:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.6);
  transform: translateY(-5%);
}
.card-m img {
  display: block;
  position: relative;
  width: 100%;
}

.card-m h3 {
  color: rgba(66, 10, 10, 0.918);
  display: block;
  position: absolute;
  bottom: -16px;
  left: 0;
  padding: 5px;
  width: 100%;
}

.card-hover-info:hover {
  color: white;
  background-color: #003473;
  background-image: none;
  border-color: #003473;
}

.card-hover-info:hover * {
  color: white !important;
}

/******/

/*Modulos*/

.carousel-item .img-modulos {
  position: relative;
  height: 700px;
  object-fit: cover;
}

.carousel-item .overlay-modulos {
  position: absolute;
  background-color: #0000006c;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-item:hover .title-modulos {
  font-size: 85px;
}

.carousel-item:hover .text-modulos {
  font-size: 40px;
}

.carousel-caption .title-modulos {
  font-size: 75px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
  text-align: center;
}

.carousel-caption .text-modulos {
  font-size: 30px;
}

.btn-novedades-app {
  z-index: 1000;
  width: 50px;
  height: 50px;
  display: block !important;
  position: fixed;
  z-index: 9999999;
  bottom: 3%;
  right: 15px;
  cursor: pointer;
  border-radius: 100px !important;
  background-color: #00397a;
  transition: all 0.1s;
}

.btn-novedades-app:hover {
  background-color: #02264f;
}
.btn-novedades-app:hover {
  transform: scale(1.01);
  border-radius: 100px !important;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(249, 154, 4, 1);
  -moz-box-shadow: 0px 0px 15px 0px rgba(249, 154, 4, 1);
  box-shadow: 0px 0px 15px 0px rgba(249, 154, 4, 1);
  transition-duration: 1s;
}
/*Fin Modulos*/
