:root {
    --blanco: #ffffff ;
    --azulbase:  #34373f ;
    --azulclaro: #f2da7d ;
    --azulmedio: #28827D ;
  }


  body::-webkit-scrollbar-track,
  textarea::-webkit-scrollbar-track {
      background-color: var(--azulbase);
  }
  
  body::-webkit-scrollbar,
  textarea::-webkit-scrollbar {
      width: 5px;
  }
  
  body::-webkit-scrollbar-thumb,
  textarea::-webkit-scrollbar-thumb {
      background-color: var(--azulclaro);
  }

.social-bar {
    position: fixed;
    right: 2%;
    top: 42%;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999;   
  }
  .icono {
    color: var(--blanco) !important;
    text-decoration: none;
    height: 50px;
    width: 50px;
    display: flex;
    transition: all 0.5s;
    margin-top: 10%;
    position: relative;
    border-radius: 100px;
    padding: 4%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: var(--azulbase);
    background: radial-gradient(circle, #28827D  1%,  #051A6E 100%);
    transition: all 0.5s ease;
  }
  .icono:hover {
    border: 2px solid var(--azulmedio);
    transition: all 0.5s ease;
    border: 3px solid rgba(255, 255, 255, 0.5);
  }
  .icono:before {
    background-color: var(--azulmedio);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 30px;
    left: 0;
    top: 0;
    z-index: -1;
    transform: scale(0, 0);
    transition: all 0.5s ease;
  }
  .icono:hover:before {
    z-index: 1;
    transform: scale(1.1);
    transition: all 0.5s ease;
  }
  .icono span {
    background: var(--azulmedio);
    padding: 5%;
    padding-left: 20%;
    padding-right: 20%;
    font-size: 0.5em;
    color: var(--dorado);
    position: absolute;
    right: 55px !important;
    top: 10px !important;
    transform: scale(0);
    width: max-content;
    box-shadow: rgba(227, 176, 75, 0.1) 0 20px 25px -5px,
      rgba(227, 176, 75, 0.04) 0 10px 10px -5px;
    border-radius: 5px;
  }
  .icono:hover span {
    transition: all 0.5s ease;
    transform: scale(1);
  }
  .icono i,
  .icono img {
    z-index: 2;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .icono img {
    width: 30px;
  }

  .text-justify{
    text-align: justify;
  }

  /**/
  .cta-two {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    position: relative;
    text-align: center;
  }
  
  .cta-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--azulbase);
    opacity: .5;
  }
  
  .cta-two .container {
    padding-top: 96px;
    position: relative;
    padding-bottom: 98px;
  }
  
  .cta-two h1 {
    margin: 0;
    color: #ffffff ;
    font-size: 50px;
    font-weight: bold;
    line-height: 60px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .cta-two h3{
    color: #ffffff;
    font-size: 30px;
  }
  /*Doctor Web*/

  .doctorweb .doc1 {
    display: inline-block;
    animation: 10s doc infinite ease;
    width: 4%;
  }
  .doctorweb .doc2 {
    display: inline-block;
    width: 15%;
  }

  .copy p{
    color: aliceblue;
    font-size: 16px;
  }

  @keyframes doc {
    0% {
      transform: rotate(0);
    }
    10% {
      transform: rotate(0);
    }
    50% {
      transform: rotate(360deg);
    }
    90% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(0);
    }
  }

  .logotipo{
    width: 90%;
  }

  @media only screen and (min-width: 1400px) and (max-width: 2000px) {
    .logotipo{
      width: 45%;
    } 
  }

  @media only screen and (min-width: 376px) and (max-width: 767px) {
    .logotipo{
      width: 20%;
    } 
  }