:root{
  --color-text: #616161;
  --color-text-btn: #ffffff;
  --card1-gradient-color1: #2C3C94;
  --card1-gradient-color2: #2c3c94a3;
  --card2-gradient-color1: #2C3C94;
  --card2-gradient-color2: #2c3c94a3;
  --card3-gradient-color1: #2C3C94;
  --card3-gradient-color2: #2c3c94a3;
  --card4-gradient-color1: #2C3C94;
  --card4-gradient-color2: #2c3c94a3;
}
body {
  background-color: #fff;
  color: #636b6f;
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  height: 100vh;
  margin: 0;
}
/*
.navigation {
  height: 70px;
  

}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d5d5d5;
  padding: 10px;
  color:#2a2a2a;
}
.text-dark{
  color: #222 !important;
  font-weight: 800;
  font-stretch: narrower;
}
.nav-menu {
  list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    height: 70px;
}

.nav-menu li {
  margin-right: 20px;
}

.nav-menu li:last-child {
  margin-right: 0;
  flex-grow: 1;
}

.nav-menu a {
  text-decoration: none;
  color: white;
}

/* Estilo para el botón */
.boton-li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center; /* Alinea verticalmente el botón con el menú */
}

.boton {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: auto;
  margin-right: 15px;
}

.boton:hover {
  background-color: #0056b3;
}
/* Estilo para el botón 
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  
}

nav ul li {
  float: left;
  position: relative;
  
}

nav ul li a {
  display: block;
  padding: 0 20px;
  margin: 5px;
  line-height: 70px;
  text-decoration: none !important;
  color: #636b6f;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1rem;
  text-decoration: none;
  text-transform: uppercase;
}*/

.btn-outline-light:hover {
  background-color: #E52224 !important;
  border: #E52224 !important;
}

.color-gradient {
  background: #f9f9f9;

}
nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
.ingresar-btn{
  
  color: #E52224;
}
nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  background: #ffffff;
  color: #463f3f;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}
nav ul li a:hover {
  background: #f2f2f2;
  color: #E52224;
}
nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 20;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block !important;
  }
  .active-mobile {
    height: calc(70px + 260px) !important;
  }

  nav {
    width: 100% !important;
    padding: 70px 0 15px !important;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: '' !important;
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
/* 
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {
  height: 70px;
  background: #ffffff !important;
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
}
/* Estilo para el botón 
nav ul li a:hover {
  border-radius: 5px;
  background-color: #df3a15;
}

nav ul li a:not(:only-child):after {
  padding-left: 5px;
  content: ' ▾';
}

.nav-submenu {
  width: auto;
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, .25) !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: auto;
  display: none;
}

.nav-submenu li {
  width: 100%;
  white-space: nowrap;
}

.nav-movil {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  width: 100%;
}

@media screen and (max-width: 979px) {
  .nav-movil {
    display: block;
  }

  .nav-menu {
    display: none;
    margin-top: 70px;
  }

  .nav-menu li {
    float: none;
  }

  .nav-menu li a {
    padding: 20px;
    line-height: 20px;
    text-decoration: none;
  }

  .nav-menu li ul li a {
    padding-left: 30px;
    text-decoration: none;
  }

  .nav-submenu {
    position: static;
  }
}

@media screen and (min-width: 980px) {}

#nav-boton {
  position: absolute;
  left: 20px;
  top: 25px;
  cursor: pointer;
  width: 20px;
  height: 10px;
  padding: 5px 15px 15px 0px;
  z-index: 1;
}

#nav-boton span,
#nav-boton span:after,
#nav-boton span:before {
  transition: all 500ms ease-in-out;
  border-radius: 1px;
  height: 5px;
  width: 40px;
  position: absolute;
  display: block;
  content: "";
  background: #fff;
}

#nav-boton span:before {
  top: -10px;
}

#nav-boton span:after {
  bottom: -10px;
}

#nav-boton.activo span {
  background-color: transparent;
}

#nav-boton.activo span:before,
#nav-boton.activo span:after {
  top: 0;
}

#nav-boton.activo span:after {
  transform: rotate(-45deg);
}

#nav-boton.activo span:before {
  transform: rotate(45deg);
}
*/
header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row {
  margin-left: 0px !important;
}

.background-image {
  width: 100%;
  background-image: url(../images/header2.png);
  background-size: cover;
  background-position: center;
}
.background-image-fondo {
  width: 100%;
  background-image: url(../images/headerfondo.jpg);
  opacity: 50%;
  
  background-size: cover;
  background-position: center;
}

.background-image-contacto {
  width: 100%;
  background-image: url(../images/Contacto.png);
  background-size: cover;
  background-position: center;
}

.background-biblioteca {
  width: 100%;
  background-image: url(../images/1.jpg);
  background-size: cover;
  background-position: center;
}

.container4 {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: white;
  margin: 10px 50px 140px 50px;
  box-shadow: 0 0 0 1em #a8b5db58,
    0 0 0 2em #a8b5db2e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.red {
  color: #df3a15;
}

.fa-icon {
  font-size: 40px;
}

.container3 {
  position: relative;
  width: 200px;
  height: 200px;
}

.outer-circle,
.middle-circle,
.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: white;
}

