/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #1dc8cd;
  text-decoration: none;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #1dc9ce;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  background: linear-gradient(45deg, #219CB4, #219CB4);
  color: #fff;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
  visibility: hidden;
  opacity: 0;
  width: 64px;
  height: 34px;
}

.back-to-top i {
  line-height: 0;
  font-size: 20px;
}

.back-to-top:focus {
  background: linear-gradient(45deg, #219CB4, #219CB4);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #1dc8cd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: linear-gradient(45deg, #0D3B7D, #0D3B7D);
}

#header.header-transparent {
  background: transparent;
}
#header.header-blue{
  background: #0D3B7D;
}

#header.header-scrolled {
  background: linear-gradient(45deg, #0D3B7D, #0D3B7D);
  height: 70px;
  transition: all 0.5s;
}

#header #logo h1 {
  font-size: 36px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  
  /* or 500% */
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.0025em;
  text-transform: uppercase;
  
  color: #FFFFFF;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 15px;
  background-color: #2CD7E2;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #2CD7E2;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #333333;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #2CD7E2;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
.contacto-menu{
  display: block ruby;
}
.tel-cabecera{
  font-family: Open Sans;
font-style: normal;
font-weight: 600;
font-size: 16px;

/* identical to box height, or 500% */
text-align: center;

/* light-dark */
color: #2CD7E2;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
  .contacto-menu{
    display:none;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .contacto-menu{
    display:block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #1dc8cd;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #1dc8cd;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Inicio Section
--------------------------------------------------------------*/
#inicio {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  background-size: cover;
  position: relative;
}

@media (min-width: 1025px) {
  #inicio {
    background-attachment: fixed;
  }
}

@media (max-height: 640px) {
  #inicio {
    height: 120vh;
  }
}
#inicio h3{
  font-family: Poppins;
font-style: normal;
font-weight: 600;
font-size: 33px;

/* identical to box height */
text-align: center;
letter-spacing: 0.015em;
text-transform: uppercase;

/* texbody */
color: #515151;
}
#inicio .inicio-text {
  position: absolute;
  left: 0;
  top: 180px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#inicio h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 33px;
  line-height: 49px;
  
  /* identical to box height */
  text-align: center;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  
  /* Primary-Dr1 */
  color: #0144A0;
}

@media (max-width: 768px) {
  #inicio h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

#inicio p {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  
  /* or 133% */
  text-align: center;
  letter-spacing: 0.015em;
  
  /* text-body-secundary */
  color: #7A7A7A;
}

@media (max-width: 768px) {
  #inicio p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#inicio .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#inicio .btn-get-started:hover {
  color: #1dc8cd;
  background: #fff;
}
#inicio .icons{

  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#inicio .icons .arrow-down{
  position: absolute;
  z-index: 30;
  left: 10%;
  bottom: 100px;
}


@media (max-width: 767px) {
  #inicio .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }
  #inicio .product-screens .product-screen-2, #inicio .product-screens .product-screen-3 {
    display: none;
  }
  #inicio .icons .arrow-down{
    position: absolute;
    z-index: 30;
    left: 10px;
    bottom: 50px;
    display:inline;
  }
  #inicio h3{
    font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  
  /* identical to box height */
  text-align: center;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  
  /* texbody */
  color: #515151;
  }
  #inicio .inicio-text {
    top:200px
  }

}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 400;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #777;
  font-style: italic;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #1dc8cd;
  background: linear-gradient(0deg, #1dc8cd 0%, #55fabe 100%);
  margin: 0 auto;
  margin-bottom: 20px;
}
.divider {
  display: block;
  width: 100%;
  height: 10px;
  background: #209CB4;
  margin: 0 auto;
  margin-bottom: 20px;
}
/* Section with background
--------------------------------*/
.section-bg {
  background: #fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 92px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* About Us Section
--------------------------------*/
#about {
  padding: 0;
  overflow: hidden;
  position: relative;
}
#about .icons{
  position: absolute;
  top:0px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 10%;
}
#about .icons .arrow{
  position: absolute;
  top: 0px;
  left: 10%;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #fff;
  z-index: 10;
}
#about .icons .arrow img{
  left: -27px;
position: absolute;
top: -45px;
}
#about .box {
  padding: 42px;
  margin-bottom: 30px;
  background: #fff;
  text-align: center;
  color:#fff;

}

