/* Logo Doctorweb */
.doctorweb .doc1{
    width: 2%;
    animation: 10s doc infinite ease;
  }
  .doctorweb .doc2{
    width: 10%;
  }
  @keyframes doc {
    0% {
      transform: rotate(0deg);
    }
    10% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(360deg);
    }
    90% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
    }}
 /* Logo Doctorweb */
 /* Boton whatsapp  */
    .btn-whatsapp {
      display: block;
      width: 75px;
      height: 75px;
      color: #36334c;
      position: fixed;
      right: 1%;
      bottom: 1%;
      border-radius: 50%;
      line-height: 70px;
      text-align: center;
      z-index: 999;
      font-size: 70px !important;
      background: rgba(38,212,102,1);
background: -moz-radial-gradient(center, ellipse cover, rgba(38,212,102,1) 0%, rgba(34,186,89,1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(38,212,102,1)), color-stop(100%, rgba(34,186,89,1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(38,212,102,1) 0%, rgba(34,186,89,1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(38,212,102,1) 0%, rgba(34,186,89,1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(38,212,102,1) 0%, rgba(34,186,89,1) 100%);
background: radial-gradient(ellipse at center, rgba(38,212,102,1) 0%, rgba(34,186,89,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#26d466', endColorstr='#22ba59', GradientType=1 );
      -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
      -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
      box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
      transition: ease .5s;
    }
    .btn-whatsapp i{
      color: #fff !important;
      transition: ease .5s;
      display: block;
      margin-top: 4%;
    }
    .btn-whatsapp:hover{
      background-color: #36334c;
      transform: rotate(360deg);
      transition: ease .5s;
    }
  .btn-whatsapp span{
      font-family: Arial, Helvetica, sans-serif;
      position: absolute;
      font-size: .3em;
      right: 2px;
      background-color: #de2f36;
      color: #fff;
      border-radius: 100px;
      height: 20px;
      width: 20px;
      line-height: 20px;
      transition: .5s ease;
      animation: iconw 2s infinite ease-in-out;
    }
    .btn-whatsapp:hover span{
      display: none !important;
      transition: .5s ease;
    }
    @keyframes iconw {
      0% {
        transform: scale(.8);
      }
      50% {
        transform: scale(1);
      }
      100% {
        transform: scale(.8);
      }}
   /* Boton whatsapp  */
   /* Barra lateral */
   .social-bar {
    position: fixed;
    right: 0;
    top: 60%;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
    }
    .icono {
    color: white;
    text-decoration: none;
    padding: .7rem;
    display: flex;
    transition: all .5s;
    }
    .icono-facebook {
    background:  #1877f2;
    }
    .icono-twitter {
    background: #CAF55F;
    }
    .icono-youtube {
    background:  #CAF55F;
    }
    .icono-instagram {
    background: #6dbf48;
    }
    .icono:first-child {
    border-radius: 1rem 0 0 0;
    }
    .icono:last-child {
    border-radius: 0 0 0 1rem;
    }
    .icono:hover {
    padding-right: 3rem;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
    color: #36334c;
    }
/* Barra lateral */
/* Barras */
::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #125a11 
  }
  ::-webkit-scrollbar-thumb {
    background: #68be47;
    transition: .5s;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #fff;
    transition: .5s;
  }
/* Barras */
.content-slider {
  width: 100%;
  height: 200px;
}

.slider {
  width: 680px;
  padding-top: 10%;
  margin-left: 40%;
  overflow: visible;
  position: relative;
}

.mask {
  overflow: hidden;
  height: 320px;
}

.slider ul {
  margin: 0;
  padding: 0;
  position: relative;
}

.slider li {
  width: 680px;
  height: 320px;
  position: absolute;
  top: -325px;
  list-style: none;
}

.slider .quote {
  font-size: 40px;
  font-style: italic;
}

.slider .source {
  font-size: 20px;
  text-align: right;
}

.slider li.anim1 {
  animation: cycle 15s linear infinite;
}

.slider li.anim2 {
  animation: cycle2 15s linear infinite;
}

.slider li.anim3 {
  animation: cycle3 15s linear infinite;
}

.slider li.anim4 {
  animation: cycle4 15s linear infinite;
}

.slider li.anim5 {
  animation: cycle5 15s linear infinite;
}

.slider:hover li {
  animation-play-state: paused;
}

@keyframes cycle {
  0% {
    top: 0px;
  }
  4% {
    top: 0px;
  }
  16% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  20% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  21% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  50% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  92% {
    top: -325px;
    opacity: 0;
    z-index: 0;
  }
  96% {
    top: -325px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}

@keyframes cycle2 {
  0% {
    top: -325px;
    opacity: 0;
  }
  16% {
    top: -325px;
    opacity: 0;
  }
  20% {
    top: 0px;
    opacity: 1;
  }
  24% {
    top: 0px;
    opacity: 1;
  }
  36% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  40% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  41% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle3 {
  0% {
    top: -325px;
    opacity: 0;
  }
  36% {
    top: -325px;
    opacity: 0;
  }
  40% {
    top: 0px;
    opacity: 1;
  }
  44% {
    top: 0px;
    opacity: 1;
  }
  56% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  60% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  61% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle4 {
  0% {
    top: -325px;
    opacity: 0;
  }
  56% {
    top: -325px;
    opacity: 0;
  }
  60% {
    top: 0px;
    opacity: 1;
  }
  64% {
    top: 0px;
    opacity: 1;
  }
  76% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  80% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
  81% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -325px;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes cycle5 {
  0% {
    top: -325px;
    opacity: 0;
  }
  76% {
    top: -325px;
    opacity: 0;
  }
  80% {
    top: 0px;
    opacity: 1;
  }
  84% {
    top: 0px;
    opacity: 1;
  }
  96% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  100% {
    top: 325px;
    opacity: 0;
    z-index: 0;
  }
}
.mask img{
  width: 10%;
}
.icon i{
  font-size: 3em;
}
.icon i::before{
  color: #6dbf48 !important;
}
section.features .feature-item h4{
  color: #fff;
}
section.features .feature-item p{
  color: #fff;
}
.main-pink-button a{
  background-color: #fff;
  color: #68be47;
}
.is-fixed .main-pink-button a{
  background-color: #68be47;
  color: #fff;
}
#tophead{
  padding: 1% 0%;
  margin-top: 0px;
  background: #a9dd65;
  background: linear-gradient(45deg, #a2d860 0%, #125a11 100%);
  text-align: center;
}
#tophead a{
  color: #fff;
}
#tophead a:hover{
  color: #135b11;
}
section.free-quote {
  margin-top: 0px;
}
section.free-quote .section-heading h3{
  color: #fff;
}
.about-tips i{
 color: #6dbf48 !important;
}
section.free-quote a{
  color: #fff;
}
section.free-quote a:hover{
  color: #135b11;
}
.free-quote{
  text-align: center;
}
section.free-quote .left-image{
  -webkit-box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
-moz-box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
}
.ctaw{
  position: relative;
  max-width: 100%;
  text-align: center;
  padding: 5% 0%;
}
.ctaw a{
  display: inline-block;
  text-align: center;
  color: #ffffff;
  background-color: #3da32d;
  font-size: 14px;
  font-weight: 400;
  padding: 13px 35px;
  border-radius: 25px;
  letter-spacing: 0.15px;
  z-index: 1;
  position: relative;
}
.ctaw a:after{
  position: absolute;
      left: 0;
      top: 0;
      background-color: #36334c;
      width: 100%;
      height: 100%;
      border-radius: 25px;
      content: '';
      display: inline-block;
      -webkit-transition: all .3s;
      transition: all .3s;
      z-index: -1;
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transition: all transform 300ms ease-out 200ms;
      transition: all transform 300ms ease-out 200ms;
}
.ctaw a:hover::after{
  width: 100%;
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-transition: -webkit-transform 300ms ease-out;
      transition: -webkit-transform 300ms ease-out;
      transition: transform 300ms ease-out;
      transition: transform 300ms ease-out, -webkit-transform 300ms ease-out; 
}
.blog-thumb{
  padding: 0% 20%;
}
.inner-header {
  width: 100%;
  margin: 0;
  padding: 0;
 
}
.parallax-banner{
 background-image: url(../images/bg.png);
  
  background-position: center center;
  background-repeat: no-repeat;
  animation: slide 5s infinite alternate-reverse;
}
  @keyframes slide {
    0% {
      background-image: url(../images/slide1.jpg);
      background-size: 100%;
    }
    100% {
      background-image: url(../images/slide2.jpg);
      background-size: 100%;
    }}
    .inner-header .inner-content h1{
      background-color: rgba(109, 191, 72,.9);
    }
  .home1serv .down-content{
    background-color: #fff;
    border-bottom-right-radius: 80px !important;
    border-bottom-left-radius: 40px !important;
  }
  .home1serv img{
    border-top-right-radius: 40px !important;
    border-top-left-radius: 80px !important;
  }
  .home1serv .case-item{
    border-top-right-radius: 40px !important;
    border-top-left-radius: 80px !important;
    border-bottom-right-radius: 80px !important;
    border-bottom-left-radius: 40px !important;
    animation: move-up-down 5s infinite;
    transition: .5s ease;
  }
  .home1serv .case-item:hover{
    box-shadow: 0 0 50px 10px #fff;
    transform: scale(1.05);
    transition: .5s ease;
  }
  .homerser:hover img{
    transform: scale(1) !important;
    transition: .5s ease;
  }
  .text-center{
    text-align: center;
  }
  .deportes .down-content{
    background-color: #fff;
    border-bottom-right-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
  .deportes img{
    border-top-right-radius: 100px !important;
    border-top-left-radius: 100px !important;
  }
  .deportes .case-item{
    border-radius: 100px !important;
    animation: move-up-down2 5s infinite;
    transition: .5s ease;
  }
  .estetica .icon{
    width: 200px !important; 
    height: 100px !important;
    background-color: transparent !important;
  }
  .estetica .tips-content ul li .icon img{
    max-width: 100% !important;
    border-radius: 20px;
  }
  .estetica ul li{
    padding-bottom: 5%;
  }
  .estetica .right-content h4{
    padding-top: 10%;
  }
  .estetica{
    margin-top: 0px !important;
    padding-bottom: 10% !important;
  }
  .good-tips{
    padding: 10% 0% !important;
  }
@media only screen and (min-width: 320px) and (max-width: 767px){
  .mobile-menu > li ul{
    height: 400px;
    overflow-y: scroll;
  }
  .estetica .tips-content ul li{
    text-align: center !important;
  }
  .estetica .tips-content ul li .icon{
    float: none !important;
  }
  @keyframes slide {
    0% {
      background-image: url(../images/slide1r.jpg);
      background-size: cover;
    }
    100% {
      background-image: url(../images/slide2r.jpg);
      background-size: cover;
    }}
  section.about-tips .video-thumb{
    margin-top: 10%;
  }
  section.steps .step-item .item-content {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  .main-white-button a{
    margin-bottom: 5%;
  }
  section.free-quote .section-heading{
    text-align: center;
  }
  section.footer-content .main-footer .footer-heading h4{
    text-align: center;
  }
  .more-info{
    text-align: center;
  }
  #tophead{
    display: none;
  }
  .slider {
    width: 680px;
    padding-top: 0px;
    margin: 40px auto 0;
    overflow: visible;
    position: relative;
}
  .inner-header .inner-content .main-decoration {
    padding: 0px 30px;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
}
  .slider{
    width: 100%;
    margin-top: 0px;
  }
  .slider li{
    height: 200px;
    width: 100%;
  }
  .doctorweb .doc1{
    width: 5%;
  }
  .doctorweb .doc2{
    width: 20%;
  }
.doctorweb {
    display: block;
}
.page-heading{
  padding: 30% 0% 10% 0%;
}
.page-heading h1{
  font-size: 2em !important;
}
}
#mapaopt h2{
    color: #3a3a3a;
    line-height: 1.2em;
    font-size: 34px;
    margin-top: 5px;
    margin-bottom: 10px;
}
#mapaopt mark {
    background-color: #68be47;
    color: #ffffff;
    border-radius: 3px;
    padding: 1px 10px;
}
#mapaopt strong{
    background-color: rgba(0,0,0,0);
       color: #68be47;     
}