@charset "UTF-8";
/** CSS VARIABLES PREFIX */
/** FONT FAMILIES */
/** FONT SIZES */
/** FONT WEIGHTS */
/** LINE HEIGHTS */
/** COLORS */
/** SHADOWS */
/** THEME GLOBAL VARIABLES */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

body {
  background-color: #1E1E1E;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

html, body {
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-top-highlight-color: transparent;
  color: var(--turnero-body-text-color, #FFFFFF);
  font-size: var(--turnero-font-size-base, 1rem);
  line-height: var(--turnero-line-height-base, 1.5);
  font-weight: var(--turnero-font-weight-base, 400);
  background-color: var(--turnero-body-bg-color, #1E1E1E);
  font-family: var(--turnero-font-primary, Inter var, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
}

img {
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--turnero-heading-tex-color, #FFFFFF);
  font-weight: 500;
  line-height: 1.25;
  font-family: var(--turnero-font-secondary, Inter var, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

h1 {
  margin: 32px;
}

h2 {
  margin: 28px;
}

h3 {
  margin: 24px;
}

h4 {
  margin: 20px;
}

h5 {
  margin: 16px;
}

h6 {
  margin: 12px;
}

/** CSS VARIABLES PREFIX */
/** FONT FAMILIES */
/** FONT SIZES */
/** FONT WEIGHTS */
/** LINE HEIGHTS */
/** COLORS */
/** SHADOWS */
/** THEME GLOBAL VARIABLES */
.navbar {
  background-color: #1E1E1E;
}
.navbar-brand-logo {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
}
.navbar-brand-logo img {
  object-fit: contain;
  border-radius: 50%;
}
.navbar-iconos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.navbar-iconos a {
  color: #FFFFFF;
  margin: 0 0.5rem;
}
.navbar .active {
  color: #69b4ff !important;
}

.link {
  color: var(--turnero-color-primary, #0085ff);
  padding: 2px 4px;
  display: inline-block;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: none;
}
.link:hover {
  opacity: 1;
}
.link:hover::after {
  transform: scale3d(1, 1, 1);
}
.link:after {
  width: 100%;
  height: 2px;
  content: "";
  display: block;
  transform: scale3d(0, 0, 1);
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: left;
  background-color: var(--turnero-color-primary, #0085ff);
}

/** BUTTON RELATED VARIABLES */
.button {
  border: 2px solid transparent;
  cursor: pointer;
  padding: 12px 32px;
  display: inline-flex;
  outline: 0;
  font-size: 1rem;
  text-align: center;
  transition: all 0.2s ease;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
  color: var(--turnero-button-color);
  border-color: var(--turnero-button-border-color);
  border-radius: var(--turnero-button-radius, 0.5rem);
  background-color: var(--turnero-button-bg);
}
.button:hover {
  color: var(--turnero-button-color-hover);
  background-color: var(--turnero-button-hover-bg);
  border-color: var(--turnero-button-hover-border);
}
.button:focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--turnero-color-focus, #454545);
}
.button:active {
  transform: scale3d(0.95, 0.95, 1);
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.button.button-primary {
  --turnero-button-bg: #0085ff;
  --turnero-button-color: #e0ffff;
  --turnero-button-hover-bg: #69b4ff;
  --turnero-button-color-hover: #e0ffff;
}
.button.button-primary.button-outline {
  --turnero-button-bg: transparent;
  --turnero-button-color: #0085ff;
  --turnero-button-hover-bg: #69b4ff;
  --turnero-button-color-hover: #e0ffff;
}
.button.button-primary.button-plain {
  --turnero-button-bg: #0085ff;
  --turnero-button-border-color: #e0ffff;
  --turnero-button-color: #e0ffff;
  --turnero-button-color-hover: #e0ffff;
  --turnero-button-hover-bg: #69b4ff;
}
.button.button-secondary {
  --turnero-button-bg: #2d2d2d;
  --turnero-button-color: #FFFFFF;
  --turnero-button-hover-bg: #1E1E1E;
  --turnero-button-color-hover: #FFFFFF;
}
.button.button-secondary.button-outline {
  --turnero-button-bg: transparent;
  --turnero-button-color: #2d2d2d;
  --turnero-button-hover-bg: #1E1E1E;
  --turnero-button-color-hover: #FFFFFF;
}
.button.button-secondary.button-plain {
  --turnero-button-bg: #2d2d2d;
  --turnero-button-border-color: #FFFFFF;
  --turnero-button-color: #FFFFFF;
  --turnero-button-color-hover: #FFFFFF;
  --turnero-button-hover-bg: #1E1E1E;
}
.button.button-small {
  padding: 8px 24px;
  font-size: 0.875rem;
}
.button.button-large {
  padding: 16px 48px;
  font-size: 1.125rem;
}
.button.button-block {
  display: block;
  width: 100%;
}

/** CSS VARIABLES PREFIX */
/** FONT FAMILIES */
/** FONT SIZES */
/** FONT WEIGHTS */
/** LINE HEIGHTS */
/** COLORS */
/** SHADOWS */
/** THEME GLOBAL VARIABLES */
.base-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  position: fixed;
  box-shadow: 0 0 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.2);
}

.base-footer {
  background-color: #1E1E1E;
  padding: 50px 0;
}
.base-footer-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}
.base-footer-link-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.base-footer-link h4 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0 0 25px 0;
  font-weight: 500;
  border-bottom: 2px solid #69b4ff;
  padding-bottom: 10px;
}
.base-footer-link ul {
  list-style: none;
  margin: 0;
  padding-left: 5px;
}
.base-footer-link ul li a {
  display: block;
  font-size: 1rem;
  color: #9e9e9e;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.base-footer-link ul li a:hover {
  color: #FFFFFF;
  padding-left: 6px;
}
.base-footer-link-social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.base-footer-link-social a {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 45px;
  width: 45px;
  background-color: #454545;
  text-align: center;
  margin: 0 10px;
  line-height: 40px;
  border-radius: 50%;
  color: #FFFFFF;
  transition: all 0.5s ease;
}
.base-footer-link-social a:first-child:hover {
  background-color: #0085ff;
  color: #e0ffff;
}
.base-footer-link-social a:nth-child(2):hover {
  background-color: #198754;
  color: #e0ffff;
}
.base-footer-link-social a:nth-child(3):hover {
  background: #D43089;
  color: #e0ffff;
}

/* Media Queries*/
/*// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap*/
/*// Small devices (landscape phones, 576px and up)*/
/*// Medium devices (tablets, 768px and up)*/
/*// Large devices (desktops, 992px and up)*/
/*// X-Large devices (large desktops, 1200px and up)*/
/*// XX-Large devices (larger desktops, 1400px and up)*/
/* Titulo y background de Main */
.bg-home {
  min-height: 100vh;
  max-height: 100%;
  width: 100%;
  background: linear-gradient(30deg, rgba(20, 20, 20, 0.5), rgb(0, 0, 0)), url(../assets/home/mobile.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

main h1 {
  font-size: 3rem;
  text-align: center;
  font-family: "Archivo Black", sans-serif;
}

.parrafo {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 300;
  color: #FFFFFF;
  margin: 0;
  padding-bottom: 30px;
}

/* Circulo flotante de turnos en linea */
@keyframes fadeIn {
  50% {
    transform: scale(1.04);
  }
}
.circle-anillo {
  position: absolute;
  bottom: 5px;
  right: 10px;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background-color: rgba(69, 69, 69, 0.5);
  display: grid;
  place-items: center;
  justify-items: center;
  animation: fadeIn 2s infinite;
}
.circle-anillo-second {
  animation: fadeIn 2s infinite;
  height: 78px;
  width: 78px;
  border-radius: 50%;
  background-color: rgba(105, 180, 255, 0.4);
  display: grid;
  place-items: center;
  justify-items: center;
}
.circle-anillo-content {
  animation: fadeIn 2s infinite;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #0085ff;
  margin: 0;
}
.circle-anillo-content p {
  font-size: 0.75rem;
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

/* Media Queries */
@media (min-width: 576px) {
  main h1 {
    font-size: 4rem;
  }
  .bg-home {
    background: linear-gradient(30deg, rgba(20, 20, 20, 0.5), rgb(0, 0, 0)), url(../assets/home/tablet.jpg);
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .bg-home {
    background: linear-gradient(30deg, rgba(20, 20, 20, 0.5), rgb(0, 0, 0)), url(../assets/home/desktop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
  }
  .navbar-brand {
    font-size: 1.7rem;
  }
}
/* Estilos para la sección de servicios */
.bg-servicios {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  max-height: 100%;
  background-color: #69b4ff;
  /* Estilos para el título */
}
.bg-servicios .h1-servicios {
  padding-top: 95px;
  color: #2d2d2d;
  font-size: 3rem;
}
.bg-servicios-container-items {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

/* Estilos para las tarjetas de servicios */
.card-servicios {
  border: 1px solid #1E1E1E;
  background-color: #e0ffff;
  height: 100%;
  font-size: 0.875rem;
  /* Estilos para el título de la tarjeta */
}
.card-servicios .bg-title {
  background-color: #454545;
  color: #FFFFFF;
  border-bottom: 2px solid #1E1E1E;
}
.card-servicios .bg-title p {
  font-weight: 700;
  color: #69b4ff;
}

/* Estilos para las imágenes del carrusel */
.carousel-item img {
  width: 100%;
  max-height: 350px;
}

/* Estilos para botones absolutos */
.boton-absolute {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0 10px 10px 0;
}

/* Estilos para cajas */
.caja {
  position: relative;
}
.caja p {
  font-weight: 400;
  color: #454545;
}

/* Media Queries */
@media (min-width: 576px) {
  /* Ajustes para dispositivos pequeños */
  .bg-servicios .h1-servicios {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  /* Ajustes para tabletas */
  .card-servicios {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  /* Ajustes para pantallas de escritorio */
  .card-servicios {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  /* No se requieren estilos adicionales para este tamaño */
}
@media (min-width: 1400px) {
  /* No se requieren estilos adicionales para este tamaño */
}
/** CSS VARIABLES PREFIX */
/** FONT FAMILIES */
/** FONT SIZES */
/** FONT WEIGHTS */
/** LINE HEIGHTS */
/** COLORS */
/** SHADOWS */
/** THEME GLOBAL VARIABLES */
.container-card-avatar {
  gap: 2.5%;
  padding: 5%;
  width: 100%;
  justify-content: center;
}

.card-profesional {
  background-color: #e0ffff;
  border-radius: 20px;
  margin: 3rem 0;
  border: 3px solid #454545;
  padding: 3rem 20px 1rem 20px;
  position: relative;
  box-shadow: 2px 2px 15px 2px #454545;
  width: 80%;
}
.card-profesional-info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.card-profesional b {
  color: #454545;
}
.card-profesional p {
  font-weight: 400;
}

.bg-circle-user {
  background-color: #454545;
  border-radius: 50%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100px;
  width: 100px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.bg-circle-user img {
  aspect-ratio: 1/1;
  border: 2px solid #454545;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: 0.3s;
  object-fit: cover;
}
.bg-circle-user img:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease-in-out;
}

/* Media Queries */
@media (min-width: 576px) {
  .card-profesional {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .card-profesional {
    width: 30%;
  }
}
.container-column {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.monthly-title {
  color: #454545;
}

.dates {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
  height: 100px;
  width: 100%;
}

.btn-container-date, .btn-container-date:hover {
  color: #9e9e9e;
  background-color: #e0ffff;
  border: 2px solid #9e9e9e;
  border-radius: 10px;
  transition: 0.4s;
  height: 90%;
  width: 25%;
  padding: 0;
}

.btn.active, .btn.active:hover {
  background-color: #006fff;
  border: 1px solid #454545;
  color: #FFFFFF;
}
.btn.active p, .btn.active:hover p {
  color: #FFFFFF;
  font-weight: 700;
}

.separador {
  display: block;
  width: 90%;
  margin: 1rem 0;
  border-bottom: 1px solid #454545;
  opacity: 0.4;
}

.time {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 2%;
  width: 100%;
}

.btn-time, .btn-time:hover {
  background-color: #69b4ff;
  color: #686868;
  border: 1px solid #454545;
  transition: 0.4s;
}

.container-hours, .container-hours:hover {
  height: 50%;
  width: 40%;
}

.box-responsive {
  width: 90%;
}

.container-info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(93, 159, 226, 0.4);
  border-radius: 20px;
  width: 100%;
  padding: 1rem;
  margin: 1rem 0 1rem 0;
  color: #454545;
  font-weight: 500;
}

.info-finally {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.info-finally p {
  color: #454545;
  font-weight: 500;
}

.container-img {
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.container-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.more-services {
  align-self: flex-start;
  display: flex;
  margin: 0 0 3rem 0rem;
}
.more-services img {
  opacity: 0.8;
  transform: rotate(0deg);
  transition: transform 0.4s ease-in-out;
}
.more-services:hover img {
  opacity: 1;
  transform: rotate(180deg);
}

/* Media Queries */
@media (min-width: 576px) {
  .btn-container-date, .btn-container-date:hover {
    width: 15%;
  }
  .container-hours, .container-hours:hover {
    height: 50%;
    width: 25%;
  }
  .box-responsive {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .btn-primary {
    font-size: 1.2rem;
  }
  .btn-primary:hover {
    font-size: 1.3rem;
  }
  .btn-container-date, .btn-container-date:hover {
    width: 12%;
  }
  .container-hours, .container-hours:hover {
    height: 50%;
    width: 15%;
  }
}
@media (min-width: 992px) {
  .btn-primary {
    font-size: 1.4rem;
  }
  .btn-primary:hover {
    font-size: 1.5rem;
  }
  .btn-container-date, .btn-container-date:hover {
    width: 10%;
  }
  .container-hours, .container-hours:hover {
    height: 50%;
    width: 10%;
  }
  .box-responsive {
    width: 80%;
  }
  .more-services {
    margin-left: 2rem;
  }
}
/* Estilos para el main de Confirmacion de turno*/
.container-modal {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}
.container-modal-box {
  width: 100%;
  background-color: rgb(177, 226, 245);
  border: 2px solid #1E1E1E;
  border-radius: 10px;
  margin-bottom: 3rem;
  padding: 0.5rem;
  font-size: 0.875rem;
}
.container-modal .section-title {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  border-bottom: 2px dashed #1E1E1E;
  margin-bottom: 1rem;
}
.container-modal .section-title p {
  margin: 0;
}
.container-modal .section-title p:first-child {
  color: #454545;
}
.container-modal .section-title p:last-child {
  color: #006fff;
}
.container-modal-info {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.container-modal-info-first {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background-color: #69b4ff;
  border-left: 4px solid #1E1E1E;
  border-top-right-radius: 10px;
  padding: 7px 5px;
}
.container-modal-info-section {
  background-color: #454545;
  border-left: 4px solid #1E1E1E;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: bold;
  padding: 7px 5px;
  color: #FFFFFF;
  width: 100%;
}
.container-modal-info .rounded-none {
  border-bottom-right-radius: 0;
}

.bg-circle {
  background-color: #e0ffff;
  padding: 1px;
  border-radius: 50%;
}

.textarea-comment {
  background-color: whitesmoke;
  border-left: 4px solid #1E1E1E;
  width: 100%;
  height: 150px;
  border-bottom-right-radius: 10px;
  resize: none;
  border-top: 1px solid #1E1E1E;
  padding: 0.5rem;
}

.textarea-comment:focus {
  outline: none;
}

/* Media Queries */
@media (min-width: 576px) {
  .container-modal {
    width: 80%;
  }
  .container-modal-box {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .container-modal {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .container-modal {
    width: 65%;
  }
  .container-modal-box {
    font-size: 1.125rem;
  }
}
.container-elements {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

.container-completed {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border: 2px solid #1E1E1E;
  border-radius: 10px;
  padding: 1rem 0.5rem;
  background-color: rgb(177, 226, 245);
  font-size: 0.875rem;
  font-weight: 400;
  width: 90%;
  margin-bottom: 2rem;
}
.container-completed-title {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.container-completed-title-check {
  background-color: #454545;
  border-radius: 50%;
  padding: 5px;
}
.container-completed-title p {
  color: #454545;
  font-weight: 700;
}
.container-completed-content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  background-color: #454545;
  border-bottom: 1px solid #1E1E1E;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 7px 5px;
  color: #FFFFFF;
  width: 100%;
}
.container-completed-content .circle-logo {
  height: 25px;
  width: 25px;
}
.container-completed-content .circle-logo img {
  object-fit: cover;
  border-radius: 50%;
}
.container-completed-second-content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  background-color: #454545;
  border-top: 1px solid #1E1E1E;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 7px 5px;
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 1rem;
}

/*// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap*/
/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  .container-completed {
    font-size: 1rem;
    width: 70%;
  }
}
/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .container-completed {
    width: 60%;
  }
}
/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .container-completed {
    font-size: 1.125rem;
    width: 50%;
  }
}
/*// X-Large devices (large desktops, 1200px and up)*/
/*// XX-Large devices (larger desktops, 1400px and up)*/
.container-about {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  padding: 1rem;
  gap: 3rem;
}
.container-about-us {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  align-items: center;
  background-color: #454545;
  padding: 1rem;
  border: 2px solid #e0ffff;
  border-radius: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -6px rgba(0, 0, 0, 0.01);
}
.container-about-us-img img {
  border-radius: 1rem;
  max-height: 250px;
  width: 100%;
  object-fit: cover;
}
.container-about-us-title {
  text-align: center;
  color: #FFFFFF;
}
.container-about-us-content {
  color: #FFFFFF;
}
.container-about .all-members {
  color: #454545;
}
.container-about-card-members {
  max-width: 200px;
  margin: 1rem 1%;
  background-color: #e0ffff;
  padding: 0 0 0.5rem 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.01);
}
.container-about-card-members-body {
  padding-top: 15px;
}
.container-about-card-members-body h4 {
  color: #454545;
}
.container-about-card-members-body p {
  color: #9e9e9e;
}
.container-about-card-members .img-container {
  height: 300px;
}
.container-about-card-members .img-container img {
  filter: grayscale(100%);
  transition: 0.5s ease;
  cursor: pointer;
}
.container-about-card-members .img-container img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/*// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap*/
/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  .container-about-us {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .container-about-us-img {
    max-width: 300px;
  }
}
/*// Medium devices (tablets, 768px and up)*/
/*// Large devices (desktops, 992px and up)*/
/*// X-Large devices (large desktops, 1200px and up)*/
/*// XX-Large devices (larger desktops, 1400px and up)*/

/*# sourceMappingURL=main.css.map */