#about .box h3{
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.015em;
  text-align: left;  
}
#about .box p{
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;  
}
#about .box p.azules{
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: right;  
}
#about .box p.tel{
  font-family: Poppins;
font-size: 35px;
font-style: normal;
font-weight: 500;
letter-spacing: 0.035em;
text-align: left;
}
#about .row > *{
  padding-left: 0;
  padding-right: 0;
}
#about #caja1{
  position: relative;
  background: #197CB4;
  border-left: #219CB4 solid 20px;
}
#about #caja2{
  background: #1774B9;

}
#about #caja3{
  background: #1465A6;
  border-right: #219CB4 solid 20px;
}
#about .spacer{
  margin-top:300px;
}
#about .sobreponer{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}
#about .about-img {
  height: 510px;
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 992px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
  #about .sobreponer{
    position:relative;
    margin-top:20px;
    bottom:0;
  }
  #about .spacer{
    display: none;
  }
  #about .row > *{

    padding-right: calc(var(--bs-gutter-x)/ 2);
  padding-left: calc(var(--bs-gutter-x)/ 2);
  }
}

#about .content .h2 {
  color: #333;
  font-weight: 300;
  font-size: 24px;
}

#about .content h3 {
  color: #777;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #1dc8cd;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}

/* Quienes Section
--------------------------------*/
#quienes {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#quienes .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #quienes .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}
#quienes h3{
  margin:0;
}
#quienes .features-img img {
  max-width: 100%;
}

#quienes .box {
  margin-bottom: 15px;
  text-align: center;
}

#quienes .icon {
  margin-bottom: 10px;
}

#quienes .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#quienes .icon i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#quienes .titulo-seccion{
  font-family: Poppins;
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: left;
 text-transform: uppercase;   
}

#quienes .title {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 22px;
}

#quienes .title a {
  color: #111;
}

#quienes .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

#quienes .section-description {
  padding-bottom: 10px;
}
#quienes ul {
  padding-left: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;  
}
#quienes ul li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 12px;
font-family: Open Sans;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 31px;
letter-spacing: 0.015em;
text-align: left;
margin-left: 20px;
}
#quienes ul li:before {
  content: '';
  width: 25px;
  height: 20px;
  position: absolute;
  background-image: url('../icons/check.png');
  background-size: cover;
  background-position: center;
  left: 0;
  top: 18px;
  transform: translateY(-50%);
  margin-left: -20px;
}


/* Servicios Section
--------------------------------*/
#servicios {
  overflow: hidden;
  background-image: url(../img/Pattern-servicios.svg);
  background-repeat: repeat;
  background-color: #0144A0;
  padding-bottom: 5rem;
}
#servicios .divider {
  display: block;
  width: 100%;
  height: 10px;
  background: #209CB4;
  margin: 0 auto;
  margin-bottom: 20px;
}
#servicios .box{
  background-color: #1774B9;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 8px; 
    padding: 42px;
    margin-bottom: 30px;
    text-align: center;
    color:#fff;    
}
#servicios .box h3{
  font-family: Poppins;
font-style: normal;
font-weight: bold;
font-size: 26px;
line-height: 39px;
letter-spacing: 0.025em;
text-transform: uppercase;
text-align: left;
color: #FFFFFF;
margin:0;
}
#servicios .box h4{
  font-family: Poppins;
font-style: normal;
font-weight: 300;
font-size: 26px;
line-height: 39px;

/* identical to box height */
letter-spacing: 0.015em;
text-transform: uppercase;
text-align: left;
color: #FFFFFF;
}
#servicios .box p{
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 36px;  
  /* or 180% */
  letter-spacing: 0.025em;  
  color: #FFFFFF;  
  opacity: 0.9;
  text-align: left;
}
#servicios .titulo-seccion{
  font-family: Poppins;
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: left;
 text-transform: uppercase;   
 color:#fff;
}
#servicios h3{
  font-family: Poppins;
font-style: normal;
font-weight: 500;
font-size: 46px;


/* identical to box height, or 57% */
letter-spacing: 0.025em;
text-transform: uppercase;
text-align: center;
color: #FFFFFF;
}

#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#advanced-features p {
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

