@import url("./assets/css/icons-bootstrap.css");

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: rgba(11, 105, 156, 0.678);
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  -webkit-appearance: none;
}

html::-webkit-scrollbar:vertical {
  width:10px;
  background-color: #000;
}

html::-webkit-scrollbar-button:increment,.contenedor::-webkit-scrollbar-button {
  display: none;
} 

html::-webkit-scrollbar:horizontal {
  height: 10px;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 20px;
  border: 2px solid var(--bs-cuarto);
}

html::-webkit-scrollbar-track {
  border-radius: 10px;  
}

body {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  color: var(--color-default);
  font-size: 16px;
  overflow-x: hidden;
}

textarea {
  font-family: "Open Sans", sans-serif;
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
}

button {
  border: none;
}

a,
button {
  cursor: pointer;
}

p {
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Navbar */
.navbar-background {
    border-top: 2px solid #2dacf5;
    border-bottom: 2px solid #2dacf5;
    background-color:#003856CC;
  }
  
  .navbar-expand-md .navbar-nav .nav-link {
    padding: 20px 24px;
  }
  
  .navbar-light .navbar-nav .nav-link {
    color: #ffffff;
  }
  
  .nav-link, .navbar-nav .nav-link.active:hover {
    color: var(--bs-segundo);
    border-radius: 50px;
  }
  
  .navbar {
    padding: 3px 0;
    text-align: inherit;
    font-size: 18px;
    margin: 0px 0px;
  }
  @media (min-width: 900px) {
    .text-wrap {
      white-space: pre-line !important;
    }
    
  }
  .navbar-light .navbar-toggler {
    background-color: rgb(255, 255, 255);
  }

  @media (max-width: 900px) {
    .navbar-toggler {
      margin-left: auto;
      margin-right: 0;
    }
  }

  /* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  font-weight: bold;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

 /* FIN estilo Navbar */



 
 .contenedor {
    margin: 2rem auto;
    border: 1px solid #aaa;
    height: 300px;
    width:90%;
    max-width: 400px;
    background: #f1f2f3;
    overflow:auto;
    box-sizing: border-box;
    padding:0 1rem;
}
.btn-segundo:hover {
  font-weight: bold !important;
  border: 3px solid var(--bs-primero) !important;
}
.w3schools {
  border:0;
  width:88px;
  height:31px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn-flotante {
  position: fixed;
  display:flex;
  left:20px;
  color: #fff;
  justify-content: center;
  text-align: center;
  width:60px;
  height:60px;
  z-index:999;
  font-size: 30px;
  text-decoration: none;
}

.btn-llamada {
  bottom: 3em;
}
.btn-llamada a {
  width: 60px;
  height: 60px;
  background-color: #2878a7b7;
  border-radius: 100%;
}
.btn-whatsapp {
  bottom: 20px;
}
.btn-whatsapp a {
  width: 60px;
  height: 60px;
  background-color: #128C7E;
  border-radius: 100%;
}
.bi {
  font-size: 1.2em;
}
.section-bg .bi{
  font-size: 2.2em;
}

  /*--------------------------------------------------------------
  # Scroll top button
  --------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .scroll-top:hover {
    background: #065ee2;
    border: 4px solid #06c8e2;
    color: #fff;
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }

  /*--------------------------------------------------------------
  # Sections & Section Header
  --------------------------------------------------------------*/
  .spacing {
    overflow: hidden;
    padding: 40px 0 80px;
  }
  .spacing-2 {
    overflow: hidden;
    padding: 100px 0 100px;
  }
  
  .section-bg {
    background-color: #eee;
  }
  
  .section-header {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #7f7f90;
    text-transform: uppercase;
    font-family: var(--font-default);
  }
  
  .section-header p {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-primary);
  }
  
  .section-header p span {
    color: var(--color-primary);
  }

  /*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}

.doctors .member .member-img {
  position: relative;
  overflow: hidden;
  padding: 30px;
  height: 25rem;
  width: 25rem;
}

.doctors .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a {
  transition: color 0.3s;
  color: var(--bs-quinto);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a i {
  line-height: 0;
}

.doctors .member .social a:hover {
  color: var(--bs-cuarto);
}

.doctors .member .social i {
  font-size: 28px;
  margin: 0 2px;
}

.doctors .member .member-info {
  padding: 25px 15px;
}

.doctors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 22px;
  color: #555555;
}

.doctors .member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #aaaaaa;
}

.doctors .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.doctors .member:hover .social {
  opacity: 1;
}
  
