html,
body {
  height: 100%;
  margin: 0 !important;
  max-width: 100%;
  overflow-x: hidden;
}
p {
  margin-top: 30px;
}
.cntr {
  display: table;
  width: 100%;
  height: 100%;
}
.cntr .cntr-innr {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
}
.lookwhats a {
    width: 40px;
    height: 29px;
    color: #29235c;
    position: fixed;
    bottom: 50px;
    right: 50px;
    border-radius: 11px;
    z-index: 16;
    font-size: 40px;
}

.lookwhats:hover {
    cursor: pointer;
}
/*** STYLES ***/
.footer_tercond:hover{
  color:#FFF !important;
}

.search {
  display: inline-block;
  position: relative;
  height: 30px;
  width: 30px;
  box-sizing: border-box;
  margin: 0px 8px 7px 0px;
  padding: 3px 9px 0px 9px;
  border: 3px solid #4EC4AF;
  border-radius: 25px;
  transition: all 200ms ease;
  cursor: text;
}
.search:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 15px;
  right: -8px;
  top: 17px;
  background: #4EC4AF;
  border-radius: 3px;
  transform: rotate(-45deg);
  transition: all 200ms ease;
}
.search.active,
.search:hover {
  width: 200px;
  margin-right: 0px;
}
.search.active:after,
.search:hover:after {
  height: 0px;
}
.search input {
  height: 15px;
  width: 100%;
  border: none;
  box-sizing: border-box;
  font-family: Helvetica;
  font-size: 15px;
  color: inherit;
  background: transparent;
  outline-width: 0px;
  
}

.card {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  padding: 5%;
  margin-bottom: 50px;
  width: fit-content;
  height: fit-content;
}

.profile-card .card-img-block {

  margin: 0 auto;
  position: relative;
  top: -20px;
  
}
.profile-card .card-img-block img{
  border-radius:5px;
  width: 200px;
  height: 150px;
}
.profile-card h5{
  color:#4E5E30;
  font-weight:600;
}
.profile-card p{
  font-size:14px;
  font-weight:300;
}


/*Navbar*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f5f5f5;
  font-family: "Roboto Condensed", sans-serif;
}

.navbar-responsive {
  color: #fff;
  position: absolute;
  background-color: #00a98f;
  height: 300px;
  width: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: 0.3s all ease-in-out;
}
.navbar-responsive:after {
  content: "";
  z-index: -1;
  left: 0;
  position: absolute;
  height: 300px;
  width: 100%;
  background-color: #00a98f;
  /*background-color: rgba(0, 0, 0, 0.8);*/
}
.navbar-responsive .navbar-responsive__nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
}
.navbar-responsive .navbar-responsive__nav .navbar-responsive__link {
  text-align: center;
  letter-spacing: 2px;
}
.navbar-responsive .navbar-responsive__nav .navbar-responsive__link a {
  display: block;
  padding: 15px;
  color: #fff;
  text-decoration: none;
}
.navbar-responsive .navbar-responsive__nav .navbar-responsive__link a:after {
  top: 50%;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.navbar {
  background-color: #fff;
}
.navbar .navbar__wrapper {
  width: 90%;
  margin: 0 auto;
}
.navbar .navbar__wrapper .navbar__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.navbar .navbar__wrapper .navbar__menu .navbar__nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.navbar .navbar__wrapper .navbar__link a,
.navbar .navbar__wrapper .navbar__brand {
  display: block;
  position: relative;
  padding: 12px;
  color: #777;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.navbar .navbar__wrapper .navbar__brand {
  font-weight: 700;
  font-size: 1.2em;
}
.navbar .navbar__wrapper .navbar__brand img {
  height: 60px;
}

.after-transform a {
  position: relative;
}
.after-transform a:after {
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #4EC4AF;
  border-radius: 3px;
  transform: scaleX(0) translateZ(0);
  transform-origin: bottom center;
}
.after-transform a.active:after, .after-transform a:hover:after {
  transform: scaleX(1) translateZ(0);
}

/* Icon 3 */
#nav-icon3 {
  width: 30px;
  height: calc(100%/2);
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span {
  display: none;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #777;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
  top: 9px;
}

#nav-icon3 span:nth-child(4) {
  top: 18px;
}