.outer-circle {
  width: 240px;
  height: 240px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.middle-circle {
  width: 180px;
  height: 180px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.inner-circle {
  width: 120px;
  height: 120px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
/*
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
*/
.horizontal-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.horizontal-menu li {
  display: inline-block;
}

.horizontal-menu li a {
  display: block;
  padding: 10px;
  text-decoration: none !important;
  color: #333;
}

.toggle {
  width: 30px;
  height: 25px;
  background: url('../images/menu-bar.png') no-repeat center;
  background-size: 20px;
  cursor: pointer;
  display: none;
}

.horizontal-menu.active {
  display: flex;
  flex-direction: column;
}

.horizontal-menu.active li {
  margin-left: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .page-principal{
    min-height: 200px !important;
  }
  header{
    height:auto !important
  }
  .gym-class{
    margin-top: 10px !important;
  }
  .padding-instagram{
    padding-left:0% !important;
    padding-right:0% !important;
    margin-top: 10px !important;
  }
  .login{
    padding-top: 0px !important; 
  }
  .screen2{
    box-shadow: none !important;
    border: 1px solid #2C3C94 !important;
    border-radius: 20px !important;
    padding-top: 10px !important;

  }
  .screen{
    width: auto !important;
    border-radius: 20px !important;
    box-shadow: none !important;
    
  }
}
@media (min-width: 600px) and (max-width: 768px) {
 .page-principal{
  min-height: 350px !important;
 }
  header{
    height:auto !important
  }
  .gym-class{
    margin-top: 10px !important;
  }
  .padding-instagram{
    padding-left:0% !important;
    padding-right:0% !important;
    margin-top: 10px !important;
  }
  .login{
    padding-top: 0px !important; 
  }
  .izquierda{
    justify-content: center !important;
  }
  .screen2{
    box-shadow: none !important;
    border: 1px solid #2C3C94 !important;
    border-radius: 20px !important;
    padding-top: 10px !important;

  }
  .derecha{
    
  display: flex;
  align-items:start;
    justify-content: center !important;
    margin-top: 15px !important;
  }
  .screen{
    border-radius: 20px !important;
    box-shadow: none !important;
    
  }
}
@media (min-width: 874px) {
  .page-principal{
    min-height: 350px !important;
   }
  #instagram-embed-0{
    width: 80% !important;
  }
}

@media (max-width: 768px) {
  .horizontal-menu {
    display: none;
  }

  .toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  .horizontal-menu {
    display: flex;
  }

  .toggle {
    display: none;
  }
}

.dropdown {
  position: relative;
}

.dropdown:hover .vertical-menu {
  display: block;
}

.vertical-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vertical-menu li {
  display: block;
}

.vertical-menu li a {
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.vertical-menu li a:hover {
  background-color: #df3a15;
}

.dropdown>a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown.open>a::after {
  transform: rotate(90deg);
}

.card-title {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.2rem;
}

p,
a {
  font-size: 1rem;
}

.list-group-item {
  background-color: transparent !important;
  border-style: none !important;
}

.card-transparent {
  /* other styles */
  width: auto;
  height: auto;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  color: white;
  background: rgba(255, 255, 255, .25) !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1.5px solid rgba(209, 213, 219, 0.3);
}

.card-transparent2 {
  /* other styles */
  width: auto;
  height: auto;
  padding: 2rem;
  font-size: 1rem;
  background: transparent !important;
  border-style: none !important;
}

.btn-unebanco {
  background-color: #df3a15 !important;
  border-color: #df3a15 !important;
}

.btn-unebanco:hover {
  background-color: #c8543ad1 !important;
  border-color: #c8543ad1 !important;
}

.texto-titulos {
  color: #636b6f;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: .1rem;
  text-decoration: none;
  text-transform: uppercase;
}


.texto-titulos-login {
  color: #636b6f;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.texto-subtitulos {
  color: #ffffff;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.container2 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
}

.top-boxes {
  display: flex;
  flex-wrap: wrap;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.bottom-boxes {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.container5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 0px;
}

.box1 {
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #ffffff;
  margin: 0px;
  text-align: center;
}

.color-blue {
  color: #546ecf;
  font-weight: bold;
}

.background-blue {
  background-color: transparent !important;
  color: white !important;
}

.background-blue2 {
  background-color: #546ecf !important;
  color: white !important;
}

.color-blue-font {
  color: #141d2a;
  font-weight: bold;
}

.box1:hover {
  background-color: #546ecf;
  color: white !important;

}

.custom-border {
  border-color: #546ecf !important;
}

.box1:hover i {
  color: white !important;

}

.box1 i {
  font-size: 30px;
  margin-bottom: 10px;
}

.box1 span {
  font-size: 14px;
}

.box {
  width: 25vh;
  max-width: 500px;
  height: 25vh;
  margin: 5px;
  color: #ddd;
  background-color: #546ecf;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: scale(1.2);
}

.box:hover,
.box.clicked {
  transform: scale(1.2);
  color: #f4f4f4;
}

.izquierda-superior {
  border-bottom-right-radius: 50px;
}

.mostrar {
  display: none;
}

.izquierda-inferior {
  border-bottom-left-radius: 50px;
}

.derecha-superior {
  border-top-right-radius: 50px;

}

.derecha-inferior {

  border-top-left-radius: 50px;
}

.icon {
  font-size: 50px;
  /* Ajusta el tamaño del icono según tus necesidades */
  max-width: 100%;
  /* Limita el ancho máximo del icono al ancho del contenedor */
  max-height: 100%;
}

.label {
  /* Estilos de la etiqueta, como color de texto, tamaño de fuente, etc. */
}

@media only screen and (max-width: 600px) {
  .box {
    width: 23vh;
    height: 23vh;
  }

  .icon {
    font-size: 30px;
    /* Ajusta el tamaño del icono según tus necesidades */
    max-width: 100%;
    /* Limita el ancho máximo del icono al ancho del contenedor */
    max-height: 100%;
  }

  .label {
    display: none;
    /* Estilos de la etiqueta, como color de texto, tamaño de fuente, etc. */
  }
}

@media (min-width: 601px) and (max-width: 899px) {
  .box {
    width: 20vh;
    height: 20vh;
  }

  .icon {
    font-size: 40px;
    /* Ajusta el tamaño del icono según tus necesidades */
    max-width: 100%;
    /* Limita el ancho máximo del icono al ancho del contenedor */
    max-height: 100%;
  }

  .label {
    display: none;
    /* Estilos de la etiqueta, como color de texto, tamaño de fuente, etc. */
  }
}
/*
.navbar {
  overflow: hidden;
  background-color: #333;
}

/* Estilos para los enlaces 
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Estilos para los enlaces al pasar el ratón por encima 
.navbar a:hover {
  background-color: #ddd;
  color: black;
}*/

.borderless ul,
.borderless li {
  border: none !important;
}

.hover-card:hover {
  color: #000000;
  background-color: #9d9ea2 !important;
}

.hover-card:hover ul li {
  color: #000000;
  background-color: #9d9ea2 !important;
}

.small-image {
  width: 100px;
  /* Ajusta el tamaño de la imagen según tus necesidades */
  height: auto;
  /* Mantiene la proporción de la imagen */
  border-radius: 10px;
}

.small-image2 {
  width: 50px;
  /* Ajusta el tamaño de la imagen según tus necesidades */
  height: auto;
  /* Mantiene la proporción de la imagen */
  border-radius: 10px;
}

.container4 {
  display: flex;
  justify-content: center;
}

.link {
  display: inline-block;
  text-align: center;
  padding: 10px;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s;
}

a {
  text-decoration: none !important;
  /* Quita el subrayado
  color: inherit !important;
  /* Hereda el color del texto del elemento padre 

}

a:last-child {
  margin-right: 0;
  /* Elimina el margen derecho del último enlace */
}

a:hover {
  color: #000;
  /* Cambia el color al pasar el cursor por encima */
}


.link:hover {
  border-bottom-color: #df3a15;
}



a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a,
a:hover {
  text-decoration: none !important;
}

.content {
  height: 70vh;
}

.color-background-blue {
  background-color: #374BA5;
  color: white !important;
}

.footer-20192 {
  position: relative;
  color: #fff;
  padding: 2rem 0;
  background-color: #141d2a;
}

.footer-20192 .container {
  position: relative;
}

.footer-20192 h3 {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.5;
}

.footer-20192 .links li {
  margin-bottom: 10px;
  line-height: 1.5;
  display: block;
}
.icon-social{
  margin-right: 20px;
}

.footer-20192 .links li a {
  color: #666873;
}

.footer-20192 .links li a:hover {
  color: #fff;
}

.footer-20192 .social li {
  display: inline-block;
  position: relative;
}

.footer-20192 .social li a {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #636b6f !important;
}

.footer-20192 .social li a>span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.footer-20192 .footer-logo {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .1rem;
}

.footer-20192 .copyright {
  color: #666873;
}

.footer-20192 .cta {
  -webkit-box-shadow: -20px -20px 0 0 rgba(52, 58, 64, 0.2);
  box-shadow: -20px -20px 0 0 rgba(52, 58, 64, 0.2);
  background-color: #546ecf;
  border-radius: 9px;
  position: relative;
}

.footer-20192 .cta h2,
.footer-20192 .cta h3 {
  line-height: 1.5;
}

.footer-20192 .cta h3 {
  font-size: 20px;
}


#container input {}

::placeholder {
  color: #999;
}

#container input:focus {
  background: rgba(0, 0, 333, 0.10);
}

#container button {
  background-image: linear-gradient(to left, rgba(146, 181, 255, 0.75) 0%, rgba(84, 134, 203, 0.86) 100%);
  box-shadow: 0 9px 25px -5px #91a8fb;
  font-family: 'Abel', sans-serif;
  padding: 0.5em 1.9em;
  margin: 2.3em 0 0 0;
  border-radius: 7px;
  font-size: 1.4em;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 1em;
  outline: none;
  border: none;
  transition: 0.3s linear;

}

#container button:hover {
  transform: translatey(2px);
}

#container button:active {
  transform: translatey(5px);
}

