/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: "tex";
  src: url("../fonts/texgyreadventor-regular.otf");
/* 
  font-family: 'Quicksand', sans-serif!important;
font-family: 'Ubuntu', sans-serif;
*/
}



:root {
  --Total: #0397c7;
  --azul: rgb(62, 240, 46);
  --azul2: rgba(46, 240, 107, 0.753);
  --naranja: #ef793f;
  --fondo-c: rgb(251, 251, 251);
  --fondo-b: #f4f4f4;
  --titulos-c: #0397c7;
  --subtitulos-c: #5d5d5d;
  --parrafos-c: rgb(75, 75, 75);
  --blanco-2: rgb(255, 255, 255);
  --nav: rgb(75, 75, 75);
  --nav1: #09003b;
  --dev-white: rgb(251, 251, 251);
  --tit-n-n: rgb(75, 75, 75);
}
[data-theme="dark"] {
  --fondo-c: rgb(29, 29, 29);
  --titulos-c: #0397c7;
  --subtitulos-c: #e2e2e2;
  --parrafos-c: #e0cebe;
  --fondo-b: #535353;
  --nav: white;
  --dev-white: rgb(29, 29, 29);
  --tit-n-n: #0397c7;
  --blanco-2: rgb(47, 47, 47);
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #e9e9e9 url("../images/presentate.png") no-repeat center center;
}
@media (max-width: 768px) {
  #preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: #f5f5f5;
    background: #e9e9e9 url("../images/presentate.png") no-repeat center center;
  }
}
@media (max-width: 450px) {
  #preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: #f5f5f5;
    background: #e9e9e9 url("../images/presentate.png") no-repeat center center;
  }
}
/* ========================================================
img
============================================================ */

/*  */
/* ========================================================
modo-dark
============================================================ */

.modo-dark {
  position: fixed;
  right: 40px;
  bottom: 0px;
  z-index: 100;
}

.theme-switch {
  display: block;
  height: 34px;
  position: relative;
  width: 60px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: #000000;
  bottom: 0;
  cursor: pointer;
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  transition: 0.4s all;
}

.slider:before {
  background-color: #ffffff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: 0.4s all;
  width: 26px;
}

input:checked + .slider {
  background-color: var(--naranja);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 40rem;
  -webkit-border-radius: 40rem;
  -moz-border-radius: 40rem;
  -ms-border-radius: 40rem;
  -o-border-radius: 40rem;
}

.slider.round:before {
  border-radius: 40rem;
  -webkit-border-radius: 40rem;
  -moz-border-radius: 40rem;
  -ms-border-radius: 40rem;
  -o-border-radius: 40rem;
}
/* cambio */

/* ----------------------------------
 --------------- pop up----------
 -------------------------------- */

#header .nav > li {
  float: right;
}

#header .nav li a {
  color: rgb(85, 85, 85);
  text-decoration: none;
  display: block;
}

#header .nav li ul {
  display: none;
  position: absolute;
  min-width: 140px;
  background: #0396c7;
  right: 10px;
  padding: 5px;
  box-shadow: 1px 1px 3px #aeaaaab8;
  z-index: 55;
  color: white;
  margin-top: 1px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
#header .nav li ul li {
  border-radius: 5px;
  padding: 10px;
}
#header .nav li ul li a{
  color: white!important;
}
#header .nav li ul li:hover a{
  color: rgb(42, 41, 41)!important;
}
#header .nav li ul li:hover {
  color: rgb(50, 50, 50) !important;
  background: #ffffff;
}

#header .nav li:hover > ul {
  display: block;
}

#header .nav li ul li {
  position: relative;
}

#header .nav li ul li ul {
  position: absolute;
}
#header .btn-inicio {
  right: 0px;
  border-left: 1px solid #0397c7;

  height: 55px;
  padding: 4px 30px 4px 10px;
  color: rgb(248, 248, 248);
  background: #0397c7;
}
#header .btn-inicio .circle {
  border: none;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  padding: 8px 8px 5px 8px;
  color: rgb(56, 54, 54);
  background: #fbfbfb;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
#header .pulse:hover,
#header .pulse:focus {
  -webkit-animation: pulse 0.7s;
  animation: pulse 0.7s;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
}
#header .pulse {
  --colorr: #0397c7;
  --hoverr: #3caddd;
}
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hoverr);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hoverr);
  }
}
#header .nav {
  position: absolute;
  right: 0px;
}
@media (max-width: 762px) {
  #header .nav {
    position: absolute;
    right: 0px;
  }
  #header .btn-inicio {
    right: 0px;
    border-left: 1px solid #0397c7;
    height: 55px;
  }
}
#header .btn-carrito {
  margin-right: 4px;
  margin-top: 10px;
  border-radius: 0px;
  color: #3c3c3c;
  border-radius: 5px;
}
#header .btn-registro{
  background: #0D1B48;
  color: white;
  margin-right: 4px;
  margin-top: 10px;
  border-radius: 10px;
  box-shadow: 0 0px 0px 0 rgb(62 62 62 / 16%), 0 0px 0px 0 rgb(0 0 0 / 15%), 0px 1px 11px 0px rgb(0 0 0 / 30%);

}
@media(max-width:576px){
  #header .btn-registro{
    
    box-shadow: none;
  }
}
#header .btn-carrito:hover {
  background: #0396c7;
  transition: .3s;
  color: white;
}
#header .btn-registro:hover {
  background: #2c4292;
  transition: .3s;
  color: white;
}
#header .btn-carrito-activo {
  margin-right: 4px;
  margin-top: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #fff;
  background: #0396c7;
}
#header .btn-carrito-activo:hover {
  background: #e8e8e8;
  color: #051035;
}
#header .navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: row !important;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
#header .navbar {
  padding-top: 0;
  padding-bottom: 0;
  background: #f8f8f8;
  padding-left: 0;
}
#header .navbar-dark .navbar-nav .nav-link {
  color: rgb(48, 48, 48);
}
#header .navbar .eco {
  color: #0397c7;
  font-size: 24px;
}
/*  .navbar {
    padding-top: 0;
    padding-bottom: 0;
    background: rgb(52, 58, 64) !important;
    
}  */

#header .n .nav-item a:hover {
  color: #f2f2f2 !important;
  border-radius: 5px;
  background: #0397c7;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
#header .nav-item a {
  color: #494949;
}
#header .navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0rem;
  padding-left: 0rem;
  font-family: "hel" !important;
  font-weight: bold;
  font-size: 14px;
}
#header .navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: rgb(46, 43, 43);
}

#header .navbar-light .navbar-nav .nav-link,
.nav-link {
  color: rgb(250, 250, 250);
  font-size: 12px;
  font-weight: bold;
}

.list-unstyled li {
  padding-left: 0;
  list-style: none;
}
/* ----------------------------------
 ---------------fin pop up----------
 -------------------------------- */

.container-portada {

}

.wave {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.wave path {
  fill: var(--fondo-c);
}

.btn-rapidos {
  position: absolute;
  bottom: 0;
  z-index: 9;

  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.btn-rapidos a {
  background: #0397c7;
  padding: 10px;
  font-size: 20px;
  margin-left: 10px;
  margin-right: 10px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}
.btn-rapidos a:hover {
  box-shadow: inset 0px 50px 0px #0397c7;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

@media (max-width: 768px) {
}
@media (max-width: 572px) {
  .container-portada {
    height: 70vh !important;
  }

  .btn-rapidos {
    background: #923b62;
  }
}
@media (max-width: 429px) {
  .btn-rapidos .btn-acc {
    margin-top: 50px;
  }
}
@media (max-width: 322px) {
}

@keyframes movimiento {
  from {
    background-position: bottom left;
  }
  to {
    background-position: top right;
  }
}
@media (max-width: 760px) {
  .container-portada {
    background-size: 250%;
    animation: movimiento 17s infinite linear alternate;
    -webkit-animation: movimiento 17s infinite linear alternate;
  }
  .container-portada1 {
    object-fit: none;
    background-size: 100%;
    animation: movimiento 17s infinite linear alternate;
    -webkit-animation: movimiento 17s infinite linear alternate;
  }
}




.details {
  width: 100%;
  max-width: 500px;
  position: relative;
  top: 20px;
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  background: #fff;
  height: 55px;
}
#header #logo {
  float: left;
}
#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 45px;
}
@media (max-width: 768px) {
  #header {
    height: 55px;
  }
  #header #logo img {
    max-height: 35px;
    position: absolute;
    top: 10px;
  }
}

.is-sticky #header {
  background: #fff;
  position: fixed;
  box-shadow: 0 0px 0px 0 rgb(62 62 62 / 16%), 0 0px 0px 0 rgb(0 0 0 / 15%), 0px 1px 11px 0px rgb(0 0 0 / 30%);
margin-top:5px ;
 
  
}
.is-sticky #header1 {
 
  
}
.is-sticky .btn-inicio{
  border-radius: 0px 7px 7px 0px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 5px 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
  .boton-acceso {
    margin-left: auto;
    padding: 0px 0px 0px 0px;

    width: 100%;
  }
  .iz-cur {
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
  }
  .der-cur {
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
  }
  .boton-acceso:hover {
    background: var(--azul);
    border-style: none;

    padding: 0px 0px 0px 0px;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 15px;
  text-decoration: none;
  display: inline-block;
  color: var(--nav);

  font-weight: 300;
  font-size: 17px;
  outline: none;
}

.nav-menu a:hover,
.nav-menu li:hover > a,
.nav-menu .menu-active > a {
  color: #5d5d5d;
}

.nav-menu ul {
  margin: 4px 0 0 15px;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu ul li {
  background: #fff;
  border-top: 1px solid #f4f4f4;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li:hover {
  background: #f6f6f6;
}

.nav-menu ul li a {
  color: #333;
}

.nav-menu ul ul {
  margin: 0;
}

.boton-acceso {
  background: inherit;
  border: none;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
  margin-left: 5px;
}
.boton-acceso a {
  color: white;
}
.boton-acceso a:hover {
  color: aliceblue;
}
.boton-acceso:hover {
  box-shadow: inset 0 0 0 70px var(--Total);

  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed !important;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 10px 10px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  outline: none;
}

#mobile-nav-toggle i {
  color: rgb(39, 38, 38);
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.626);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 22px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
  background: #0397c7;
}
#mobile-nav ul li .active {
  color: #fff;
  background: #0397c7;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: var(--azul);
}