#nav-icon3.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

@media (max-width: 768px) {
  .navbar__nav {
    display: none !important;
  }

  #nav-icon3 span {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .navbar__responsive {
    transform: translate3d(-100%, 0, 0) !important;
  }
}

/*footer*/
* {
  margin: 0px;
  padding: 0px;
}

.footer {
  background: #48B99F !important;
  padding: 40px 0px;
  overflow: hidden;
  font-size: 15px;
}

.wrapper {
  width: 1100px;
  margin: 0px auto;
}

a {
  transition: all 0.3s ease-out 0s;
}

.footer a {
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  padding-right: 10px;
}

.footer a:hover {
  color: rgb(141, 202, 44);
}

.splitleft {
  float: left;
  width: 30%;
  padding-right: 2%;
  text-align: left;
  text-transform: uppercase;
  font-size: 16px;
}

.copyright {
  padding: 20px 0px 10px;
  color: #fff;
}

.splitmid {
  float: left;
  width: 35%;
  padding: 0px 2%;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
}

.footer h3 {
  color: #fff;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-stretch: normal;
  font-size: 19px;
  line-height: 25px;
  font-family: Raleway, Arial, Helvetica, sans-serif;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.newsletterBox {
  overflow: hidden;
  margin: 20px 0px;
}

.txtfld {
  background: rgbha(255, 255, 255, 0.4) no-repeat scroll 16px 16px;
  border: 0px;
  height: 30px;
  padding: 5px 5%;
  margin-bottom: 7px !important;
  color: #777;
  border-radius:10px;
  float: inline-end;
  width: 100% !important;
}

.btn {
  background: #FFA500;
  cursor: pointer;
  border-radius: 10px;
  border: 0px;
  width: 30%;
  height: 30px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-stretch: normal;
  font-size: 16px;
  line-height: 15px;
}

.splitright {
  float: right;
  width: 27%;
  padding-left: 1.5%;
  font-size: 16px;
  color: white;
}

.row {
  padding: 10px 0px;
}

.row strong {
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  font-stretch: normal;
  font-size: 20px;
  line-height: 15px;
  color: #FFA500;
}

@media only screen and (max-width: 1366px) and (min-width: 1025px){
  .iconServ21in{
    width: 125px !important;
    padding: 15px;
  }
  .iconServ21in:hover{
    width: 130px !important;
    padding: 15px;
  }


}

@media only screen and (max-width: 1366px) and (min-width: 1025px){
  .icono21in{
    width: 128px !important;
    padding: 10px;
  }
  .icono21in:hover{
    width: 138px !important;
    padding: 10px;
  }
  .especialidad{
    margin: 0% !important;
    width: 100% !important;
    position: absolute;
    font-size: 13px !important;
  }
  

}

@media only screen and (max-width: 1024px) and (min-width: 381px){
  .icono21in{
    width: 100px !important;
  }
  .icono21in:hover{
    width: 105px !important;
  }
  .especialidad{
    margin: 0% !important;
    width: 100% !important;
    position: absolute;
    font-size: 11px !important;
  }

}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .wrapper,
  .container,
  .navwrap {
      width: 98%;
      margin: auto;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .wrapper,
  .container {
      width: 98%;
      margin: auto;
  }
}

@media only screen and (max-width: 640px) {
  .wrapper,
  .container {
      width: 98%;
      margin: auto;
  }
}

@media only screen and (max-width: 480px) {
  .wrapper,
  .container {
      width: 90%;
      margin: auto;
  }
}

@media only screen and (max-width: 360px) {
  .wrapper,
  .container {
      width: 90%;
      margin: auto;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .footnav {
      margin: 0px 0px 25px;
  }
}

@media only screen and (max-width: 640px) {
  .footnav {
      margin: 0px 0px 25px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 640px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 360px) {
  .footnav li {
      display: block;
      padding: 0px 0px 11px;
      text-align: left;
      font-size: 15px;
  }
}

@media only screen and (max-width: 360px) {
  .footnav li:first-child i {
      display: inline-block !important;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 640px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 360px) {
  .footnav li {
      display: block;
      padding: 0px 0px 11px;
      text-align: left;
      font-size: 15px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 640px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 360px) {
  .footnav li {
      display: block;
      padding: 0px 0px 11px;
      text-align: left;
      font-size: 15px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 640px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 360px) {
  .footnav li {
      display: block;
      padding: 0px 0px 11px;
      text-align: left;
      font-size: 15px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 640px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 360px) {
  .footnav li {
      display: block;
      padding: 0px 0px 11px;
      text-align: left;
      font-size: 15px;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 640px) {
  .footnav li {
      padding: 0px;
  }
}

@media only screen and (max-width: 360px) {
  .footnav li {
      display: block;
      padding: 0px 0px 11px;
      text-align: left;
      font-size: 15px;
  }
}

@media only screen and (max-width: 640px) {
  .splitleft,
  .splitmid,
  .splitright {
      float: none;
      width: 100%;
      border-right: 0px;
      padding-bottom: 30px;
      padding-left: 0px;
      padding-right: 0px;
      text-align: left;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .splitleft img {
      width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .splitleft img {
      width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .splitleft img {
      width: auto;
  }
}

@media only screen and (max-width: 360px) {
  .splitleft img {
      width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .splitleft,
  .splitmid,
  .splitright {
      float: none;
      width: 100%;
      border-right: 0px;
      padding-bottom: 30px;
      padding-left: 0px;
      padding-right: 0px;
      text-align: left;
  }
}

@media only screen and (max-width: 640px) {
  .txtfld {
      width: 45%;
  }
}

@media only screen and (max-width: 360px) {
  .txtfld {
      width: 70%;
  }
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
  .splitmid img {
      margin: 10px 0px 5px;
  }
}

@media only screen and (max-width: 360px) {
  .splitmid img {
      width: 43%;
      padding-right: 2%;
  }
}

@media only screen and (max-width: 640px) {
  .splitleft,
  .splitmid,
  .splitright {
      float: none;
      width: 100%;
      border-right: 0px;
      padding-bottom: 30px;
      padding-left: 0px;
      padding-right: 0px;
      text-align: left;
  }
}
.nosotros {
  text-align: justify;
  color: #48B99F;
  font-size: 20px;
  padding-left: 15%;
  padding-right: 15%;
  font-weight: bolder;
  margin-top:-40px !important;
}
.especialidades {
  text-align: center;
  color: #48B99F;
  display: grid;
}


.icono{
  display: grid;
  cursor: pointer;
  align-items: center;
}
.icono:hover{
  width: 160px;
  height: 100%;
}
.icono-prox{
  display: grid;
  cursor: pointer;
  align-items: center;
  opacity: 20%;
}
.icono-prox:hover{
  width: 160px;
  height: 100%;
  opacity: 20%;
}
.titulos {
  text-transform: uppercase;
  color: #2E5EB6;
  text-align: left;
  font-weight:bolder;
  font-size: 70px;
  font-family: sans-serif;
  opacity: 10%;
  padding-left:5%;
}
.especialidad {
  text-transform: uppercase;
  color: #48B99F;
  text-align: center !important;
  font-weight:bolder;
  font-size: 15px;
  font-family: sans-serif;
  margin: 0% !important;
}

/*Fondo Parallax*/

/*Slider principal*/
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700,900&display=swap');
:root {
  --font-family: 'Titillium Web', sans-serif;
  --black-bg: #313434;
  --white-bg: #ffffff;
  --red-bg: #f03a37;
}
.parallax-slider {
  font-family: var(--font-family);
}
.parallax-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.parallax-slider .img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-position: center;
  background-size: cover;
}
.parallax-slider .img-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-image: linear-gradient(rgb(106 104 104 / 20%), rgb(78 196 175) 142%);
  /*background-image: linear-gradient(rgba(8, 8, 8, 0.5), rgba(218, 15, 45, 0.5));*/
}

.parallax-slider .swiper-slide .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.parallax-slider .content {
  color: var(--white-bg);
  text-align: center;
}
.parallax-slider .content .title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 3.5rem;
}
.parallax-slider .content .title .title-wrapper {
  text-decoration: underline;
  display: inline-flex;
  padding: 0.1rem 2rem;
}

.parallax-slider .content .description {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*nav controls*/
.parallax-slider .swiper-nav-ctrl {
  background-image: none;
  height: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: var(--white-bg);
  width: 30px;
  outline: 0;
}
.parallax-slider .swiper-nav-ctrl.next-ctrl {
  right: 0;
}
.parallax-slider .swiper-nav-ctrl.prev-ctrl {
  left: 0;
}
.parallax-slider .pagination-ctrl {
  max-width: calc(100% - 60px);
  left: 0;
  right: 0;
  margin: auto;
}
.parallax-slider .pagination-ctrl .swiper-pagination-bullet {
  background-color: var(--white);
}

/*.parallax-slider .img-container.one {
  background-image: url('https://drive.google.com/uc?export=view&id=1TciNwuezTtNB9I6zxD6nq4IpixDnMKjH');
}

.parallax-slider .img-container.two {
  background-image: url('https://drive.google.com/uc?export=view&id=1KaparhZe-qjNVAfhn46QCoa348-FrAwj');
}

.parallax-slider .img-container.three {
  background-image: url('https://drive.google.com/uc?export=view&id=11bP_bBT1UdeB4LSWDwyntWPpWnb11jRt');
}*/

/*Directorio*/
.medico .doctor {
  font-size: 1.25rem;
  text-align: right;
  margin: 0;
  text-shadow: 2px 0px 20px rgba(255, 255, 255, 1);
}
.medico .cv {
  margin: .5em 0 0;
}

.doctor {
  font-weight: 400;
  padding: 0px 30px;
}

.cv .line {
  display: block;
}

@media screen and (min-width: 380px) {
  h1 {
    font-size: 2rem;
  }

  .medico .doctor {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 500px) {
  html {
    font-size: 90%;
  }

}
@media screen and (min-width: 600px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 115%;
  }
}
/* ------------------------------------------------------------
  Layout
------------------------------------------------------------ */
*,
*:before,
*:after {
  box-sizing: border-box;
}


.great-medicos {
  display: flex;
  flex-direction: column;
  margin-left: 2%;
  margin-right: 2%;
  min-width: 320px;
}

.medico {
  background-image: url("");
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-top: .5rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: center;
  min-height: 16rem;
  z-index: 2;
  border-radius: 40px;
  min-width: 25rem;
}
.medico:after {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.doctor {
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: all .4s ease-in;
  z-index: 1;
}
.doctor span {
  position: absolute;
  right: 1em;
  z-index: 2;
}

.cv {
  flex: 1;
  padding:1%;
  font-family: sans-serif;
  display: list-item;
  margin: 2%;
  text-align: justify;

}

.medico:hover .doctor {
  left: -100%;
}

@media screen and (min-width: 380px) {
  .doctor span {
    right: 15%;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .doctor {
    width: 85%;
  }
  .doctor:before, .doctor:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    width: 20%;
    height: 100%;
    z-index: 0;
  }
  .doctor:before {
    top: -50%;
    transform-origin: right bottom;
    transform: rotate(30deg);
  }
  .doctor:after {
    top: 50%;
    transform-origin: right top;
    transform: rotate(-30deg);
  }
  .doctor span {
    margin: -.5em auto 0;
    top: 50%;
    left: 40%;
  }
}
@media screen and (min-width: 500px) {
  .great-medicos {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .medico {
    margin: .5rem 1%;
    /*width: 48%;*/
    width: 100%;
  }

  .doctor {
    width: 100%;
  }
  .doctor span {
    bottom: 5%;
    right: 5%;
  }
}
@media screen and (min-width: 900px) {
  .medico {
    /*width: 31.33333333%;*/
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .cv {
    padding: 1.5rem 0;
  }
}

.is--lannister {
  background-color: #f1b62c;
  background-position: 0 0;
  color: #901510;
}
.is--lannister .doctor {
  background-color: #901510;
  background-image: url(https://f.cl.ly/items/0e3p1s3B1N0B1K1z143a/lannister-logo.png);
}
.is--lannister .doctor:before, .is--lannister .doctor:after {
  background: #901510;
}

.is--arryn {
  background-color: #d1cebb;
  background-position: 0 12.5%;
  color: #151c53;
}
.is--arryn .doctor {
  background-color: #151c53;
  background-image: url(https://f.cl.ly/items/171V180i3v1d3h1d0s2Z/arryn-logo.png);
}
.is--arryn .doctor:before, .is--arryn .doctor:after {
  background: #151c53;
}

.is--baratheon {
  background-color: #4EC4AF;
  background-position: 0 25%;
  color: rgb(68, 67, 67);
  font-weight: bolder;
  font-size: 12pt;
  height: 600px;
}
.is--baratheon .doctor {
  background-color: #00A0DF;
  background-image: url(https://f.cl.ly/items/1q0z29153j0i2G1q3e11/baratheon-logo.png);
}
.is--baratheon .doctor:before, .is--baratheon .doctor:after {
  background: #00A0DF;
}

.is--stark {
  background-color: #989898;
  background-position: 0 37.5%;
  color: #ece6db;
}
.is--stark .doctor {
  background-color: #ece6db;
  background-image: url(https://f.cl.ly/items/3H0Q422j0t121q1N2310/stark-logo.png);
}
.is--stark .doctor:before, .is--stark .doctor:after {
  background: #ece6db;
}

.is--tully {
  background-color: #af1d1e;
  background-position: 0 50%;
  color: #00173d;
}
.is--tully .doctor {
  background-color: #00173d;
  background-image: url(https://f.cl.ly/items/1e0v0m281T0k1n1p0C0n/tully-logo.png);
}
.is--tully .doctor:before, .is--tully .doctor:after {
  background: #00173d;
}

.is--tyrell {
  background-color: #f1b62e;
  background-position: 0 62.5%;
  color: #006600;
}
.is--tyrell .doctor {
  background-color: #006600;
  background-image: url(https://f.cl.ly/items/1p3r0S2t3W3k2l1P1z1Z/tyrell-logo.png);
}
.is--tyrell .doctor:before, .is--tyrell .doctor:after {
  background: #006600;
}

.is--greyjoy {
  background-color: #fecc37;
  background-position: 0 75%;
  color: #000;
}
.is--greyjoy .doctor {
  background-color: #000;
  background-image: url(https://f.cl.ly/items/1d0f3A3v1W0R44201x2F/greyjoy-logo.png);
}
.is--greyjoy .doctor:before, .is--greyjoy .doctor:after {
  background: #000;
}

.is--martell {
  background-color: #e12812;
  background-position: 0 87.5%;
  color: #faa703;
}
.is--martell .doctor {
  background-color: #faa703;
  background-image: url(https://f.cl.ly/items/002g3N170h3b0S3P1Z2x/martell-logo.png);
}
.is--martell .doctor:before, .is--martell .doctor:after {
  background: #faa703;
}

.is--targaryen {
  background-color: #4EC4AF;
  background-position: 0 100%;
  color: #000;
}
.is--targaryen .doctor {
  background-color: #000;
  background-image: url(D:\xampp\htdocs\Cuidados-Chiquitos\assets\img\landing\Directorio\doctor-generico.jpg);
}
.is--targaryen .doctor:before, .is--targaryen .doctor:after {
  background: #000;
}

/* Lannister
---------------------------------------- */
.is--lannister .doctor {
  background-position: -35px 0, 0 0;
  color: #fff;
}
.is--lannister .house__motto span:nth-of-type(1), .is--lannister .house__motto span:nth-of-type(3) {
  font-size: 3rem;
  font-weight: bold;
}
.is--lannister .house__motto span:nth-of-type(1) {
  margin-bottom: .1em;
  text-indent: -3.5rem;
}
.is--lannister .house__motto span:nth-of-type(2) {
  font-size: 1.5rem;
  position: relative;
  top: .2em;
  vertical-align: top;
  text-indent: 2rem;
}

@media screen and (min-width: 500px) {
  .is--lannister .doctor {
    background-position: -70px 0, 0 0;
  }
}
@media screen and (min-width: 650px) {
  .is--lannister .doctor {
    background-position: -35px 0, 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .is--lannister .doctor {
    background-position: -10px 0, 0 0;
  }
}
/* Arryn
---------------------------------------- */
.is--arryn .doctor {
  background-position: -85px 15px, 0 0;
  color: #fff;
}
.is--arryn .house__motto {
  margin-top: 0;
}
.is--arryn .house__motto span:nth-of-type(2), .is--arryn .house__motto span:nth-of-type(4) {
  font-weight: bold;
}
.is--arryn .house__motto span:nth-of-type(2) {
  font-size: 3rem;
}
.is--arryn .house__motto span:nth-of-type(4) {
  font-size: 2.25rem;
}
.is--arryn .house__motto span:nth-of-type(1), .is--arryn .house__motto span:nth-of-type(3) {
  margin: .25em 0 .3em;
}

@media screen and (min-width: 1200px) {
  .is--arryn .doctor {
    background-position: 10px 15px, 0 0;
  }
}
/* Baratheon
---------------------------------------- */
.is--baratheon .doctor {
  background-position: -55px -55px, 0 0;
  color: #000;
}
.is--baratheon .house__motto .line {
  margin-bottom: .5em;
}
.is--baratheon .house__motto .line span:nth-of-type(1) {
  font-size: 3.25rem;
  font-weight: bold;
}
.is--baratheon .house__motto .line span:nth-of-type(2) {
  vertical-align: baseline;
}
.is--baratheon .house__motto span:nth-of-type(2) {
  font-size: 1.5rem;
  margin: 0 .1em;
  position: relative;
  top: .1em;
  vertical-align: top;
}
.is--baratheon .house__motto span:nth-of-type(3) {
  font-size: 2.75rem;
  font-weight: bold;
}

@media screen and (min-width: 500px) {
  .is--baratheon .doctor {
    background-position: 0px -35px, 0 0;
    background-size: 100% auto;
  }
}
@media screen and (min-width: 600px) {
  .is--baratheon .doctor {
    background-position: 0px -55px, 0 0;
    background-size: auto;
  }
}
@media screen and (min-width: 1200px) {
  .is--baratheon .doctor {
    background-position: 0px -55px, 0 0;
    background-size: auto;
  }
}
/* Stark
---------------------------------------- */
.is--stark .doctor {
  background-position: -55px 10px, 0 0;
  color: #000;
}
.is--stark .house__motto span:nth-of-type(1), .is--stark .house__motto span:nth-of-type(3) {
  font-weight: bold;
}
.is--stark .house__motto span:nth-of-type(1) {
  font-size: 3rem;
  margin-bottom: .15em;
}
.is--stark .house__motto span:nth-of-type(2) {
  font-size: 1.5rem;
  vertical-align: top;
  margin: 0 .15em;
  position: relative;
  top: .1em;
}
.is--stark .house__motto span:nth-of-type(3) {
  font-size: 2.5rem;
}

@media screen and (min-width: 1200px) {
  .is--stark .doctor {
    background-position: 5px 10px, 0 0;
  }
}
/* Tully
---------------------------------------- */
.is--tully .doctor {
  background-position: 5px 5px, 0 0;
  color: #fff;
}
.is--tully .house__motto span {
  font-weight: bold;
  margin-bottom: .25rem;
}
.is--tully .house__motto span:nth-of-type(1) {
  font-size: 2.3rem;
}
.is--tully .house__motto span:nth-of-type(2) {
  font-size: 3rem;
}
.is--tully .house__motto span:nth-of-type(3) {
  font-size: 2.3rem;
}

@media screen and (min-width: 1200px) {
  .is--tully .doctor {
    background-position: 20px 10px, 0 0;
  }
}
/* Tyrell
---------------------------------------- */
.is--tyrell .doctor {
  background-position: -50px -35px, 0 0;
  color: #fff;
}
.is--tyrell .house__motto span:nth-of-type(1) {
  font-size: 2.65rem;
  margin-bottom: .15em;
}
.is--tyrell .house__motto span:nth-of-type(2) {
  font-size: 3rem;
  font-weight: bold;
}

@media screen and (min-width: 500px) {
  .is--tyrell .doctor {
    background-position: -70px -45px, 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .is--tyrell .doctor {
    background-position: 5px center, 0 0;
  }
}
/* Greyjoy
---------------------------------------- */
.is--greyjoy .doctor {
  background-position: -30px -70px, 0 0;
  color: #fff;
}
.is--greyjoy .house__motto span:nth-of-type(1) {
  font-size: 2rem;
}
.is--greyjoy .house__motto span:nth-of-type(2) {
  font-size: 2.75rem;
  font-weight: bold;
  letter-spacing: -.05em;
  margin: .1em;
}
.is--greyjoy .house__motto span:nth-of-type(3) {
  font-size: 2rem;
}

@media screen and (min-width: 500px) {
  .is--greyjoy .doctor {
    background-position: -30px -45px, 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .is--greyjoy .doctor {
    background-position: 10px 10px, 0 0;
  }
}
/* Martell
---------------------------------------- */
.is--martell .doctor {
  background-position: -60px center, 0 0;
  color: #000;
}
.is--martell .house__motto span:nth-of-type(1), .is--martell .house__motto span:nth-of-type(3) {
  font-weight: bold;
}
.is--martell .house__motto span:nth-of-type(1) {
  font-size: 2rem;
}
.is--martell .house__motto span:nth-of-type(2) {
  font-size: 2.6rem;
  margin: .12em 0 .15em;
}
.is--martell .house__motto span:nth-of-type(3) {
  font-size: 1.9rem;
}

@media screen and (min-width: 500px) {
  .is--martell .doctor {
    background-position: -75px center, 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .is--martell .doctor {
    background-position: 5px center, 0 0;
  }
}
/* Targaryen
---------------------------------------- */
.is--targaryen .doctor {
  color: #fff;
}
.is--targaryen .house__motto span:nth-of-type(1), .is--targaryen .house__motto span:nth-of-type(3) {
  font-weight: bold;
}
.is--targaryen .house__motto span:nth-of-type(1) {
  font-size: 3.25rem;
  letter-spacing: .1em;
}
.is--targaryen .house__motto span:nth-of-type(2) {
  font-size: 1.25rem;
  margin: .15em 0 .2em;
}
.is--targaryen .house__motto span:nth-of-type(3) {
  font-size: 2.25rem;
}

@media screen and (min-width: 500px) {
  .is--targaryen .doctor {
    background-position: 0 0, 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .is--targaryen .doctor {
    background-position: 0 0, 0 0;
  }
}

/*Servicios*/
.filaServicios {
  margin-left: 10px;
  margin-right: 1vw;
}
.info-servicios {
  font-family: sans-serif;
  color: #74787D;
  margin-left: 10%;
  text-align: justify;
  display: none;
  margin-bottom: 25px;
  margin-right: 25px;
}
.info-vacunas {
  font-family: sans-serif;
  color: #74787D;
  /*margin-left: 6% !important;*/
  text-align: justify;
  margin-bottom: 25px;
  padding: 10px;
}

/*Vacunacion*/
.esquema{
  margin:2% 0%;
  display: inline;
  text-align: center;
}

/*Tamizaje*/
#tamizaje{
  margin-top: 1%;
  margin-bottom: 1%;
  text-align: center;
}
.tamices{
  font-family: sans-serif;
  color: #74787D;
  text-align: justify;
  margin-bottom: 25px;
  /*margin-right: 1%;*/
}

.will-animate {
  visibility: hidden;
}

.paq-1, .paq-2, .paq-3, .paq-4, .paq-5{
  font-family: sans-serif;
  color: white;
  font-weight: bolder;
  width: 80px;
  height: 80px;
  margin-left: 10%;
  margin-top: 2%;
  padding: 16px;
  text-align: center;
  border-radius: 60%;
  font-size: 27pt;
  justify-content: space-around;
  cursor: pointer;
}
:hover.paq-1, :hover.paq-2, :hover.paq-3, :hover.paq-4, :hover.paq-5{
  background-color: var(--black-bg) !important;
  opacity: 50%;
}
.paq-1{
  background-color: #4EC4AF;
}
.paq-2{
  background-color: #FFA500;
}
.paq-3{
  background-color: #FF7D79;
}
.paq-4{
  background-color: #0091D9;
}
.paq-5{
  background-color: #00A98F;
}


.tamiz1, .tamiz2, .tamiz3{
  border-radius: 72px;
    height: 78px;
    width: 320px;
    text-align: center !important;
    margin-left: -5% !important;
    color: white;
    align-items: center;
    display: inline-flex;
    text-transform: uppercase;
    font-weight: bolder;
    font-family: sans-serif;
    font-size: 25px !important;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
}
.paquetes{
  text-align: left;
  padding-top: 1%;
}
.list{
  margin-top: 10px;
  margin-left: 10px;
  color:#313434;
  font-weight: bolder;
}
.tamiz1{
  background-color: #0091D9;
}
.tamiz2{
  background-color: #FF6767;
}
.tamiz3{
  background-color: #48B99F;
}

/*contacto*/
#contacto{
  text-align: center;
  margin-top: 2%;
  margin-bottom: 2%;
}
.tcontacto{
  font-family: sans-serif;
  color: #4EC4AF;
  text-align: center;
  font-weight: bolder;
}
.mapa{
  border:#FF6767 2px solid !important;
  text-align: center;
  margin: auto;
}
@import url(https://fonts.googleapis.com/css?family=Raleway:300);
@import url(https://fonts.googleapis.com/css?family=Lusitana:400,700);

.row .col {
  padding: 0 20px;
  float: left;
  box-sizing: border-box;
}
.row .col.x-50 {
  width: 50%;
}
.row .col.x-100 {
  width: 100%;
}

.content-wrapper {
  min-height: 100%;
  position: relative;
}

.get-in-touch {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}
.get-in-touch .title {
  text-align: center;
  font-family: Raleway, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 36px;
  line-height: 48px;
  padding-bottom: 48px;
}

.contact-form .form-field {
  position: relative;
  margin: 32px 0;
}
.contact-form .input-text {
  display: block;
  width: 100%;
  height: 50px;
  border-width: 0 0 2px 0;
  border-color: #00A98F;
  font-family: inherit;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}
.contact-form .input-text:focus {
  outline: none;
}
.contact-form .input-text:focus + .label, .contact-form .input-text.not-empty + .label {
  transform: translateY(-24px);
}
.contact-form .label {
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #888;
  cursor: text;
  transition: transform 0.2s ease-in-out;
}
.contact-form .submit-btn {
  display: inline-block;
  background-color: rgb(78, 196, 175);
  border-radius: 20px;
  color: #fff;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

.note {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-family: Lusitana, serif;
  font-size: 16px;
  line-height: 21px;
}
.note .link {
  color: #888;
  text-decoration: none;
}
.note .link:hover {
  text-decoration: underline;
}
.paquetes ul{
  list-style-type: none;
}