.container-iframe {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;

}



.card2 {
  display: flex;
  border-radius: 30px !important;
}

.image-container {
  flex-basis: 40%;
  background-position: center center;
  background-size: cover;
  --opacidad-negro: 0.5;
  border-top-left-radius: 30px 30px;
  border-bottom-left-radius: 30px 30px;
  background-image: linear-gradient(rgba(0, 0, 0, var(--opacidad-negro)), rgba(0, 0, 0, var(--opacidad-negro))), url("../images/formulario.jpg");
}

.image-container img {
  width: 100%;
  height: auto;
}

.form-container {
  flex-basis: 60%;
  background-color: #ffffff;
  border-top-right-radius: 30px 30px;
  border-bottom-right-radius: 30px 30px;
  padding: 30px;
}

.input-container {
  position: relative;
  margin-bottom: 25px;
}

.input-container label {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 16px;
  color: #353535;
  pointer-event: none;
  transition: all 0.5s ease-in-out;
}

.input-container input {
  border: 0;
  border-bottom: 1px solid #555;
  background: transparent;
  width: 100%;
  padding: 8px 0 5px 0;
  font-size: 16px;
  color: #546ecf;
}

.input-container input:focus {
  border: none;
  outline: none;
  border-bottom: 1px solid #546ecf;
}

