:root {
    --blanco: #ffffff ;
    --azulbase:    #224A6A   ;
    --azulclaro:  #4A9CD7 ;
    --azulmedio:   #265CB1   ;
  }


  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: 0.5%;
    top: 45%;
    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,  #4A9CD7 1%,  #224A6A 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 h2 {
    margin: 0;
    color: #ffffff ;
    font-size: 38px;
    font-weight: bold;
    line-height: 40px;
    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: 5%;
}
.doctorweb .doc2 {
  display: inline-block;
  width: 25%;
}

.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);
  }
}


  .margen-title{
    margin: 0 20px;
  }

  .bg-blue{
    background-color:  #4A9CD7 ;
  }
  .text-blue{
    color:  #4A9CD7 ;
  }

  .logotipo{
    width: 40%;
  }

  @media only screen and (min-width: 376px) and (max-width: 767px) {
    .logotipo{
      width: 40%;
    } 
    .logo {
      max-width: 200px;
    }
    .cta-two h2{
      font-size: 25px;
    }
    .h1{
      font-size: 25px;
    }
    .h2{
      font-size: 18px;
    }
  }

  .bg-white-2 {
    background-color: #fff !important;
    background-image: url(../img/slider/shape-2.png);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }
  .bg-white-3 {
    background-color: transparent;
    background-image: url(../img/slider/shape-3.png);
    background-repeat: none;
    background-size: cover;
    background-position: center;
  }

  .h1{
    font-size: 40px;
    text-align: center;
  }
  .h2{
    font-size: 30px;
    text-align: center;
  }

  .radius{
    border-radius: 30px;
  }
  .btn-radius{
    border-radius: 30px;
    margin: 20px;
    width: 90%;
  }
  .color-black{
    color: #224A6A;
  }