#advanced-features i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#advanced-features i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/* cirugias Section
--------------------------------*/
#cirugias .cirugias-detalle-adenoides{
background-image: url(../img/image-cadenoides.png);
background-repeat: no-repeat;
background-position-x: left;
background-position-y: top;
}
#cirugias .cirugias-detalle-amigdalas{
  background-image: url(../img/image-camigdalas.png);
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: top;
  }
  #cirugias .cirugias-detalle-nariz{
    background-image: url(../img/image-cadenoides.png);
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: top;
    }
    #cirugias .cirugias-detalle-sinusitis{
      background-image: url(../img/image-camigdalas.png);
      background-repeat: no-repeat;
      background-position-x: left;
      background-position-y: top;
      }
      #cirugias .cirugias-detalle-oido{
        background-image: url(../img/image-cadenoides.png);
        background-repeat: no-repeat;
        background-position-x: left;
        background-position-y: top;
        }
        #cirugias .cirugias-detalle-oreja{
          background-image: url(../img/image-camigdalas.png);
          background-repeat: no-repeat;
          background-position-x: left;
          background-position-y: top;
          }  
          #cirugias .cirugias-detalle-tumorcuello{
            background-image: url(../img/image-cadenoides.png);
            background-repeat: no-repeat;
            background-position-x: left;
            background-position-y: top;
            }                
#cirugias .titulo-seccion {
  font-family: Poppins;
font-style: normal;
font-weight: bold;
font-size: 33px;

/* identical to box height, or 242% */
display: flex;
align-items: center;
letter-spacing: 0.01em;
text-transform: uppercase;

/* texbody */
color: #515151;


}
#cirugias .titulo-descripcion h3{
font-family: Poppins;
font-size: 33px;
font-style: normal;
font-weight: 600;
line-height: 26px;
letter-spacing: 0.025em;
text-align: left;
margin-top:18rem;
margin-left:3rem;
}
#cirugias .caja-indicaciones{
background: #FFFFFF;
box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
margin-left:3rem;
padding:20px;
margin-bottom: 3rem;
display:none;
}
#cirugias .caja-indicaciones.activo{
  display:inline;
  }
#cirugias .boton-reserva{
  background: #219CB4;
box-shadow: -2px 4px 6px rgba(0, 0, 0, 0.15);
border-radius: 24px 0px 0px 8px;
padding:20px 60px 20px 40px;
font-family: Poppins;
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 26px;
/* identical to box height, or 130% */
letter-spacing: 0.015em;
text-transform: uppercase;
margin-right: -4rem;
color: #FFFFFF;
}
#cirugias .caja-indicaciones p{
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.01em;
  text-align: left;  
}
#cirugias .caja-indicaciones p strong{
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px;
  letter-spacing: 0.01em;
  text-align: left;
  
}

#call-to-action {
  overflow: hidden;
  background: linear-gradient(rgba(29, 200, 205, 0.65), rgba(29, 205, 89, 0.2)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}
#cirugias .cirugias-listado button {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  text-align: left;
  /* identical to box height, or 87% */
  letter-spacing: 0.025em;
  text-decoration-line: underline;
  
  /* texbody */
  color: #515151;
  background: none;
  white-space:normal;
  width: 100%;
border: 0;
}
#cirugias .cirugias-listado .collapsed {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 26px;
  
  /* identical to box height, or 100% */
  display: flex;
  align-items: center;
  letter-spacing: 0.015em;
  text-decoration: none;
  text-align: left;
  /* texbody */
  color: #515151;
  
  opacity: 0.7;
  background: none;
border: 0;
}
#cirugias .barrita{
  width:6px;height:100%;background-color: #515151;
}
#cirugias .barrita.activo{
  background-color: #219CB4;
}
#cirugias .listado-descripcion{
  font-family: Open Sans;
font-style: normal;
font-weight: normal;
font-size: 20px;
line-height: 26px;

/* identical to box height, or 130% */
letter-spacing: 0.015em;

/* texbody */
color: #515151;
padding:10px;
margin-bottom: 20px;
}




@media (max-width: 767px) {
  #cirugias .caja-indicaciones{
    margin-left:0;
  }  

}



/* Padecimientos Section
--------------------------------*/
#padecimientos{
  padding-bottom: 5rem;
}
#padecimientos .titulo-seccion {
  font-family: Poppins;
font-style: normal;
font-weight: bold;
font-size: 33px;

/* identical to box height, or 242% */
display: flex;
align-items: center;
letter-spacing: 0.01em;
text-transform: uppercase;

/* texbody */
color: #515151;


}

#padecimientos .nav-item{
  width:25%;
  margin-bottom:-4px;
}
#padecimientos .nav-tabs{
  border-bottom:3px solid #E0E0E0;
}
#padecimientos .nav-item .active{
  border-bottom:5px solid #219CB4;
}
#padecimientos .accordion-button{
  font-family: Poppins;