.input-container input:focus~label,
.input-container input:valid~label {
  top: -12px;
  font-size: 12px;

}

.our-team {
  text-align: center;
}

.our-team .pic {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.our-team .pic:before,
.our-team .pic:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 13px solid #e6e5e5;
  position: absolute;
  top: 0;
  left: 0;
}

.our-team .pic:after {
  border-color: #374BA5 #e6e5e5 #e6e5e5 #374BA5;
  z-index: 1;
  transform: rotate(-10deg);
  transition: all 0.5s ease 0s;
}

.our-team:hover .pic:after {
  transform: rotate(20deg);
}

.our-team img {
  width: 100%;
  height: auto;
}

.our-team .title {
  font-size: 26px;
  font-weight: bold;
  color: #222;
  padding-bottom: 10px;
  margin: 15px 0 10px 0;
  position: relative;
}

.our-team .title:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #222;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.our-team .post {
  display: block;
  font-size: 16px;
  font-style: italic;
  color: #777;
}

.our-team .icon {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.our-team .icon li {
  display: inline-block;
}

.our-team .icon li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #e0e0e0;
  font-size: 14px;
  color: #999;
  margin-right: 5px;
  transition: all 0.3s ease-out 0s;
}

.our-team .icon li a:hover {
  background: #374BA5;
  color: #fff;
}