#mobile-nav ul .menu-item-active {
  color: var(--azul);
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/* hasta aqui header */


.titulo-center-morado {
  color: #0397c7;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  font-family: "tex", sans-serif;
}
.titulo-left-celeste {
  color: #fff;
  text-align: left;
  font-size: 35px;
  font-weight: bold;
  font-family: "tex", sans-serif;
}

.titulo-seccion {
  color: #0397c7;
  text-align: left;
  font-size: 40px;
  font-weight: bold;
  font-family: 'Raleway', sans-serif!important;
}
.titulo-sec {
  color: #0397c7;
  text-align: right;
  font-size: 40px;
  font-weight: bold;
  font-family: 'Raleway', sans-serif!important;
}

@media(max-width:520px) {
  .titulo-sec {
    text-align: center;
    font-size: 25px !important;
  }

}
@media(max-width:520px){
  .titulo-seccion {
    text-align: center;
    font-size: 25px!important;
    font-family: 'Raleway', sans-serif!important;
  }
  .titulo-center-morado {
    font-size: 25px!important;
  }
  .titulo-left-celeste {
    font-size: 25px!important;
  }
  .parrafo-seccion{
    text-align: center;
    font-size: 18px!important;
  }
}
/*--------------------------------------------------------------
# developer
--------------------------------------------------------------*/
.developer {
  margin-top: 100px;
  margin-bottom: 100px;
}
.developer a {
  cursor: pointer !important;
}
.developer .col-md-6,
.col-md-3 {
  padding: 5px 5px;
}
.developer .dev-g-6 .bn1 {
  background: var(--fondo-c);
  height: 100px;

  text-align: center;
  font-family: "tex";
  color: #0397c7;
  /* color: var(--Total) ; */
}
.developer .dev-g-3 .bn {
  border: 1px solid #e6e6e6;
  background: var(--fondo-c);
  height: 200px;
  width: auto;
  padding: 20px 20px;
  color: var(--subtitulos-c);
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}
.developer .dev-g-3 .bn:hover {
  box-shadow: inset 0 100px 0 0 #0397c7;
  /*box-shadow: inset 0 -70px 0 0 #005792;

*/
  border: 1px solid #0397c7;
  color: #0397c7;
}
.developer .bn img {
  width: 50%;
  height: auto;
  position: absolute;
  top: 20px;
  right: 20px;
}
.developer .bn h4 {
  position: absolute;
  bottom: 5px;
  left: 15px;
  font-weight: bold;
  font-size: 20px;
  background: var(--dev-white);
  padding: 10px 0px 10px 10px;
  border-radius: 40px 0px 0px 40px;
  -webkit-border-radius: 40px 0px 0px 40px;
  -moz-border-radius: 40px 0px 0px 40px;
  -ms-border-radius: 40px 0px 0px 40px;
  -o-border-radius: 40px 0px 0px 40px;
}
.developer h2 {
  color: #0397c7;
  text-align: center;
  font-size: 45px;
  font-weight: bold;
  font-family: "tex", sans-serif;
}
@media (max-width: 1000px) {
  .developer .bn h4 {
    font-size: 17px;
    padding: 10px 0px 10px 10px;
    width: 150px;
  }
}
@media (max-width: 768px) {
  .developer {
    padding: 0px 40px 0px 40px;
  }
  .developer .bn h4 {
    font-size: 17px;
    padding: 10px 0px 10px 10px;
    width: 200px;
  }
}
@media (max-width: 505px) {
  .developer .bn h4 {
    font-size: 17px;
    padding: 10px 0px 10px 10px;
    width: 150px;
  }
  .developer h1 {
    font-size: 20px;
  }
  .developer h2 {
    font-size: 25px;
  }
}
@media (max-width: 413px) {
  .developer .bn h4 {
    font-size: 17px;
    padding: 10px 0px 10px 10px;
    width: 130px;
  }
}
@media (max-width: 379px) {
  .developer .bn h4 {
    font-size: 17px;
    padding: 10px 0px 10px 10px;
    width: 100px;
  }
  .developer .peq h4 {
    font-size: 12px;
  }
}
@media screen and (max-width: 404px) {
}
/*--------------------------------------------------------------
# sisad banner
--------------------------------------------------------------*/
.sisad-in {
  background: #f4f4f48d;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sisad-in img {
  width: 80%;
}
.sisad {
  padding: 40px 60px 40px 60px;
  color: var(--subtitulos-c);
}
.sisad .tar-sis {
  border: 1px solid #e6e6e6;
  height: 150px;
  padding: 10px;
}
.sisad .tar-sis h4 {
  margin: 0;
}
.sisad .tar-sis img {
  position: absolute;
  right: 30px;
  width: 130px;
}
.sisad .tar-sis-but {
  background: #e1e1e1;
  height: 150px;
  justify-content: center;

  display: flex;
  align-items: center;
}
.sisad a {
  text-decoration: none;
}
.sisad .tar-sis-but:hover {
  background: #0397c7;
}

@media (max-width: 425px) {
  .sisad {
    padding: 40px 20px 40px 20px;
  }
}

/*--------------------------------------------------------------
# proyectos
--------------------------------------------------------------*/
/* .proyect{
  margin-top:50px;
  margin-bottom:10px;
  background: var(--blanco-2);
  padding:30px 40px 60px 40px;
}
.proyect h1{
  font-family: 'tex';
  font-size: 45px;
  color:var(--titulos-c);
  margin-bottom:30px;
  font-weight: bold;
}
.proyect h3{
  text-align: left;
  color: var(--subtitulos-c);
}
.proyect p{
  text-align: left;
  color: var(--parrafos-c);
}
.proyect .col-md-6{
  text-align: right;
}
.proyect img{
  width:100%;
}

@media (max-width: 1000px){
  .proyect img{
    width:60%;
  }
 
}
@media (max-width: 768px){
  .proyect img{
    width:50%;
  }
  .proyect h1{
   margin-bottom:40px;
   font-size: 35px;
  }
  .proyect h3,p{
    text-align: left;
  }
  .proyect .col-md-6{
    text-align: center;
  }
}
.proyect .ir-proyectos button{
  border:none;
  margin-top: 20px;
  font-size: 20px;
  padding: 10px;
  background:var(--naranja)
}
.proyect .ir-proyectos button:hover{
 box-shadow: inset 50px 30px 50px #d5d5d5;
 color: white;
 transition: .4s;
 -webkit-transition: .4s;
 -moz-transition: .4s;
 -ms-transition: .4s;
 -o-transition: .4s;
} */
/*--------------------------------------------------------------
# sero
--------------------------------------------------------------*/
/* .sero  div{
  padding:0 0;
}
.sero .ver{
background: aqua;
height:500px;
}
.sero .hor{
  background: blue;
  height:100px;
}
.sero .peq{
  background: crimson;
  height:400px;
} */

/*--------------------------------------------------------------
# wrap
--------------------------------------------------------------*/
.wrap {
  width: 100%;
  max-width: 85%;
  margin: 30px auto;
}

ul.tabs {
  width: 100%;
  background: #363636;
  list-style: none;
  display: flex;
}

ul.tabs li {
  width: 18%;
}

ul.tabs li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-align: center;

  display: block;
  padding: 20px 0px;
}