font-style: normal;
font-weight: 500;
font-size: 26px;
line-height: 26px;

/* identical to box height, or 100% */
letter-spacing: 0.025em;
text-transform: uppercase;

/* texbody */
color: #515151;
}
#more-features {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#more-features .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
  height: 100%;
}

#more-features .icon {
  float: left;
}

#more-features .icon i {
  color: #666666;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#more-features .icon i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#more-features h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#more-features h4 a {
  color: #111;
}

#more-features p {
  font-size: 14px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #more-features .box {
    margin-bottom: 20px;
  }
  #more-features .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #more-features h4, #more-features p {
    margin-left: 0;
    text-align: center;
  }
}




/* Contacto Section
--------------------------------*/
#contacto {
  background-color: #DFE8ED;
  padding: 60px 0;
  overflow: hidden;
}
#contacto .titulo-seccion {
  font-family: Poppins;
font-style: normal;
font-weight: bold;
font-size: 33px;

/* identical to box height, or 242% */
display: flex;
align-items: center;
letter-spacing: 0.01em;
text-transform: uppercase;

/* texbody */
color: #515151;


}
#contacto .contacto-about h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 26px;
  
  /* identical to box height, or 308% */
  letter-spacing: 0.015em;
  
  /* texbody */
  color: #515151;
  
}

#contacto .contacto-about p {

  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 36px;
  
  /* or 164% */
  letter-spacing: 0.025em;
  
  /* texbody */
  color: #515151;
}
#contacto-direccion{
  font-family: Open Sans;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 26px;

/* or 162% */
letter-spacing: 0.025em;

/* Otorrino pediatra */
color: #219CB4;
}

#contacto-acciontxt{
font-family: Poppins;
font-style: normal;
font-weight: 600;
font-size: 22px;
line-height: 33px;
text-align: center;
letter-spacing: 1px;
padding:10px 30px 10px 30px;
/* dark otorri */
color: #17587C;
}

#forma-contacto{
  background: #FFFFFF;
  border-radius: 8px;
  padding:20px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  background: #fff;
  color: #1dc8cd;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #1dc8cd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact .social-links a i {
  line-height: 0;
}

#contact .social-links a:hover {
  background: #1dc8cd;
  color: #fff;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #1dc8cd;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

#contacto .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contacto .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contacto .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contacto .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contacto .php-email-form input, #contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contacto .php-email-form input::focus, #contact .php-email-form textarea::focus {
  background-color: #1dc8cd;
}

#contacto .php-email-form button[type="submit"]:hover {
  cursor: pointer;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0D3B7D;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}

#footer p{
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  margin-bottom:20px;
  /* or 175% */
  letter-spacing: 0.025em;
  
  color: #FFFFFF;
}
#footer p strong{
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  
  
  /* or 444% */
  display: flex;
  align-items: center;
  letter-spacing: 0.015em;
  
  color: #FFFFFF;
}
#footer h3{
  font-family: Poppins;
font-style: normal;
font-weight: 600;
font-size: 20px;


/* or 400% */
display: flex;
align-items: center;
letter-spacing: 0.025em;
text-transform: uppercase;

color: #FFFFFF;
}

#footer .credits {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  
  /* or 171% */
  letter-spacing: 0.025em;
  
  color: #FFFFFF;
  border-top:1px solid #fff;
  padding-top:3rem;
  margin-top:3rem;
}

#footer .footer-links a {
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  /* or 179% */
  letter-spacing: 0.025em;
  
  color: #FFFFFF;
}

#footer .footer-links a:hover {
  color: #FFFFFF;
}
/*CUSTOM*/

.btn-color-1 {
  color: #fff;
  background-color: #219CB4;
  border-color: #219CB4;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.btn-color-1:hover,
.btn-color-1:active,
.btn-color-1:focus,
.btn-color-1.active {
  /* let's darken #004E64 a bit for hover effect */
  background: #219CB4;
  color: #ffffff;
  border-color: #219CB4;
}

.btn-color-wa {
  color: #fff;
  background-color: #28C44C;
  border-color: #28C44C;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.btn-color-wa:hover,
.btn-color-wa:active,
.btn-color-wa:focus,
.btn-color-wa.active {
  /* let's darken #004E64 a bit for hover effect */
  background: #28C44C;
  color: #ffffff;
  border-color: #28C44C;
}