/*-----------------------------------------------------------
    Recursos extras.
    1.  Barra lateral
    2.  Bar social
    3.  DoctorWeb Logo
    4.  Sliders Info y Footer
    5.  Complementos
    6.  Responsive
-------------------------------------------------------------*/
@import url("https://fonts.cdnfonts.com/css/limousine");
:root {
    --blanco: #ffffff ;
    --colorbase:#2F00EF;
    --colormedio: #970d7d;
    --colordark: #FF1A0B;
  }

body {
    font-family: 'Limousine', sans-serif;
}
/*-----------------------------------------------------------
    1.  Barra lateral
-------------------------------------------------------------*/
body::-webkit-scrollbar-track,
  textarea::-webkit-scrollbar-track {
      background-color: var(--colorbase);
  }
  
  body::-webkit-scrollbar,
  textarea::-webkit-scrollbar {
      width: 5px;
  }
  
  body::-webkit-scrollbar-thumb,
  textarea::-webkit-scrollbar-thumb {
      background-color: var(--colormedio);
  }
/*-----------------------------------------------------------
    2.  Bar social
-------------------------------------------------------------*/
.social-bar {
    position: fixed;
    right: 0.5%;
    top: 25%;
    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(--colorbase);
    background: radial-gradient(circle, #FF1A0B 1%, #2F00EF 100%);
    transition: all 0.5s ease;
  }
  .icono:hover {
    border: 2px solid var(--colormedio);
    transition: all 0.5s ease;
    border: 3px solid rgba(255, 255, 255, 0.5);
  }
  .icono:before {
    background-color: var(--colorbase);
    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(--colormedio);
    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;
  }


/*-----------------------------------------------------------
    3.  DoctorWeb Logo
-------------------------------------------------------------*/

.doctorweb .doc1 {
    display: inline-block;
    animation: 10s doc infinite ease;
    width: 2%;
  }
  .doctorweb .doc2 {
    display: inline-block;
    width: 10%;
  }
  
  .copy p{
    color: var(--blanco);
    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);
    }
  }

/*-----------------------------------------------------------
    4.  Sliders Info y Footer
-------------------------------------------------------------*/

.hero-text-box {
	padding: 80px;
	background: rgba(248, 246, 243, 0.712);
	padding-right: 66px;
	border-radius: 100%;
	text-align: center;
  letter-spacing: 0.8px;
}
.hero-slider-caption h5 {
	margin-bottom: 25px;
}
.hero-slider-caption h1 {
	font-size: 50px;
	margin-bottom: 20px;
}
.hero-slider-caption p {
	margin-bottom: 35px;
	text-align: center;
}

.news-letter-area {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
  text-align: center;
}

.news-letter-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--negro);
  opacity: .3;
}

.news-letter-area .container {
  position: relative;
}

/* news-letter */
.news-letter-title h4 {
	font-size: 20px;
}
.news-letter-title h3 {
	font-size: 30px;
}
.news-letter-box {
	padding: 60px 75px;
	background: #fff;
  border-radius: 30px;
}

/*banner-img*/

.banner-img-01 {
    background-color: var(--blanco) !important;
    background-image: url(../images/slider/shape-2.png);
    background-repeat: none;
    background-size: cover;
    background-position: center;
    padding-bottom: 30px;
  }

/* Banner footers  */

.banner-footer-1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    position: relative;
    text-align: center;
  }
  
  .banner-footer-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--azulmedio);
    opacity: .3;
  }
  
  .banner-footer-1 .container {
    padding-top: 85px;
    position: relative;
    padding-bottom: 98px;
  }
  
  .banner-footer-1 h2 {
    margin: 0;
    color: #ffffff ;
    font-size: 38px;
    font-weight: bold;
    line-height: 40px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .banner-footer-1 h3{
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 0.5px;
  }


/*-----------------------------------------------------------
    5.  Complementos
-------------------------------------------------------------*/

.radius{
    border-radius: 30px;
  }

.text-justify{
  text-align: justify;
}

.subtitle-new{
  font-weight: 700;
  color: #2F00EF;
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  text-transform:uppercase;
}

  /* Botones circulos */
  .features-list .feature-item {
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 0;
    margin-right: 30px;
    text-align: center;
    background-color: transparent;
  }
  
  .features-list .feature-item:last-of-type {
    margin-right: 0;
  }
  
  .features-list .feature-item .feature__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 90px;
    height: 90px;
    font-size: 40px;
    border-radius: 50%;
    margin-bottom: 10px;
    color: #213360;
    background-color: #ffffff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  
  .features-list .feature-item .feature__title {
    font-size: 15px;
    text-align: center;
  }
  
  .features-list .feature-item:hover .feature__icon {
    -webkit-box-shadow: 0 0 0 9px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 0 9px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }

  .time__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dcdee2;
  }
  
  .time__list li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }


/*-----------------------------------------------------------
    6.  Responsive
-------------------------------------------------------------*/
  @media only screen and (min-width: 300px) and (max-width: 767px) {

    .banner-img-01{
      padding-top: 0;
    }
    .hero-slider-caption h3 {
      font-size: 20px;
    }
    .hero-slider-caption h4 {
      font-size: 18px;
    }
    
    .news-letter-title h4 {
      font-size: 16px;
    }
    .news-letter-title h3 {
      font-size: 20px;
    }
    .news-letter-box {
      padding: 40px;
    }

    .banner-footer-1 h2{
        font-size: 25px;
      }
    .banner-footer-1 h3{
        font-size: 20px;
      }
    

      .features-list .feature-item {
        margin-right: 10px;
      }
      .features-list .feature-item .feature__icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }
      .features-list .feature-item .feature__title {
        font-size: 11px !important;
      }
      .promo-wrap.style2 {
        margin: -50px 0 0;
      }

      .social-bar {
        position: fixed;
        right: 0.5%;
        top: 25%;
        font-size: 1.5rem;  
      }

      .icono {
        height: 40px;
        width: 40px;
      }
      .icono span {
        position: absolute;
        right: 45px !important;
        top: 5px !important;
      }
      .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;
      }
  }