.active {
  background: #e9b06593;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

ul.tabs li a .tab-text {
  margin-left: 8px;
}

.secciones {
  width: 100%;
  background: #fff;
}

.secciones article {
  padding: 30px;
}

.secciones article p {
  text-align: justify;
}

@media screen and (max-width: 700px) {
  ul.tabs li {
    width: none;
    flex-basis: 0;
    flex-grow: 1;
  }
}

@media screen and (max-width: 450px) {
  ul.tabs li a {
    padding: 15px 0px;
  }

  ul.tabs li a .tab-text {
    display: none;
  }

  .secciones article {
    padding: 20px;
  }
}
/*--------------------------------------------------------------
# clients
--------------------------------------------------------------*/

.clients {
  text-align: center;
  margin-bottom: 100px;
}
.clients h1 {
  font-family: "tex";
  font-size: 45px;
  color: #0397c7;

  font-weight: bold;
}
.clients p {
  font-size: 25px;
  color: var(--subtitulos-c);
  font-weight: 500;
  margin-bottom: 60px;
}
.clients img:hover {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.clients .slide {
  text-align: center;
  align-items: center;
}
.clients img {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (max-width: 768px) {
  .clients img {
    width: 100%;
  }
  .clients h1 {
    font-size: 35px;
  }
  .clients p {
    font-size: 20px;
    color: var(--subtitulos-c);
  }
}

.slick-slide {
  margin: 10px 10px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.section-title {
  font-size: 32px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.section-description {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-divider {
  width: 50px;
  height: 3px;
  background: var(--coloruno);
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Get Started Section
--------------------------------*/

.presu {
  background: var(--blanco-2);
  padding: 0px 40px 40px 40px;
  margin-bottom: 10px;
}

.presu h1 {
  text-align: center;
  color: var(--titulos-c);
  font-family: "tex";
  font-weight: bold;
  padding-bottom: 20px;
}
.presu .con p {
  text-align: justify;
  padding-top: 20px;
}
.presu .con h2 {
  text-align: center;
}
.contact-adopcion {
  margin-bottom: 50px;
}
.contact-adopcion .con1 .link a {
  color: #00bb2d;
  padding-left: 5px;
}

.contact-adopcion .con1 .link h4 {
  text-align: left;
}

.contact-adopcion .con1 .link a i {
  text-align: right;
  font-size: 18px;
}

/* --------------Noticias-------------------
--------------------------------------------*/
.noticias-inicio {
  background-size: 100%;
  background: #0b486b7a; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #0397c7,
    #0b486b7e
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #f561179a, #0b486b6e),
    url(/images/noticias.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.noticias-inicio h1 {
  text-align: center;
  color: whitesmoke;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* --------------noticias individuales-------
--------------------------------------------*/
.noticia-individual {
  padding-top: 50px;
  padding-bottom: 50px;
}
.noticia-individual .not1 p {
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--parrafos-c);
}
.noticia-individual .not1 h4 {
  padding-top: 10px;
  color: var(--parrafos-c);
}
.noticia-individual .not1 h3 {
  color: #0397c7;
}

/* --------------Contacto-------------------
--------------------------------------------*/
#contact p {
  text-align: center;
  font-size: 20px;
  padding-bottom: 20px;
  color: var(--parrafos-c);
}
#contact h1 {
  color: #0397c7;
}
#contact h2 {
  color: #0397c7;
  padding: 10px;
  margin-bottom: 15px;
}

#contact .form #sendmessage {
  color: black;
  border: 1px solid var(--coloruno);
  display: none;
  text-align: center;
  padding: 0px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: #f9a826;
  display: none;
  border: 1px solid #0397c7;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: #0397c7;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form button[type="submit"] {
  border-radius: 45px;
  background: var(--fondo-b);
  border: 0;
  padding: 10px 10px;
  width: 100%;
  color: #0397c7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  outline: none;
}

#contact .form button[type="submit"]:hover {
  box-shadow: inset 300px 0 0 0 #0397c7;
  color: aliceblue;
}
@media (max-width: 900px) {
  .presu form input {
    height: 45px;
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .presu form input {
    height: 37px;
    font-size: 15px;
  }
}
@media (max-width: 350px) {
  .presu {
    padding: 40px 10px;
  }
}

/* portfolio */

.contenedor {
  margin: auto;
  padding-bottom: 100px;
  width: 90%;

  text-align: center;
  overflow: hidden;
}

.contenedor h3 {
  margin-top: 10px;
  font-size: 45px;
  color: var(--titulos-c);
  font-family: "tex";
}

@media (max-width: 500px) {
  .container-portada {
    background-size: 400%;
    animation: movimiento 17s infinite linear alternate;
    -webkit-animation: movimiento 17s infinite linear alternate;
  }
}
.contenedor p {
  font-size: 17px;
  font-weight: 300;
  color: var(--parrafos-c);
  text-align: center;
}

.after::after {
  content: "";
  display: block;
  margin: auto;
  margin-top: 10px;
  width: 100px;
  height: 6px;
  background: var(--parrafos-c);
}

.botones-work {
  overflow: hidden;
}

.botones-work li {
  display: inline-block;
  text-align: center;

  padding: 6px 15px;
  border: 1px solid var(--color1);
  list-style: none;
  color: var(--parrafos-c);
}

.botones-work li:hover {
  background: var(--parrafos-c);
  color: #fff;
  cursor: pointer;
}

.botones-work .active {
  background: var(--parrafos-c);
  color: #fff;
}

.galeria-work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* caja de catalogo*/
/* caja de web */

.color:hover {
  background: #3b5998;
}

.textos-work {
  margin-top: -5px;
  height: 10%;
}

.textos-work h4 {
  line-height: 30px;
  font-weight: 300;
  color: var(--parrafos-c) !important;
}

.crr {
  color: var(--parrafos-c) !important;
}
.cont-work p {
  font-size: 50px;
}

/* CONTENEDOR SERVICIO*/

/*Footer */

@media screen and (max-width: 900px) {
  :root {
    --espacios-contenido: 25px;
  }

  .cont-work {
    width: 45%;
    height: auto;
  }
}
/* catalogo*/
@media screen and (max-width: 768px) {
  :root {
    --espacios-contenido: 25px;
  }

  .cont-work {
    width: 46%;
    height: auto;
  }
  .ogq {
    height: 400px;
  }
  .contenedor h3 {
    font-size: 35px;
  }

  .contenedor p {
    font-size: 17px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --espacios-contenido: 25px;
  }

  .cont-work {
    width: 90%;
    height: auto;
  }
}

@media screen and (max-width: 500px) {
  :root {
    --espacios-contenido: 25px;
  }

  .cont-work {
    width: 90%;
    height: auto;
    margin-top: 0px;
  }
  .row {
    height: auto;
  }
}

.df {
  background: #eb7a42;
  border-radius: 10px;
}
.mn {
  left: 35% !important;
}
.espacios-pequeños h4 {
  padding: 20px 20px 20px 20px;
}

.espacios-pequeños p {
  padding: 10px 20px 20px 20px;
}

.espacios-pequeños p {
  background: #051035;
  margin-top: -7px;

  padding: 20px 25px 0px 25px;
  border-radius: 0px 0px 10px 10px;
  text-align: justify;
}

.espacios-pequeños button {
  margin-bottom: -60px;
  position: relative;

  color: white !important;
  border-style: none;
  outline: none;
  background: inherit;
  background: var(--naranja);
  padding: 10px 10px 10px 10px;
}

.espacios-pequeños .boton-menos {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  left: 43%;
  right: 43%;
}
@media (max-width: 768px) {
  .espacios-pequeños .boton-menos {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    left: 45%;
    right: 45%;
  }
}
@media (max-width: 500px) {
  .espacios-pequeños .boton-menos {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    left: 35%;
    right: 35%;
  }
}

.mn {
  left: 40% !important;
}

.espacios-pequeños .boton-mas {
  border-radius: 40px 40px 40px 40px;
  padding: 10px 20px 10px 20px !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.espacios-pequeños .boton-mas:hover {
  box-shadow: inset 0 40px 0 0 #363636;
}

.espacios-pequeños button a {
  color: white;
  text-decoration: none;
}

.espacios-pequeños button .boton-menos {
  color: white;
}

.letra-peq {
  color: white !important;
}

.espacio-ancho {
  background: var(--fondo-b);
  margin-top: 40px;
  border-radius: 10px 10px 40px 40px;
}

.espacio-ancho .izq-ancho p {
  font-size: 40px;
  text-align: center !important;
  padding: 20px 20px 20px 20px;
}

.espacio-ancho .der-ancho p {
  text-align: left !important;
  padding: 0px 20px 0px 20px;
}
@media (max-width: 470px) {
  .espacios-pequeños .abrir {
    padding: 5px 0px 0px 0px !important;
  }
  .contenedor {
    width: 100% !important;
  }
  .espacios-pequeños .abrir ul li {
    font-size: 13px;
    margin-left: -0px;
  }
  .espacio-ancho .carac {
    padding: 20px 0px 10px 0px !important;
  }
  .espacio-ancho .carac {
    padding: 20px 0px 10px 0px !important;
  }
  .espacio-ancho ul li {
    padding: 0px 0px 0px 0px !important;
    margin-left: -40px;
  }
  .espacios-pequeños .boton-menos {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    left: 45%;
  }
}

@media (max-width: 410px) {
  .espacios-pequeños .abrir {
    padding: 5px 0px 0px 0px !important;
  }
  .contenedor {
    width: 100% !important;
  }
  .espacios-pequeños .abrir ul li {
    font-size: 13px;
    margin-left: -30px;
  }
  .espacio-ancho .carac {
    padding: 20px 0px 10px 0px !important;
  }
  .espacio-ancho .carac {
    padding: 20px 0px 10px 0px !important;
  }
  .espacio-ancho ul li {
    padding: 0px 0px 0px 0px !important;
    margin-left: -40px;
  }
}
@media (max-width: 390px) {
  .espacio-ancho .der-ancho p {
    text-align: justify !important;
    padding: 0px 5px 0px 5px;
    font-size: 15px;
  }
}

.espacio-ancho .boton-ancho-mas {
  color: white;
  background: var(--naranja);
  padding: 10px 10px 10px 10px;
  width: 100%;
  border-radius: 40px;
  border-style: none;
  outline: none;
}

.espacio-ancho .carac {
  background: var(--naranja) !important;
  margin-top: -7px;
  border-radius: 0px 0px 10px 10px;
  color: white;
  padding: 20px 10px 10px 10px;
}

.espacio-ancho .boton-ancho-menos {
  color: white;
  background: var(--naranja);
  padding: 10px 10px 10px 10px;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  border-style: none;
  outline: none;
}

.espacio-ancho .colum ul {
  list-style: none;
  color: #ffffff;
}

.espacio-ancho .colum ul li span {
  color: #ffffff !important;
}

.boton-ancho-mas a {
  color: white !important;
}

.boton-ancho-menos a {
  color: white !important;
}

.precio-det {
  background: var(--fondo-b) !important;
  text-align: center !important;
  font-size: 50px !important;
  padding: 0px 0px 0px 0px !important;
  margin-bottom: -30px;
  font-family: "Raleway", sans-serif;
}

.espacios-pequeños .abrir {
  background: rgb(47, 47, 47);
  margin-top: -7px;
  border-radius: 0px 0px 10px 10px;
  padding: 5px 0px 0px 0px;
}

.espacios-pequeños .abrir ul {
  list-style: none;
}

.espacio-1 {
  margin-top: 40px;
}

.espacios-pequeños1 h4 {
  font-size: 25px;
  font-family: "Raleway", sans-serif;
  margin-bottom: -20px;
}

.espacios-pequeños h4 {
  font-size: 23px;
  font-family: "Raleway", sans-serif;
}

.er {
  text-align: center !important;
}

.sd {
  top: 20px !important;
}

.boton-carrito {
  padding: 15px 15px 15px 15px !important;
  border-radius: 40px;
  color: white !important;
  background: #363636;
  font-size: 25px;
  position: absolute;
  top: -10px;
  right: 5px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.boton-carrito:hover {
  box-shadow: inset -50px -50px 0 0 #0397c7;
}

.boton-carrito-ancho {
  padding: 10px 10px 10px 10px !important;
  border-radius: 10px 10px 10px 10px;
  color: white !important;
  background: var(--naranja);
  font-size: 30px;
  position: absolute;
  top: 18px;
  right: 0px;
}

.service-icon i {
  background: white !important;
  background: var(--naranja) !important;
  border-radius: 100%;
  padding: 10px;
  font-size: 35px !important;
}

@media (max-width: 1300px) {
  .espacios-pequeños {
    margin-top: 20px;
  }

  .espacios-pequeños .boton-menos {
    text-align: center;
  }

  .iconos-serv {
    text-align: center;
    width: 70%;
  }
  .mn {
    left: 45% !important;
  }
}
/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
footer {
  background: #f8f8f8;

}
footer div img {
  width: 60%;
}
.footer {
  padding: 10px 50px 20px 50px;
}
.footer h4 {
  font-size: 20px;
  color: #0397c7;
  font-family: "tex";
  margin-bottom: 10px;
  padding-bottom: 3px;
}
.footer .n {
  padding: 15px;
}
footer .footer a {
  font-size: 18px;
}
footer a {
  color: rgb(66, 66, 66);
  margin-left: 10px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  line-height: 10px !important;
}
footer a:hover {
  color: #0397c7;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
footer .redes a {
  font-size: 30px;
  color: #0397c7;
}
footer .redes a:hover {
  font-size: 30px;
  color: #19404e;
}
.icon-instagram {
  margin-left: 10px;
  margin-right: 10px;
}
.icon-whatsapp:hover {
  color: rgb(4, 248, 98);

  text-decoration: none;
}
.icon-instagram:hover {
  color: rgb(60, 92, 128);

  text-decoration: none;
}
.icon-facebook:hover {
  color: rgb(67, 95, 167);

  text-decoration: none;
}

.copiryght {
  width: 100%;

  color: rgb(46, 46, 46);
  height: 30px;
  text-align: center;
}
.copiryght p {
  padding: 20px 20px 10px 20px;
}
.copiryght a {
  color: #0397c7;
}
.copiryght a:hover {
  text-decoration: none;
  color: #eb7a42;
}
.copiryghtb {
  width: 100%;
  background: #f8f8f8;
  color: rgb(46, 46, 46);
  height: 40px;
  text-align: center;
}
.copiryghtb h6 {
  padding: 10px 0px 10px 0px;
}
.copiryghtb a {
  color: #0397c7;
}
.copiryghtb a:hover {
  text-decoration: none;
  color: #eb7a42;
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 25px 20px 25px;
  }
}

/* sero */
.sero {
  margin-bottom: 100px;
}
/* .sero .col-md-8, .col-md-4, .col-md-2, .col-md-6{
  padding:10px 10px;
} */
.sero .col-md-2 img {
  margin-top: 30px;
  width: 50%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.sero h1 {
  font-family: "tex";
  font-size: 40px;
  font-weight: bold;
  color: #0397c7;
}
.sero p {
  font-size: 17px;
  color: var(--parrafos-c);
}
.sero .dent {
  padding: 0px 20px 0px 20px;
}
/* ---------botones-------- */
.sero .contenedor1 {
  background-color: #ffffff;
  padding: 20px;
  height: 400px;
}
.sero .contenedor1:hover {
  border: 3px solid #eb7a42b3;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.sero .contenedor1 a {
  background-color: #f9a826;
  text-decoration: none;
}
.sero .contenedor1 img {
  width: 50%;
  height: 150px;
}

@media (max-width: 768px) {
  .sero h1 {
    font-family: "tex";
    font-size: 30px;
    font-weight: bold;
    color: var(--titulos-c);
  }
}

/* ===================================================
noticias
=====================================================*/
.noticias .not1 .not img {
  padding-top: 10px;
  text-align: center;
}
@media (max-width: 600px) {
  .noticias .not1 .not img {
    padding-top: 20px;
    text-align: center;
    width: 200px;
  }
}
@media (max-width: 400px) {
  .noticias .not1 .not img {
    padding-top: 20px;
    text-align: center;
    width: 50px;
  }
  .noticias .not1 .not h3 {
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    font-family: "tex";
    font-size: 30px;
    font-weight: bold;
    color: #0397c7;
  }
}
@media (max-width: 1200px) {
  .noticias .not1 .not img {
    padding-top: 20px;
    text-align: center;
    width: 200px;
  }
}

.noticias h1 {
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
  font-family: "tex";
  font-size: 40px;
  font-weight: bold;
  color: #0397c7;
}

.noticias {
  color: var(--parrafos-c);
  padding-top: 50px;
  padding-bottom: 50px;
}
.noticias .not1 {
  padding-bottom: 20px;
}
.noticias button {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #0397c7;
  transition: 2s;
}
.noticias button:hover {
  transition: 0, 5s;
  background-color: #923b62;
}
.noticias button a {
  color: white;
  text-decoration: none;
}
.noticias button a:hover {
  text-decoration: none;
  color: white;
}

/* ===================================================
aliados 
=====================================================*/
.aliados {
  margin-bottom: 50px;
}
.aliados h1 {
  color: var(--titulos-c);
  font-family: "tex";
  margin-top: 20px;
  margin-bottom: 40px;
}
.aliados h2 {
  color: var(--parrafos-c);
  font-weight: bold;
  font-family: "tex";
  font-size: 23px;
}

.aliados p {
  color: var(--parrafos-c);
  font-size: 19px;
}
.aliados a {
  color: #e4a33c;
  font-size: 19px;
}
.aliados a:hover {
  color: #0397c7;
  font-size: 19px;
}
.aliados img {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .aliados .col-xs-12 {
    padding: 0px 30px 0px 30px;
  }
  .aliados h2 {
    text-align: center;
  }
  .aliados img {
    margin-top: 40px;
  }
}
/* *****************************************
              serivcio
 ******************************************* */
.servicio {
  margin-top: 50px;
}

/* *****************************************
              Sisad pagina
 ******************************************* */
.sis h1 {
  font-family: "tex";
  color: var(--titulos-c);
  font-weight: 700;
  font-size: 50px;
  margin: 0;
}
.sis .centrado {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sis .tit-sis {
  height: 150px;
}
.sis .par-sis {
  color: var(--subtitulos-c);
  height: 150px;
  font-size: 20px;
}
.margin-up-down {
  margin-top: 50px;
  margin-bottom: 50px;
}
.line-left {
  border-left: 1px dotted #0397c7;
}
.sis-act {
  margin-top: 50px;
  margin-bottom: 120px;
}
.sis-ideal .hover:hover h3 {
  display: none;
}
.sis-ideal .hover h3 {
  color: var(--subtitulos-c);
}
.sis-ideal .hover:hover h4 {
  display: block;
}
.sis-ideal .hover:hover {
  box-shadow: inset 0px 150px #0397c7ad;

  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  color: var(--subtitulos-c);
}
.sis-ideal .hover {
  border: 1px solid #cecece;
  width: 100%;
  height: 150px;
  padding: 15px;
}
.sis-ideal .hover span {
  color: #cecece;
}
.sis-ideal .hover h4 {
  display: none;
}
.img-sis img {
  width: 100%;
}
.img-sis {
  text-align: center;
  color: var(--subtitulos-c);
}
@media (max-width: 768px) {
  .sis h1 {
    font-family: "tex";
    color: var(--titulos-c);
    font-weight: 700;
    font-size: 35px;
    margin: 0;
  }
  .sis .par-sis {
    height: 150px;
    font-size: 17px;
  }

  .img-sis img {
    width: 70%;
  }
}
@media (max-width: 576px) {
  .sis .tit-sis {
    height: 50px;
  }
}

/*-------------------------------------------
 aliados 
 --------------------------------------------*/
.aliadoss img {
  width: 100%;
}
.aliadoss {
  margin-top: 50px;
  margin-bottom: 50px;
}
.aliadoss .carde {
  padding: 10px;
  box-shadow: 0px 2px 5px #0397c7;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.aliadoss .carde .benefi {
  padding: 10px;
}
.aliadoss .carde .benefi h4 {
  border-bottom: 1px solid #8a8a8a;
}
.aliadoss .carde .benefi ul {
  list-style: none;
  color: #0397c7;
}
.aliadoss .carde .benefi a {
  color: #0397c7;
}
.aliadoss h1 {
  font-family: "tex";
  color: #0397c7;
  font-weight: 700;
  font-size: 50px;
  margin: 0;
}
/* ******************************************************perfil */
.perfil {
  margin: 10px 0px;
  padding: 50px;
  background: linear-gradient(
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.2)
    ),
    url(../img/why.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.perfil .card {
  box-shadow: 1px 1px 5px 1px #29292939;
  background: #ffffffcd;
}
.perfil a {
  color: #3b3d3e;
}
.perfil .cuadro-op {
  margin-bottom: 10px;
}
.perfil .opciones {
  padding: 10px;
  background: #ffffff93;
}
.perfil .active {
  background: #0396c749;
  border-left: 5px solid #0397c7;
}
.perfil a {
  text-decoration: none;
}
.perfil a li:hover {
  border-left: 5px solid #0397c7;
  box-shadow: inset 270px 0px 1px #0396c749;
  transition: all 0.2s;
  font-weight: 700;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.perfil ul a li {
  transition: all 0.2s;
  padding: 10px 10px;
  text-align: left;
  border-radius: 5px;
  margin-bottom: 3px;
  list-style: none;
}
.perfil ul a li span {
  padding: 0px 10px;
}

.perfil .cambio {
  padding: 20px;
}
@media (max-width: 768px) {
  .perfil {
    padding: 10px;
  }
  .perfil a li:hover {
    box-shadow: inset 400px 0px 1px #0397c755;
  }
}
@media (max-width: 576px) {
  .perfil {
    margin: 40px 0px !important;
    padding: 10px;
  }
  .perfil a li:hover {
    box-shadow: inset 400px 0px 1px #0397c755;
  }
}
/* global */
.badge-proceso {
  background: rgb(234, 218, 50);
}
.badge-confirmado {
  background: rgb(67, 198, 109);
  margin: 4px;
}
.badge-rojo {
  background: rgb(198, 84, 67);
  margin: 4px;
}

.btn-info {
  background: #bab2b2;
  border: none;
}
.btn-info:hover {
  background: #949494;
}
.inputWithIcon input {
  border: none;
  border: 2px solid #d8d8d8;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.612);
  padding-right: 12px;
  padding-left: 35px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.inputWithIcon {
  position: relative;
}

.inputWithIcon i {
  position: absolute !important;
  left: 0;
  top: 34px;
  padding: 9px 15px;
  color: #aaa;
  transition: 0.3s;
}

.inputWithIcon input:focus + i {
  color: #0397c7 !important;
}

.inputWithIcon input:focus {
  border: 2px solid #0397c7;
  box-shadow: 1px 1px 5px 1px #ffffff00 !important;
}

.inputWithIcon select {
  position: relative;
  border: none;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  padding-left: 40px;
  padding-right: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.inputWithIcon select:focus + i {
  color: #0397c7 !important;
}

.inputWithIcon select:focus {
  border: 1px solid #0397c7;
  box-shadow: 1px 1px 5px 1px rgb(36, 36, 36, 0.3) !important;
}
/* inicio  */
.inputWithIconEnlace input {
  border: none !important;
  border-bottom: 2px solid #2074909e !important;
  background: rgba(255, 255, 255, 0.612);
}
.inputWithIconEnlace input:active {
  border: none !important;
  border-bottom: 2px solid #0396c79e !important;
  background: rgba(255, 255, 255, 0.612);
}
.inputWithIconEnlace input:hover {
  border: none !important;
  border-bottom: 2px solid #0396c79e !important;
  background: rgba(255, 255, 255, 0.612);
}

.inputWithIconEnlace input:focus {
  border: none !important;
  border-bottom: 2px solid #0396c79e !important;
  background: rgba(255, 255, 255, 0.612);
}
/* fin */
.inputWithIconLabel input {
  border: none;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.612);
  padding-right: 12px;
  padding-left: 35px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.inputWithIconLabel select {
  border: none;
  border: 2px solid #d8d8d8;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.612);
  padding-right: 12px;
  padding-left: 35px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.inputWithIconLabel select:focus + i {
  color: #0397c7 !important;
}

.inputWithIconLabel select:focus {
  border: 2px solid #0397c7;
  box-shadow: 1px 1px 5px 1px rgba(36, 36, 36, 0) !important;
}

.inputWithIconLabel {
  position: relative;
}

.inputWithIconLabel i {
  position: absolute !important;
  left: 0;
  top: 33px;
  padding: 9px 15px;
  color: #aaa;
  transition: 0.3s;
}

.inputWithIconLabel input:focus + i {
  color: #0397c7 !important;
}

.inputWithIconLabel input:focus {
  border: 2px solid #0397c7;
  box-shadow: 1px 1px 5px 1px #f9d61100 !important;
}
.inputWithIconIzq input {
  border-radius: 5px;

  padding-left: 37px;
  padding-right: 12px;

  background: #ffffff;
  border: 1px solid #c6c5c5;
}

.inputWithIconIzq {
  position: relative;
}

.inputWithIconIzq i {
  position: absolute !important;
  left: 0;
  top: 2px;
  padding: 9px 10px;
  color: #aaa;
  transition: 0.3s;
}

.inputWithIconIzq input:focus + i {
  color: #0397c7;
}

.inputWithIconIzq input:focus {
  border: 1px solid #0397c7;
  box-shadow: 1px 1px 5px 1px #42bdf200 !important;
}

/* .inputWithIconIzq textarea {
  border-radius:15px
} */
.inputWithIconIzq textarea:focus {
  border: 2px solid #ffffff;
  box-shadow: 1px 1px 5px 1px #ffffff !important;
}

.inputWithIconIzq select {
  position: relative;
  border: none;
  border: 2px solid #d8d8d8;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  padding-left: 40px;
  padding-right: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #0d506a !important;
  font-weight: 700;
}

.inputWithIconIzq select:focus + i {
  color: #0397c7 !important;
}

.inputWithIconIzq select:focus {
  border: 2px solid #0397c7;
  box-shadow: 1px 1px 5px 1px rgb(36, 36, 36, 0.3) !important;
}
/* login */
/* ******************************************************* inicio de sesion */



.logreg {
  height: 100%;
}
.top {
  padding-top: 50px;
}
.top-l {
  padding-top: 50px;
  padding-bottom: 50px;
}
.logreg .card {
  padding: 10px;
  background: transparent;
  border: none;
}
.logreg .login-in {
  padding: 0px 0px;
}
.logreg .login-in .olvide-pass {
  padding-top: 10px;
}
.logreg a {
  color: #0397c7;
}
.logreg a:hover {
  color: #186984;
}
@media (min-width: 1000px) {
  .logreg .card .login {
    padding: 50px;
  }

  .logreg .card .register {
  }
}
@media (max-width: 1200px) {
  .logreg .login-in {
    padding: 0px 10px;
  }
}

@media (max-width: 768px) {
  .logreg .card .register {
    padding-top: 20px;
  }

  .logreg .card .izq-izq {
    padding: 0px 2px 0px 15px;
    width: 50%;
  }

  .logreg .card .der-der {
    padding: 0px 15px 0px 2px;
    width: 50%;
  }
  .logreg .login-in {
    padding: 0px 10px;
  }
}
@media (max-width: 576px) {
  .logreg .card {
    margin: 10px 0px 0px 0px;
  }
  .logreg .card .register {
    padding-top: 20px;
  }

  .logreg .card .vertical {
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .logreg .card .vertical {
    border: none;
  }
  .logreg .card .login {
    padding: 20px 0px;
  }
  .logreg .card .izq-izq {
    width: 50%;
  }
  .logreg .card .der-der {
    width: 50%;
  }
  .logreg {
    margin: 0px 0px !important;
  }
  .logreg .login-in {
    padding: 0px 10px;
  }
  .logreg .img-log img {
    display: none;
  }
  .logreg .img-log {
    padding: 20px !important;
    text-align: center;
  }
}

.logreg .card h4 {
  padding-bottom: 10px;
}

.logreg .card .vertical {
  border: none;
}

.logreg .btnn input {
  padding: 5px;
  text-decoration: none;
  border: 1px solid #0397c7;
  color: #fff;
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  background: #0397c7;
}

.logreg .btnn input:hover {
  box-shadow: inset 0px 80px #1b6882;
  color: white;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.logreg .img-log {
  padding: 20px;
}
.logreg .img-log img {
  padding: 20px;
}
.logreg p {
  color: #959595;

  line-height: normal;
}

.contenido-curso {
  padding: 10px;
}
/* compras pagina */
.compras {
  padding: 30px 0px;
}
.cont-compras::-webkit-scrollbar {
  width: 7px;
}

.cont-compras::-webkit-scrollbar-thumb {
  background: #0397c7;
  border-radius: 5px;
}

.cont-compras {
  width: 100%;
  height: 400px;
  overflow: auto;
}
.compras .card-header {
  background: white;
}
.compras .card-header h5 {
  background: white;
  color: #0397c7;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  font-family: "tex", sans-serif;
}
/* carrito */
.carrito-n {
  padding: 20px;
}
.card-n.precios {
  padding: 10px;
  border: 1px solid rgb(206, 206, 206);
  background: white;
  box-shadow: 1px 1px 3px #2525259a;
  padding: 10px;
}
.card-n .precios .btns {
  width: 100%;
}
.card-n .termi {
  padding: 10px;
}
.card-n .precios {
  padding: 10px;
  border: 1px solid rgb(206, 206, 206);
  background: white;
  box-shadow: 1px 1px 3px #2525259a;
  padding: 10px;
}
.carrito {
  padding: 40px 10px;
  height: 100vh;
}
.carrito-in {
  border: 1px solid rgb(243, 243, 243);
}
.carrito .precios {
  padding: 10px;
  border: 1px solid rgb(206, 206, 206);
  background: white;
  box-shadow: 1px 1px 3px #2525259a;
  padding: 10px;
}
.carrito .precios .btns {
  width: 100%;
}
.carrito .termi {
  padding: 10px;
}

.img-perfil img {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 250px;
  height: 250px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 0px 0px 0 rgba(62, 62, 62, 0.163),    0 0px 0px 0 rgba(0, 0, 0, 0.149), 0px 1px 11px 0px rgba(0, 0, 0, 0.299);
}
.img-nos img {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .img-nos img {
    width: 100%;
    height: 200px;
  }
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.whatsapp a {
  width: 50px;
  padding: 10px 15px;
  height: 50px;
  background: #00bb2d;
  color: white;
  font-size: 25px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
.about {
  margin-top: 100px;
  margin-bottom: 100px;
}
.about .col-md-6 {
  text-align: center;
}

.about p {
  color: var(--parrafos-c);
  text-align: right;
  font-size: 20px;
}

.about .col-md-6 img {
  width: 80%;
}
@media (max-width: 768px) {
  .about .col-md-6 img {
    width: 60%;
    margin-top: 40px;
  }
  .about p {
    padding: 0px 10px 0px 0px;
    font-size: 17px;
  }
  .about {
    margin-top: 50px;
    margin-bottom: 100px;
  }
}
/* .social-portada */
.social-portada {
  background: white;
  padding: 20px;
}
.social-portada a {
}
.social-portada button {
  background: white;

  font-size: 30px;
  width: 60px;
  height: 60px;
  padding: 5px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  margin: 3px 0px;
}
.social-portada button:hover {
  background: white;
  color: #f5f5f5;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
/* social portada barra lateral */
.social-portada-lateral {
}
.social-portada-lateral a {
}
.social-portada-lateral button {
  background: white;

  font-size: 30px;
  width: 60px;
  height: 60px;
  padding: 5px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  margin: 3px 0px;
}
.social-portada-lateral button:hover {
  color: #f5f5f5;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.tienda .tod a {
  text-decoration: none !important;
}
.tienda .tod p {
  text-decoration: none !important;
  color: #3e3e3e;
  margin: 2px 2px;
  padding: 5px 2px;
}
.tienda .tod .products:hover {
  box-shadow: 0 4px 6px 0 rgba(62, 62, 62, 0.095),
    0 1px 20px 0 rgba(0, 0, 0, 0.102), 0px 1px 11px 0px rgba(0, 0, 0, 0.068);
}
.tienda .tod .products img {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border: none;
}
/*--------------------------------------------------------------
# phones
--------------------------------------------------------------*/
.phones {
  background: var(--blanco-2);
}
.phones {
  padding: 40px 60px 20px 60px;
}

.phones h1 {
  font-family: "tex";
  color: var(--titulos-c);
  font-weight: bold;
}
.phones .row .der-phones {
  margin-top: 10px;
  margin-bottom: 20px;
}
.phones h3 {
  color: var(--subtitulos-c);
}
.phones input {
  height: 60px;
  font-size: 33px;
  width: 230px;
  padding: 0px 10px 0px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  background: #ffff;
  -o-border-radius: 5px;
  border: 1px solid #c1bfbf;
}
.phones input:focus {
  border-radius: 5px;
  border: 1px solid #ff914d;
  background: #ffffff;
  outline: 0px;
}
.phones button {
  height: 60px;
  font-size: 35px;
  border-radius: 5px;
  padding: 0px 12px 0px 12px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #ff914d;
  border: none;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}
.phones .xc {
  text-align: left !important;
}

@media (max-width: 1000px) {
  .phones {
    padding: 40px 20px 40px 20px;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 425px) {
  .phones {
    padding: 40px 20px 40px 20px;
  }

  .phones input {
    height: 60px;
    font-size: 30px;
    width: 200px;
    padding: 0px 10px 0px 10px;
  }
}
.tienda .tienda-in  {

}
.tienda .tienda-in .servicios-card {
  background: white;
  box-shadow: 0 0px 0px 0 rgba(62, 62, 62, 0.163),
  0 0px 0px 0 rgba(0, 0, 0, 0.149), 0px 1px 11px 0px rgba(0, 0, 0, 0.115);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.tienda .tienda-in .servicios-card .precio-serv{
  position: absolute;
  box-shadow: 0 0px 0px 0 rgba(62, 62, 62, 0.177),
    0 0px 0px 0 rgba(0, 0, 0, 0.088), 0px 1px 11px 0px rgba(0, 0, 0, 0.17);
  top:150px;
  right: 10px;
  background: rgba(255, 255, 255, 0.966);
  padding: 3px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.tienda .tienda-in .servicios-card .precio-serv span{
  font-size: 18px;
  font-weight: 700;
}
.tienda .tienda-in .servicios-card img {
  border-radius: 5px 5px 0px 0px;
  width: 100%;
  height: auto;
  -webkit-border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0px 0px;
  -ms-border-radius: 5px 5px 0px 0px;
  -o-border-radius: 5px 5px 0px 0px;
}
.tienda .tienda-in .servicios-card .card-serv {
  padding: 8px 4px 4px 4px;
}
.tienda .tienda-in .servicios-card .card-serv .button-serv{
  position: absolute;
  bottom: 0px;
  right: 0px;
}
/* modal */
.modal .card-serv-img img{
  border-radius: 3px!important;
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  -ms-border-radius: 3px!important;
  -o-border-radius: 3px!important;
  width:100%;
   height: 350px;
}
.modal-body .card-serv-card{
  padding-top: 30px;
  padding-right: 10px;
}
.card-serv-modal button{
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: white!important;
  padding: 3px 3px 3px 3px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
/* carrousel */

html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }

  .carousel-wrapper .carousel-cell img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0px 0px 5px 5px;
}
.card-port {
  width: 99.5%;
  padding:10px;
  text-align: center;
  background: #000000b9;
  position: absolute;
  top:1px;
  color: white;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.card-port button{
 
  position: absolute;
  top:5px;
  right: 5px;
  color: white;
 
}
.card-port h5{
 position: absolute;
 top:15px;
 left: 5px;
 color: black;
 background: white;
 padding: 3px;
 border-radius: 4px;
 -webkit-border-radius: 4px;
 -moz-border-radius: 4px;
 -ms-border-radius: 4px;
 -o-border-radius: 4px;
 box-shadow: 0 0px 0px 0 rgba(62, 62, 62, 0.177),
 0 0px 0px 0 rgba(0, 0, 0, 0.088), 0px 1px 11px 0px rgba(0, 0, 0, 0.17);

}


  .carousel-wrapper {
    position: relative;
    width: 100%;
    height: 60%;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

  .carousel-wrapper .carousel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
  }

  .carousel-wrapper .carousel .carousel-cell {
    background-color: #FFFFFF;
    width: 19%;
    height: auto;
    min-width: 120px;
    margin: 0 20px;
    transition: transform 500ms ease;
    box-shadow: 0 0px 0px 0 rgba(62, 62, 62, 0.435),    0 0px 0px 0 rgba(0, 0, 0, 0.149), 0px 1px 11px 0px rgba(0, 0, 0, 0.313);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: transform 500ms ease;
    -moz-transition: transform 500ms ease;
    -ms-transition: transform 500ms ease;
    -o-transition: transform 500ms ease;
}
.carousel-wrapper .carousel .carousel-cell .card-serv{
 /*  padding: 8px 4px 4px 4px; */
}
 .carousel-wrapper .carousel .carousel-cell .card-serv1 b{
   font-size: 18px;
   text-transform: capitalize;
  }
  .carousel-wrapper .carousel .carousel-cell .card-serv1 h5 b::before{
    content: '';
  
}
.carousel-wrapper .carousel .carousel-cell .card-serv .button-serv{
  position: absolute;
  bottom: 0px;
  right: -8px;
}
.carousel-wrapper .carousel .carousel-cell .card-serv .button-serv-precio{
  position: absolute;
  box-shadow: 0 0px 0px 0 rgba(62, 62, 62, 0.177),
    0 0px 0px 0 rgba(0, 0, 0, 0.088), 0px 1px 11px 0px rgba(0, 0, 0, 0.17);
  bottom:-4px;
  left: -3px;
  padding:4px 4px;
  background: rgba(255, 255, 255, 0.966);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
  .carousel-wrapper .carousel .carousel-cell .more {
    display: block;
    opacity: 0;
    margin: 5px 0 15px 0;
    text-align: center;
    font-size: 10px;
    color: #CFCFCF;
    text-decoration: none;
    transition: opacity 100ms ease;
  }

  .carousel-wrapper .carousel .carousel-cell .more:hover,
  .carousel-wrapper .carousel .carousel-cell .more:active,
  .carousel-wrapper .carousel .carousel-cell .more:visited,
  .carousel-wrapper .carousel .carousel-cell .more:focus {
    color: #CFCFCF;
    text-decoration: none;
  }



  .carousel-wrapper .carousel .carousel-cell .price {
    position: absolute;
    font-weight: 700;
    margin: 45px auto 0 auto;
    left: 50%;
    transform: translate(-50%);
    opacity: 0;
    transition: opacity 300ms ease 300ms;
  }

  .carousel-wrapper .carousel .carousel-cell .price sup {
    top: 2px;
    position: absolute;
  }

  .carousel-wrapper .carousel .carousel-cell.is-selected {
    transform: scale(1.2);
  }

  .carousel-wrapper .carousel .carousel-cell.is-selected .line {
    height: 35px;
  }

  .carousel-wrapper .carousel .carousel-cell.is-selected .price,
  .carousel-wrapper .carousel .carousel-cell.is-selected .more {
    opacity: 1;
  }

  .carousel-wrapper .flickity-page-dots {
    display: none;
  }

  .carousel-wrapper .flickity-viewport,
  .carousel-wrapper .flickity-slider {
    overflow: visible;
  }

/* password */
.password1{
  overflow: hidden
}
.password1 .form-group{
  width: 84%;
  float: left;
  box-sizing:border-box;
}
.password1 button{
  width: 14%;
  float: left;
  font-size: 16px;
  margin-left: 2px;
  margin-top:37px!important;
  box-sizing:border-box;
}
/*  */

@media (max-width:510px) {
  .password1 button{
  }
}


.password{
  overflow: hidden
}
.password .form-group{
  width: 84%;
  float: left;
  box-sizing:border-box;
  margin: 1% 0% 2% 0%;
}
.password button{
  width: 14%;
  float: left;
  margin:1% 1% 2% 1%;
  box-sizing:border-box;
}
.code{
  
  overflow: hidden
}
.code .form-group{
  width: 50%;
  float: left;
  box-sizing:border-box;
  
}
.form-group{
  margin-bottom: 5px;
}

/* ------------------------------------------------------- 
               1.BARRA LATERAL
----------------------------------------------------------*/

.barra_lateral {
  position: fixed;
  width: 245px;
  top: 0px;
  
  border-radius: 0px 0px 0px 0px;
  background: #fcfcfc;
  transition: all 400ms;
  height: 100%;
 /* border-right: 5px solid <?php print $datos["portada"]["color_por"] . "ee"; ?>;*/
  padding: 10px 5px 5px 10px;
  z-index: 99;
  box-shadow: 0 4px 6px 0 rgba(62, 62, 62, 0.163),    0 1px 20px 0 rgba(0, 0, 0, 0.149), 0px 1px 11px 0px rgba(0, 0, 0, 0.115);
  /*sombra*/
}

.barra_lateral {
  margin-left: -245px;
  
}

.barra_lateral li span {
  position: relative;
  left: 200px !important;
  margin-right: 10px !important;
  cursor: pointer;
  font-size: 15px !important;
  color: white ;
}

.panel {
  height: 100%;
}

.content-menu .barra_lateral a {
  text-decoration: none;
}

.content-menu .panel-g {
  padding: 0px 0px 0px 0px;
  height: 100vh;
}

.content-menu {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.content-menu2 {
  margin-left: 245px;
}
.content-menu2 .sub {
  padding-left: 16px;
}

.content-menu2 .fa-bars {
  left: 200px;
}



.content-menu .fa-bars {
  position: relative;
  left: 0px;
  cursor: pointer;
  padding:  9px 13px 7px 7px;
  font-size:25px;
  border-radius: 0px 40px 40px 0px;
  background: #FCFCFC;
  box-shadow: 0 0px 0px 0 rgb(62 62 62 / 16%), 0 0px 0px 0 rgb(0 0 0 / 15%), 0px 1px 11px 0px rgb(0 0 0 / 30%);
}
.content-menu .fa-bars:hover{
  border-radius: 0px 40px 40px 0px!important;
  background: #FCFCFC!important;
}


.content-menu2 .fa-bars {
  position: relative;
  left: 244px;
  

}


.content-menu li {
  text-align: left;
}

.content-menu ul {
  padding-left:14px;
}



  .content-menu .panel-g {
    height: 100vh;
  }


  .panel {
    overflow-x: hidden;
  }

  .content-menu .barra {
    width: 87%;
  }

  .content-menu .panel-card {
    width: 100%;
  }

  .content-menu .fa-bars {
    
    cursor: pointer;
  }

  .content-menu .panel-g {
    position: absolute;
    right: 0;
  }

  .content-menu2 .panel-g {
    position: absolute;
    right: 0;
  }

  .content-menu2 {
    position: absolute;
  }

  .content-menu {
    position: static;
    transition: all 100ms;
    -webkit-transition: all 100ms;
    -moz-transition: all 100ms;
    -ms-transition: all 100ms;
    -o-transition: all 100ms;
  }

  .content-menu2 {
    height: 100%;
    padding: 0px ;
    z-index: 99;
    transition: all 300ms;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -ms-transition: all 300ms;
    -o-transition: all 300ms;
  }

  .barra_lateral {
    margin-left: -245px;
  }

  .content-menu2 .barra_lateral {
    margin-left: -245px;
  }

  .barra_lateral {
    position: fixed;
    transition: all 400ms;
    height: 100%;
    padding: 10px 5px 0px 10px;
    z-index: 99;
  }



@media (max-width: 800px) {
  .content-menu .fa-bars {
    cursor: pointer;
  }
}

@media (max-width: 576px) {
  .content-menu .panel-g {
    height: 100vh;
  }


  .panel {
    overflow-x: hidden;
  }

  .content-menu .barra {
    width: 87%;
  }

  .content-menu .panel-card {
    width: 100%;
  }

  .content-menu .fa-bars {
    
    cursor: pointer;
  }

  .content-menu .panel-g {
    position: absolute;
    right: 0;
  }

  .content-menu2 .panel-g {
    position: absolute;
    right: 0;
  }

  .content-menu2 {
    position: absolute;
  }

  .content-menu {
    position: static;
    transition: all 100ms;
    -webkit-transition: all 100ms;
    -moz-transition: all 100ms;
    -ms-transition: all 100ms;
    -o-transition: all 100ms;
  }

  .content-menu2 {
    height: 100%;
    padding: 0px ;
    z-index: 99;
    transition: all 300ms;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -ms-transition: all 300ms;
    -o-transition: all 300ms;
  }

  .barra_lateral {
    margin-left: -245px;
  }

  .content-menu2 .barra_lateral {
    margin-left: -245px;
  }

  .barra_lateral {
    position: fixed;
    transition: all 400ms;
    height: 100%;
    padding: 10px 5px 0px 10px;
    z-index: 99;
  }

}

@media (max-width: 358px) {
  .content-menu .barra {
    width: 80%;
  }
}
/* ------------------------------------------------------- 
               2. HEADER
----------------------------------------------------------*/

.primero-portada {
    box-shadow: 0 0px 0px 0 rgba(62, 62, 62, 0.163),
    0 0px 0px 0 rgba(0, 0, 0, 0.149), 0px 1px 11px 0px rgba(0, 0, 0, 0.068);
    border-radius: 5px;
    background: #d1d1d180;
}
.container-portada1 {
  display: table;
  width: 100%;
  height: 55vh;
  position: relative;
  background-size: 100%;
  animation: movimiento 17s infinite linear alternate;
  -webkit-animation: movimiento 17s infinite linear alternate;
}
.portada-in {
  border-radius: 4px;
  margin-top: -78px!important;
  position:relative;
  top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: 0px!important;
    margin-right: 0px!important;
}

@media(max-width:576px) {
  .portada-in {
   /*  margin-top: -138px!important; */
    
  }
  .portada-in .col-xs-8{
    
  }
  .img-perfil img {
    width: 200px!important;
    height: 200px!important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto auto;
    background: #d1d1d180;
    margin-top: -170px!important; 
  }

}

.datos-por h1 {
  text-align: left;
  font-size: 35px;
  font-weight: bold;
  font-family: 'Raleway', sans-serif!important;
}


.datos-por {
  padding: 10px 0px;
}
.img-perfil img {
  background: #d1d1d180;
}

@media (max-width: 800px) {
  .container-portada1 {
    background-size: 250%;
    animation: movimiento 17s infinite linear alternate;
    -webkit-animation: movimiento 17s infinite linear alternate;
  }
  .img-perfil img {
    width: 180px;
    height: 180px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto auto;
    background: #d1d1d180;
  }
  

  .datos-por {
    padding: 40px 10px;
    text-align: center !important;
  }

  .datos-por h1 {
    text-align: center !important;
  }

}
@media (max-width: 572px) {
  .container-portada {
    height: 60vh !important;
  }
  .container-portada1 {
    object-fit: cover;
    background-size: 150% !important;
    animation: movimiento 17s infinite linear alternate;
    -webkit-animation: movimiento 17s infinite linear alternate;
  }
}

/* --------------------------------------------------
                  portafolio
------------------------------------------------------ */
.card-producto{
  background: white;
  box-shadow: 0 0px 0px 0 rgba(173, 173, 173, 0.177),
  0 0px 0px 0 rgba(145, 145, 145, 0.088), 0px 1px 11px 0px rgba(119, 119, 119, 0.17);
  border-radius: 5px;
  margin-top: 5px;
}
.card-producto:hover{
  background: white;
  transition: .3s;
  box-shadow: 0 0px 0px 0 rgba(68, 68, 68, 0.349),
  0 0px 0px 0 rgba(80, 80, 80, 0.267), 0px 1px 11px 0px rgba(119, 119, 119, 0.322)
  
}
.card-producto-text{
  padding: 4px 3px 0px 3px;
  background: white;
  z-index: 1;
  text-align: center;
  margin-top: 3px;
  position: relative; 
  border-radius: 0px 0px 5px 5px;
  height: 40px;
}
.btn-precio {
  border-radius: 4px 4px 4px 19px;
  font-weight: 700;
  position: absolute!important;
  bottom: 5px;
  left: -4px;
  color: #444444e7!important;
  font-family: raleway,sans-serif;

}
.card-producto-img{
   padding: 3px;
  max-width: 100%;
  max-height: 206px;
} 
.imagen-port img {
  width: 100%;
  border-radius: 4px;
}
.card-producto-text h6{
  padding-top: 0px;
  margin-bottom: 0px;
}
.ccd {
  position: relative;
  z-index: 4;
}
.card-producto-text .titulo-card {
  color: rgb(75, 68, 68)!important;
  font-size: 14px;
  font-weight: 700;
  font-family: raleway,sans-serif;
}

@media(max-width:576px) {
  .ccd h5 {
    font-size: 14px;
  }
  .card-producto-text .titulo-card {
      font-size: 14px;
    }
}


@media (max-width:570px) {
  .porta .col-xs-4 {
    width: 49.5%;
  }
}


.imagen-port img:hover {
  /* box-shadow: 0 0px 11px 0 rgb(62 62 62 / 16%), 0 0px 0px 0 rgb(0 0 0 / 15%), 0px 1px 11px 0px rgb(0 0 0 / 30%);
 */}
 .card-producto-botones{
 }
 .card-producto-botones a{
  position: relative;
  z-index: 4;
  
}
.card-producto-botones a{
 /*  position: absolute;
  bottom: 7px;
  right: 7px; */
  
}
.card-producto-botones a{
}
 /* btn-whatsapp */
 .button-whatsapp-portafolio {
  border-radius: 0px;
}


.button-whatsapp-portafolio:hover {
  background-color: #25D366cb !important;
  border-left: 1px solid #25D366cb;
  border-right: 1px solid #25D366cb;
}


  .cart {
    width: 100%;
    max-height: 270px;
    overflow-y: scroll;
  }


  .cart p:not(:last-child) {
    margin-bottom: 1rem;
  }

  .cart::-webkit-scrollbar {
    width: 4px;
  }

  .cart::-webkit-scrollbar-thumb:active {
    background-color: #999999;
  }
  .cart::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 4px;
  }

  .cart::-webkit-scrollbar-track:hover,
  .cart::-webkit-scrollbar-track:active {
    background: #d4d4d4;
  }

  .box {
    display: flex;
    padding: 3px;

  }

  .box-products {
    border-bottom: 1px dashed #e1e1e1;

  }

  .box-titulo h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0;
  }

  .box .imagen {
    width: 10%;
    flex: 1 1 auto;
    padding: 2px;
  }

  .box .imagen img {
    object-fit: cover;
    width: 100%;
    height: 50px;
    border-radius: 3px;
  }

  .box .nombre {
    width: 40%;
    flex: 1 1 auto;
  }

  .box .input {
    width: 25%;
    flex: 1 1 auto;
  }

  .box .input button {
    transform: scale(0.6);
  }

  .box .precio {
    width: 15%;
    flex: 1 1 auto;
  }

  .box .eliminar {
    width: 5%;
    flex: 1 1 auto;
  }

  .btn-carrito-todo {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .55rem;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: none;
  /*   box-shadow: 0 0px 0px 0 rgb(62 62 62 / 16%), 0 0px 0px 0 rgb(0 0 0 / 15%), 0px 1px 11px 0px rgb(0 0 0 / 30%);
  */ }

  

  /* .btn-carrito-todo:hover {
    box-shadow: none !important;
  } */
   .notificacion-carrito {
    background: white;
    border: 1px solid #e1e1e1;
    color: rgb(71, 70, 70);
    border-radius: 80%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: -3px !important;
    right: -3px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0px 1px 1px 1px;
    font-size: 14px;
    border-radius: 40px;
    width: 20px;
    height: 20px;
  }

  
 

  /*  .btn-group {
    position: fixed;
    top: 13px;
    right: 57px;
    z-index: 1;
  } */

   .dropdown-menu {
    border: none;
    min-width: 500px;
    max-width: 500px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }

  @media(max-width:500px) {
     .dropdown-menu {
      min-width: 440px;
    }
  }

  @media(max-width:460px) {
     .dropdown-menu {
      min-width: 400px;
    }
  }

  @media(max-width:570px) {
    .box .nombre {
      width: 30%;
      flex: 1 1 auto;
    }

    .box .input {
      width: 35%;
      flex: 1 1 auto;
    }

    .box .input button {
      transform: scale(0.6);
    }

     .dropdown-menu {
      min-width: 370px;
    }
  }

   .dropdown {}

  .dropdown:last-child .dropdown-menu {
    right: 0;
    left: auto;
  }

  .btn-whatsapp {
    background: #25d366;
    color: white !important;

  }

  .btn-whatsapp:hover {
    background: #128c7e;
    color: white !important;
    transition: .2s;
  }

  .btn-whatsapp:focus {
    background: #128c7e;
    color: white !important;
    transition: .2s;
  }
  /*  .btn-group1 {
    position: fixed;
    top: 13px;
    right: 12px;
    z-index: 1;
  } */

  /* menu */
  .ocultar-portada-movil{
    display: block;
  }
  .mostrar-portada-movil{
    display: none;
  }
  @media(max-width:572px){
    .ocultar-portada-movil{
      display: none;
    }
    .mostrar-portada-movil{
      display: block;
    }
    .container-portada1 {
      height: 20vh;
    }
  }


 



  .content-perfil {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0px;
    border-radius: 10px 10px 0px 0px;
  }
  .content-perfil .img{
    border-radius: 5px;
    box-shadow: 0 0px 0px 0 rgb(62 62 62 / 16%), 0 0px 0px 0 rgb(0 0 0 / 15%), 0px 1px 11px 0px rgb(0 0 0 / 30%);
 
  }

  @media(max-width:772px) {}

  @media(max-width:572px) {

    .content-perfil{
      padding: 5px !important;
    }

    .content-perfil .item2 h5 {
      font-size: 15px;
      color: white!important;
      line-height: 17px;
    }

    .content-perfil .item2 h6 {
      font-size: 12px;
      color: white!important;
      line-height: 5px;
    }

    .content-perfil .item2 h4 {
      color: white!important;
      font-size: 25px;
      
    }

  }

  .content-perfil .item2 h4 {
    font-weight: 700;
  }

  .content-perfil .item2 h5 {
    color: white;
  }

  .content-perfil .item1 {
    width: 30%;
  }

  .content-perfil .item2 {
    width: 70%;
    padding: 7px 0px 0px 10px;
  }

  @media(max-width:572px) {

    .conten .item1 {
      width: 30%;
    }
  
    .conten .item2 {
      width: 70%;
    }
  }

  @media(max-width:470px) {
    .conten {
      padding: 5px !important;
    }

    .item2 h5 {
      font-size: 15px;
    }

    .item2 h4 {
      font-size: 18px;
    }

  }

  .form-reg-ini {
    padding: 10px 30px 30px 30px;
  }

  .form-reg-ini .form-group input {
    font-size: 16px;
    box-shadow: none;
  }

  .img-perf {
    border-radius: 10px !important;
    width: 100px;
    height: 100px !important;
    box-shadow: 0 0px 0px 0 rgb(62 62 62 / 16%), 0 0px 0px 0 rgb(0 0 0 / 15%), 0px 1px 11px 0px rgb(0 0 0 / 30%);
  }




  .conten .item2 h4 {
    color: white !important;
    font-weight: 700;
  }

  .conten .item2 h5 {
    color: white !important;
  }

  .item1 {
    width: 25%;
  }

  .item2 {
    width: 75%;
  }

  .lbl-menu {
    background: transparent;
    color: #28435d
  }

  .lbl-menu label {
    display: inline-block;
    padding: 10px 4px 4px 4px;
    color: #28435d;
    cursor: pointer;
    transition: all 400ms ease;

  }

  .lbl-menu label:hover {
    background: #f1f1f1;
  }

  .lbl-menu .col-sm-6 {
    width: 50%;
  }

  .content {
    position: relative;
  }

  .content .tab {
    position: absolute;
    width: 100%;
    line-height: 1.8;
    transition: all 600ms ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
    background: #fff;
    border-radius: 10px;
    margin-top: 10px;
  }

  .content .tab form {}

  #radio1,
  #radio2 {
    display: none;
  }

  #radio1:checked~.tab1,
  #radio2:checked~.tab2 {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .content .tab1:after {}

  .content .tab2:after {
    background: red;
  }


  /* registro */
  .registro{
    padding: 40px 10px  ;
  }
  .registro h1{
    color: #0396c7;
  font-size: 35px;
  font-weight: bold;
  font-family: "tex", sans-serif;
  }
  .registro h4{
    color: #416875;
  }
  .registro img{
    width: 100%;
  }
  .registro .col-md-3{
    text-align: center;
  }
  /* tarjeta-tocs */
  .tocs{
    padding: 0px 40px;
  }
  .tocs .tarjeta-tocs .img-verticales{
    width: 50%;
  }
  .tocs .tarjeta-tocs .img-horizontales{
    width: 50%;
  }
  .tocs .tarjeta-tocs{
    padding: 20px 10px;
    text-align: center!important;
    /* 
    border: 1px solid #d4d4d4; */
    border-radius: 20px;
  }
  .tocs .tarjeta-tocs h5{
    text-align: center!important;
  }
  





  .botones-categorias {
    display: flex;
    flex-direction: row;
  }

  .botones-categorias .btn-principal {
    
  }
  .social-portada {
  background: white;
  text-align: center;
  padding: 20px 0px;
}
.social-portada a {
}
.social-portada button {
  background: white;

  font-size: 30px;
  width: 60px;
  height: 60px;
  padding: 5px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  margin: 3px 0px;
  
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  margin: 3px 0px;
  border: none;
}
.social-portada h6{
  font-size: 13px;
}
.social-portada button:hover {
  background: #fafafa;
  color: rgb(240, 84, 84);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

  .botones-categorias .btn-principal span {
    font-size: 40px;
    padding-bottom: 5px;
  }



  .container-propuestas {
    background: #0396C7;

}

.propuestas {
    margin-top: -60px;
    padding-bottom: 20px;
    border-radius: 10px;
    width: 100%;
}

.propuestas .col-xs-6 {
    width: 50%;
    margin-bottom: 3px;
}

.val {
    background: #f8f8f8;
    padding: 15px 10px;
    /* 
    border-radius: 150px 150px ; */
    border-radius: 5px;
    height: 180px;
    /*  */
    transition: .3s;
}

.val:hover {
    box-shadow: none;
    transition: .3s;
    box-shadow: 0 0px 0px 0 rgb(62 62 62 / 16%), 0 0px 0px 0 rgb(0 0 0 / 15%), 0px 1px 11px 0px rgb(0 0 0 / 30%);

}

.val .img-val {
    height: 100px;
}

.val .img-val img {
    max-height: 120px;
    max-width: 150px;
    margin-top: -30px;
}

.val .text-val h6 {
    font-weight: 700;
}


/* .capa-gradient {
    width: 100%;
    height: 90vh;
    position: absolute;
    background: url("<?php print RUTA ?>images/fondo.jpg");
    opacity: 0.5;
} */




.btn-empezar {
    text-align: left;
    background:#0396C7;
    color: white;
}

.btn-empezar:hover {
    background: #075E54;
    color: white;
}

.btn-adquirir:hover {
    background: #e4e4e6;
}






.planes .precio {
    color: #0397C7;
}

.fa-check {
    color: green;
}

.presentate-tipos .card-tipos {
    text-align: center;
}

.presentate-tipos .card-tipos h4 {
    font-weight: 700;
    color: #0397C7;
}

.presentate-tipos .card-tipos img {
    width: 60%;
    height: 200px;
    padding: 20px 10px;
}

.que-es {
    padding: 20px 0px 20px 0px;

}

.presentate-para .ventajas h4 {
    color: #0397C7;
    font-weight: 700;
    padding: 10px 0px;
}

.presentate-para .ventajas .parrafo {
    padding: 0px 10px 10px 10px;
}

.presentate-para .card {
    background: #fcfcfc;
    border: none;
}

.movil {
    display: none;
}

@media(max-width:576px) {
    .movil {
        display: block;
        padding: 10px 10px;
    }
}




.presentate-para h3,
h5 {
    text-align: left;
    color: white;
}

@media (max-width:576px) {

    .presentate-para h3,
    h5 {
        text-align: center !important;
    }

    .presentate-para img {
        width: 50%;
        margin-bottom: 0px;
    }

    .val .text-val h6 {
        margin-top: 15px;
    }

}

.presentate-para {
    background: #0396C7;
    border-radius: 0px 0px 550px;
}

.boto-ini button {
    font-size: 20px;
}

.boto-ini button:hover {
    color: #e9e9e9;
}

.boto-ini a {
    font-size: 20px;
    color: white;
    padding-right: 10px;
}

@media(max-width:576px) {
    .boto-ini {
        margin-top: 40px;
    }