@media only screen and (max-width: 990px) {
  .our-team {
    margin-bottom: 30px;
  }
}

.row .col-sm-4 iframe {
  max-width: 300px;
  min-height: 100%;
}

.fb-post span iframe {
  background-color: #FFFFFF;
  border: 0;
  border-radius: 3px;
  min-width: auto !important;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}

#instagram-embed-0 {
  width: 100% ;
  display: initial !important;
  padding-left: 10%;
  padding-right: 10%;
}
/*
.padding-instagram {
  padding-left: 12% !important;
  padding-right: 12% !important;
}*/


footer {
  margin-top: 60px;
  padding: 50px 0px;
  background-color: #2C3C94;
}

footer .left-text-content p {
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
  text-align: right;
}

footer .right-text-content p {
  color: #fff;
  font-size: 14px;
  margin-right: 15px;
  text-transform: uppercase;
}


footer .right-text-content {
  text-align: left;
  margin-top: 10px;
}

footer .logo {
  text-align: center;
}

footer .right-text-content ul li {
  display: inline-block;
  margin-left: 15px;
}
footer .right-text-content ul li:first-child {
  margin-left: 0px;
}


footer .right-text-content ul li a {
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 44px;
  font-size: 20px;
  background-color: #fff;
  border-radius: 50%;
  color: #374BA5;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

footer .right-text-content ul li a:hover {
  color: #2a2a2a;
}

.card {
  max-width: 300px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  max-width: 500px;
  height: auto;
  padding: 35px;

  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(15px);
}

.card-footer {
  background-color: white !important;
  border: none !important;
}

.btn-dark-blue {
  background: #E52224;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #E52224, #e522254e);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #E52224, #e522254e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff !important;
  border: 3px solid #eee;
}
.btn-dark-blue:hover{
  transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-rounded {
  border-radius: 35px !important;
}

@media (min-width: 992px) {
  .container.about {
      max-width: 100% !important;
  }

  .about-text  {
      padding-right: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .about-text  {
      padding-right: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .about-text  {
      padding-right: calc(((100% - 1320px) / 2) + .75rem);
  }
}

.imagenes-pagina{
  padding: 0px !important;
}
hr.style14 { 
  border: 0; 
  height: 2px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #E52224, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #E52224, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #E52224, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #E52224, #f0f0f0); 
}
.color-background-gray{
  background-color: #ffffff;
}
.fondo-quienes-somos{
  background-color: white;
}
.fondo-mutualidad-class{
  position: relative;
  margin-top: 90px;
}
.gym-class {
  position: relative;
  margin-top: 90px;
}
.fondo-mutualidad-class .gym-class-box{
  min-height: 300px;
}

.gym-class .gym-class-box {
  min-height: 300px;
}
.img-afiliese{
 max-width: 50% !important;

}
.decoracion-afiliese{
  background-color: #E52224 !important;
}
.vertical-align {
  display: flex;
  align-items: center; /* Centrar verticalmente */
  height: 100%; /* Ocupar el alto del contenedor */
}
.centered-div {
  text-align: center;
  padding: 20px;
  color: white !important;
  width: 100%;
}
.div-img {
  display: flex;
  justify-content: left;
  align-items: center;
}

@media (min-width: 992px) {
  .gym-class {
      margin-top: -30px;
      z-index: 1;
  }
  .fondo-mutualidad-class{
    margin-top: -400px;
      z-index: 1;
  }
}

.gym-class i {
  position: absolute;
  font-size: 200px;
  line-height: 200px;
  bottom: 0;
  opacity: .1;
}

.gym-class .gym-class-box.text-right i {
  left: 0;
}

.gym-class .gym-class-box.text-left i {
  right: 0;
}

.card-color-quienes{
background-color:#2C3C94
}
.card-afiliese{
  background-color:#E52224;
  border-radius: 20px;
}
.card-color-quienes2{
  background-color:white;
  }

.card-unebanco{
  border-bottom: 4px solid #C00 !important;
  border-radius: 0px !important;
  padding:10px !important;
  min-height: 430px !important;

}

.texto-card-unebanco{
  font-size: 12px;
  color: #222;
}

.fixed-height {
  max-height: 650px;
}
.carousel-caption {
  position: absolute; 
  right: 15%;
  top: 50px; /* Cambiar bottom por top y los píxeles que necesites */
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #2C3C94 !important;
  text-align: center;
  /* Añadir para conseguir el fondo con opacidad */
}
.text-blue{
  color: #2C3C94 !important;
  font-weight: 900;
}
.carousel-indicators li{
  background-color: #2C3C94 !important;
}
.fondo-blanco{
  background-color: #ffffff80;
  border-radius: 10px;
  padding: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

/* Estilo para las columnas */
.col {
  flex: 1;
  min-width: 200px; /* Tamaño mínimo inicial para las columnas */
  padding: 20px;
  margin: 20px;
  display: flex;
  align-items: center;
  text-align:justify;
  font-size: 19px;
}

/* Consulta de medios para pantallas de tamaño tablet o menor */
@media screen and (max-width: 979px) {
  .col {
    flex: 100% !important; /* Ocupa todo el ancho disponible */
    margin-bottom: 10px !important; /* Agrega un espacio entre las columnas */
  }
}
.card-wrap{
  width: auto;
  background: #fff;
  border-radius: 10px;
  border: 5px solid #fff;
  min-height: 450px !important;
  overflow: hidden;
  color: var(--color-text);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
              rgba(0, 0, 0, 0.23) 0px 6px 6px;
  cursor: pointer;
  transition: all .2s ease-in-out;
  border-bottom: 2px solid #E52224;
}
.card-wrap:hover{
  transform: scale(1.1);
}
.card-header{
  height: 150px;
  width: 100%;
  background: red;
  border-radius:100% 0% 100% 0% / 0% 50% 50% 100%;
  display: grid;
  place-items: center;

}

.card-header i{
  color: #fff;
  font-size: 72px;
}
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
.card-title{
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 20px;
  
}
.card-text{
  text-align: justify;
  font-size: 15px;
  margin-bottom: 20px;
}
.card-btn{
  border: none;
  border-radius: 100px;
  padding: 5px 30px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.card-header.one{
  background: linear-gradient(to bottom left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}
.card-header.two{
  background: linear-gradient(to bottom left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}
.card-header.three{
  background: linear-gradient(to bottom left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}
.card-header.four{
  background: linear-gradient(to bottom left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

.card-btn.one{
  background: linear-gradient(to left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}
.card-btn.two{
  background: linear-gradient(to left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}
.card-btn.three{
  background: linear-gradient(to left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}
.card-btn.four{
  background: linear-gradient(to left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

.expand-button {
  color: #2C3C94;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.expanded-content {
  display: none;
  margin-top: 10px;
}
.expand-button2 {
  color: #2C3C94;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.expanded-content2 {
  display: none;
  margin-top: 10px;
}
.collapse-button {
  color: #2C3C94;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
.collapse-button2 {
  color: #2C3C94;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}



.izquierda{
  display: flex;
  align-items:start;
  justify-content:right;
}
.screen {		
	background: linear-gradient(90deg, #E52224, #e52225de);		
	position: relative;	
	height: 400px;
	width: 360px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
	box-shadow: 1px 0px 2px #2C3C94;
}
.screen2 {		
	background: linear-gradient(90deg, #ffffff, #ffffff);		
	position: relative;	
	height: 400px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
	width: 360px;
  
	box-shadow: 1px 0px 2px #2C3C94;
}

.screen__content {
	z-index: 1;
	position: relative;	
	height: 100%;
}

.screen__background {		
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);	
}

.screen__background__shape {
	transform: rotate(45deg);
	position: absolute;
}

.screen__background__shape1 {
	height: 520px;
	width: 520px;
	background: #FFF;	
	top: -50px;
	right: 120px;	
	border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
	height: 220px;
	width: 220px;
	background: #E52224;	
	top: -172px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, #E52224, #e522259e);
	top: -24px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape4 {
	height: 400px;
	width: 200px;
	background: #E52224;	
	top: 420px;
	right: 50px;	
	border-radius: 60px;
}

.login {
	padding: 30px;
	padding-top: 70px;
}

.login__submit {
  background-color: white !important;
	font-size: 14px;
	margin-top: 30px;
	padding: 16px 20px;
	border-radius: 26px;
	border: 3px solid #E52224 !important;
	text-transform: uppercase;
	font-weight: 900 !important;
	display: flex;
	align-items: center;
	width: 100%;
	color: #E52224 !important;
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
  background-color: #E52224 !important;
    color: white !important;
    border: 2px solid white !important;
	outline: none;
}

.img-fondo-formulario{
  
  position: relative;
}
.form-select{
  background-color: white !important;
}
.img-fondo-formulario::after {
  background-image: url("../images/logoblanco.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity:0.7;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

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

.principal-header{
  background-color: #ffffffe6 !important;
  margin-top: 0px;
}





 

.ghost {
	border-radius: 20px !important;
	border: 1px solid #FF4B2B;
	background-color: #FF4B2B !important;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

button:active {
	transform: scale(0.95);
}

button:focus {
	outline: none;
}

button.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

input {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
}

.container2 {
	background-color: #fff;
	border-radius: 10px;
  	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 
			0 10px 10px rgba(0,0,0,0.22);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 100%
}

.container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}
	
	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.container.right-panel-active .overlay-container{
	transform: translateX(-100%);
}

.overlay {
	background: #FF416C;
	background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
	background: linear-gradient(to right, #FF4B2B, #FF416C);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
  	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
  	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.container.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.social-container {
	margin: 20px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

.input-group-text{
  background-color: transparent !important;
}

.card-admin{
  max-width: 1200px !important;
}


.text {
  flex: 1; /* Para que el texto ocupe el 90% del ancho disponible */
  padding: 10px;
  color: white; /* Color del texto */
}

.icon-container {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 35px;
  padding-right: 35px;
  background-color: #2c3c944b;
  color: #2C3C94; /* Color del icono */
  border-radius: 5px;
  font-size: 30px;
  display: flex;
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
}
.button-left{
  text-align-last:right;
}

.menu {
  background-color: #ffffff;
  color: #323232;
  width: 200px;
  height: 78vh;
  position:static;
  left: 0;
  top: 0;
  overflow-y: auto;
  border-radius: 5px;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  padding: 15px;
}

.menu a {
  text-decoration: none;
  color: #444444;
  display: flex;
  align-items: center;
}
.menu ul li a:hover{
  color: #E52224;
}
.menu i {
  margin-right: 10px;
}

/* Estilos adicionales para hacer el menú responsive */
@media screen and (max-width: 768px) {
  .menu {
      width: 100%;
      height: auto;
      position: relative;
  }

  .menu ul {
      display: flex;
      flex-direction: column;
  }

  .menu li {
      border-bottom: none;
  }
}
.menu li.active {
  background-color: #d2d2d2; /* Cambia el color al que desees */
  margin: 5px;
  border-radius: 5px;
  color: #fff; /* Cambia el color del texto al que desees */
}


.circle-container {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid #fff; /* Añade un borde blanco para que la foto se destaque */
}

.profile-picture {
  object-fit: cover;
  border-radius: 50%;
}
.input-file{
  background-color: transparent !important;
}

.carnet-fondo{
  background: linear-gradient(
    to right,
    #2C3C94 0%,
    #2C3C94 20%,
    #ffffff 20%,
    #ffffff 100%
  );

}
.color-transparent{
  background-color: rgba(255, 255, 255, 0.655);
  border-radius: 10px;
  padding-top: 5px;
}

.miniatura {
  cursor: pointer;
}

/* Estilos para la imagen en grande */
#imagenGrande {
  max-width: 100%;
  max-height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(184, 184, 184, 0.9); /* Fondo oscuro semitransparente */
  z-index: 1000; /* Asegura que la imagen en grande esté en la parte superior */
}

#imagenGrande img {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-overlay .overlay-buttons {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Estilo para mostrar los botones al pasar el ratón sobre la imagen */
.image-overlay:hover .overlay-buttons {
  display: block;
}
.card {
  
  height: 300px; /* Ajusta la altura según tus necesidades */
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
  float: left; /* Para que las tarjetas se alineen horizontalmente */
}

/* Puedes personalizar más estilos según tus preferencias */
.card img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Para ajustar la imagen dentro de la tarjeta */
}

.card h3, .card p {
  margin: 10px;
}
.picture-logo{
  border-radius: 10px;
}


.contenedor-img {
  display: flex;
  align-items: center;
}

/* Estilos para la imagen */
.imagen {
  max-width: 100%;
  height: auto;
  margin-right: 20px; /* Espacio entre la imagen y el texto */
}

/* Estilos para el texto */
.texto {
  flex: 1; /* Ocupa todo el espacio disponible en el contenedor */
}
.boton-redondo {
  background-color: #2C3C94;
  color: #fff;
  border: none;
  border-radius: 50%; /* Hace que el botón tenga forma de círculo */
  font-size: 15px;
  width: 30px;
  height: 30px;
  margin: 0 5px; /* Espacio entre los botones */
  cursor: pointer;
  transition: background-color 0.3s;
}



.card3 {
  position: relative;
  width: 100%; /* Ancho de la tarjeta */
  height: 300px; /* Altura de la tarjeta */
  overflow: hidden;
  border-radius: 10px; /* Borde redondeado para la tarjeta */
}

.card3 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajustar la imagen al tamaño de la tarjeta sin perder la proporción */
}

.card3 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff; /* Color del texto */
  font-size: 20px; /* Tamaño del texto */
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente para resaltar el texto */
}
.card5 {
  margin: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.card-header5 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.tag {
  background: #cccccc;
  border-radius: 50px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  padding: 2px 10px;
  text-transform: uppercase;
  cursor: pointer;
}
.tag-teal {
  background-color: #47bcd4;
}
.tag-purple {
  background-color: #5e76bf;
}
.tag-pink {
  background-color: #cd5b9f;
}

.card-body5 p {
  font-size: 13px;
}
.user {
  display: flex;
  margin-top: auto;
}

.user img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.user-info h5 {
  margin: 0;
}
.user-info small {
  color: #545d7a;
}
.rating {
  color: #FFD700; /* Color dorado para las estrellas */
}

.card7 {
  max-width: 400px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card7-header {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.card7-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card7-header .avatar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.card7-header .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card7-body {
  padding: 20px;
}

.card7-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #f0f0f0;
}

.card7-footer .date {
  display: flex;
  align-items: center;
  color: #636363;
}

.card7-footer .date img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}