/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  margin: 0 !important;
}

a {
  color: #106eea;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Spinner
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #133a6f;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Boton regresa al inicio
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  text-decoration: none;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #133a6f;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #2948E8;
  color: #fff;
}

/*--------------------------------------------------------------
# Deshabilita el retraso en dispositivos móviles
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #133a6f;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  right: 0;
  left: 0;
  top:0;
}

#header.header-scrolled {
  top: 0;
  padding: 15px;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-width: 175px;
}

.mr-auto{
    margin-right: auto!important;
}

@media (max-width: 992px) {
  #header {
    padding: 10px;
    top: 0;
  }
  #header .logo {
    font-size: 28px;
    max-width: 145px;
  }
  #header .logo img{
    max-width: 145px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ee283c;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ee283c;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #133a6f;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #fff;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ee283c;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
  font-size: smaller;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #ee283c;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #133a6f;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  text-decoration: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #ee283c;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.d-none {
    display: none!important;
}

@media (min-width: 992px){
	.d-lg-block {
    	display: block!important;
	}

	.d-lg-none {
		display: none!important;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: fit-content;
  padding-bottom: 0 !important;
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
    padding: 19px 0 0;
  height: 100%;
  max-width: 100% !important;
}

@media (max-width: 1024px) {
  #hero .container {
    margin:0 !important;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  background: #0084c4;
  padding: 15px;
  color: white;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #106eea;
}

#hero h2 {
  color: #00bb2d !important;
  margin: 5px 0 30px 0;
  font-size: 35px;
  font-weight: 500;
  padding-bottom: 10px;
}

@media (max-width: 991px) {
  #hero {
    height: 115vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .laptop {
    width: 100%! important;
    height: 100%;
    margin-top: 32px;
  }

  .movil{
    display: none;
  }
}

@media (max-width: 991px) {
  .laptop {
    display: none;
  }
  .movil{
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    margin-top: 25px;
  }
}

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

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #106eea;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Información
--------------------------------------------------------------*/
.gral{
  width: 100%;
  height: 100%;
  max-height: 600px;
}

#informacion .f-left{
  width: 55%;
  float: left;
}

#informacion .f-right{
  width: 45%;
  float: right;
}

.voltea-img{
  transform: scaleX(-1);
  width: 100%;
  height: 100%;
}

.bg-info{
  color: #fff;
  background: #133a6f;
  padding: 15px;
  height: auto;
}

#informacion p{
  text-align: justify;
  margin: 30px 15px;
  font-size: 23px;
}

/*--------------------------------------------------------------
# Equipo
--------------------------------------------------------------*/
#equipo{
  width: 100%;
  height: 100%;
}

#equipo h1, #contacto h1{
  font-size: 30px;
  color:#133a6f;
}

#equipo h2, #contacto h2{
  font-size: 25px;
  font-weight: 400;
  color:#133a6f;
}

#equipo img{
  width: 100%;
  height: 100%;
}

.equipo-container{
  width: 100%;
  margin: 0 45px;
}

#equipo .f-left{
  width: 50%;
  float: left;
}
#equipo .f-right{
  width: 45%;
  float: right;
}

#equipo p, #equipo b{
  text-align: justify;
  margin: 20px 10px;
  font-size: 20px;
}

.bg-equipo{
  color: #133a6f;
  background: #fff;
  padding: 15px;
  height: auto;
}

/*--------------------------------------------------------------
# Tratamientos
--------------------------------------------------------------*/

.tratamientos-container{
  margin: 10px 25px;
}

#tratamientos img{
  width: 100%;
  height: 85%;
}

#tratamientos .f-left{
  width: 40%;
  float: left;
}

#tratamientos .f-right{
  width: 50%;
  float: right;
}

#tratamientos p{
  text-align: justify;
  margin: 20px 10px;
}

#tratamientos p, #tratamientos ul, #tratamientos b{
  font-size: 20px;
}

#tratamientos ul{
  line-height: 35px;
}

#tratamientos .parrafo{
  width: 100%;
  display: flex;
}

#tratamientos .divide{
  width: 100%;
  height: 100%;
  display: inline-block;
}

#tratamientos h1, #secuelas h1, #recuperacion h1{
  font-size: 30px;
}

#tratamientos h2,  #secuelas h2, #recuperacion h2{
  font-size: 25px;
  font-weight: 400;
}
/*--------------------------------------------------------------
# Secuelas
--------------------------------------------------------------*/
.bg-secuela{
  color: #fff;
  background: #133a6f;
  padding: 0 15px;
  height: auto;
  margin-bottom: 5px;
}

.img-banner{
  width: 100%;
  height: -webkit-fill-available;
  max-height: 800px;
}

.secuelas-container{
  width: 100%;
  display: flow-root;
}

#secuelas img{
  width: 100%;
}

#secuelas .f-left{
  width: 58%;
  float: left;
}

#secuelas .f-right{
  width: 35%;
  float: right;
  display: flex;
  margin-right: 30px;
  justify-content: flex-end;
  margin-top: 20px;
}

#secuelas p{
  text-align: justify;
  margin: 20px 10px;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Problemas y Antesde
--------------------------------------------------------------*/
#problemas, #antesde{
  width: 100%;
  height: 100%;
}

#problemas h1, #antesde h1{
  font-size: 30px;
  color:#133a6f;
}

#problemas h2{
  font-size: 25px;
  font-weight: 400;
  color:#133a6f;
}

#problemas img{
  width: 100%;
  height: -webkit-fill-available;
  max-width: 500px;
  max-height: 550px;
}

.problemas-container{
  width: 100%;
  margin: 0 45px;
}

#problemas .f-left{
  width: 30%;
  float: left;
}
#problemas .f-right{
  width: 60%;
  float: right;
}

#problemas p, #antesde p{
  text-align: justify;
  margin: 20px 10px;
  font-size: 20px;
}

.bg-problemas{
  color: #133a6f;
  background: #fff;
  padding: 15px 25px;
  height: auto;
}

/*--------------------------------------------------------------
# Recuperacion y salud
--------------------------------------------------------------*/

.recuperacion-container{
  width: 100%;
  display: flow-root;
}

#recuperacion img{
  width: 100%;
  max-height: 320px;
  margin-bottom: 10px;
}

#recuperacion .f-left{
  width: 53%;
  float: left;
}

#recuperacion .f-right{
  width: 40%;
  float: right;
  margin-right: 30px;
  justify-content: flex-end;
  margin-top: 20px;
}

#recuperacion p, #salud p{
  text-align: justify;
  margin: 20px 10px;
  font-size: 20px;
}

#recuperacion .parrafo, #salud .parrafo, #secuelas .parrafo{
  padding: 0 15px;
  display: inline-block;
}

#recuperacion .parrafo{
  margin-top: 15px;
}

#recuperacion ul{
  line-height: 45px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.row {
    display: flow-root;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-6, .col-md-6{
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.mb-4{
  margin-bottom: 1.5rem!important;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row>.col, .form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-control {
    display: block;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
    position: relative;
    width: 100%;
}

.whatsapp {
  float: left;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  padding-bottom: 46px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

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

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

.contact .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;
}

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

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #133a6f;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #133a6f;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #2948E8;
}

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

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

.contactanos{
  display: contents;
}

.form-mail{
  float: right;
}

.completo{
  width: -webkit-fill-available;
}

.box {
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.font {
  color: #0084c4;
  font-size: 35px;
  border: solid;
  border-color: #CEE4FE;
  border-radius: 50px;
  padding: 5px;
  margin-bottom: 10px;
}

.box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: justify;
  font-size: 16px;
}

.mapa {
    width: 100%;
    height: 100%;
}

.box img:hover {
    transform: scale(2.2);
}

.box-f-right{
  width: 47%;
  float: right;
}

.box-f-left{
  width: 47%;
  float: left;
}

.box-f-roma{
  width: 47%;
}

#contacto a{
  text-decoration: none;
}

#contacto a:hover{
  text-decoration: revert;
}

#cel, .wa{
  color: #00bb2d !important;
}

#cel:hover{
  color: #777777 !important;
}
/*--------------------------------------------------------------
# Otros estilos
--------------------------------------------------------------*/
.d-flow{
  display: flow-root;
}

.align-items-center {
    align-items: center!important;
}

.d-flex{
	display: flex;
}

.text-center{
  width: 100%;
  text-align: center;
}

.container{
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px){
	.container{
    	max-width: 1140px;
	}
}

/*--------------------------------------------------------------
# Media Query para tamaño de textos
--------------------------------------------------------------*/

/* Por anchura de la pantalla*/
@media(min-width: 1024px) and (max-width: 1149px){
  .bg-equipo {
    padding: 0;
  }

  #equipo .f-right {
    width: 48%;
  }

  #equipo .f-left {
    margin-top: 20px;
  }

  #tratamientos .f-left {
    margin-top: 25px;
  }

  #tratamientos img {
    height: fit-content;
    max-height: 500px;
  }

  #tratamientos .f-right {
    width: 55%; 
  }

  #secuelas .f-right {
    width: 43%;
  }
  #secuelas .f-left {
    width: 50%;
  }

  #secuelas img {
    height: fit-content;
    max-height: 450px;
  }

  #problemas img {
    max-height: 650px;
  }
}

@media(min-width: 1150px) and (max-width: 1439px){
  #informacion p{
    font-size: 24px;
  }
  #equipo p, #equipo b{
    font-size: 23px;
  }
}

@media(min-width: 1440px) and (max-width: 1550px){
  #informacion p{
    font-size: 29px;
  }
  #equipo p, #equipo b{
    font-size: 26px;
  }
  #tratamientos p, #tratamientos ul, #tratamientos b {
      font-size: 22px;
  }
}

@media(min-width: 1551px) and (max-width: 2000px){
  #informacion p{
    font-size: 33px;
  }
  #equipo p, #equipo b{
    font-size: 30px;
  }
  #tratamientos p, #tratamientos ul, #tratamientos b {
      font-size: 24px;
  }
}

@media(min-width: 2001px){
  .gral{
    max-height: 700px;
  }
  .back-to-top i{
    font-size: 35px;
    width: 70px;
    height: 70px;
    border-radius: 15px;
  }

  #preloader:before {
    width: 100px;
    height: 100px;
  }

  #header .logo img {
    max-width: 220px;
  }

  .container {
    max-width: 1800px;
    padding-right: 35px;
    padding-left: 35px;
  }

  .nav-menu a {
    font-size: 28px;
  }

  .nav-menu .drop-down ul a {
    font-size: 26px;
  }

  #informacion p{
    font-size: 38px;
  }

  #equipo h2, #tratamientos h2,  #secuelas h2, #recuperacion h2, #contacto h2 {
    font-size: 40px;
  }

  #equipo h1, #tratamientos h1,  #secuelas h1, #recuperacion h1, #problemas h1, #antesde h1, #contacto h1 {
    font-size: 44px;
  }

  #equipo p, #equipo b, #secuelas p, #antesde p, #salud p, #contacto h3{
    font-size: 34px;
  }

  #equipo img{
    max-height: 600px;
  }

  #tratamientos p, #tratamientos ul, #tratamientos b, #problemas p, #recuperacion p, #recuperacion b, #contacto ul{
    font-size: 32px;
  }

  #tratamientos ul {
    line-height: 50px;
  }

  #tratamientos img {
    max-height: 700px;
  }

  .bg-info{
    padding: 25px;
  }

  .tratamientos-container {
    margin: 15px 35px;
  }

  #secuelas .f-right {
    width: 38%;
    margin-top: 30px;
  }

  #secuelas img {
    max-height: 500px;
  }

  #problemas .f-right {
    width: 70%;
  }

  #problemas .f-left {
    width: 25%;
  }

  #problemas img{
    max-height: 800px;
  }

  #recuperacion ul {
    line-height: 50px;
    font-size: 30px;
  }

  #recuperacion img {
    max-height: 425px;
  }

  .contact .php-email-form input, .contact .php-email-form textarea, .contact .php-email-form button[type="submit"] {
    font-size: 26px;
  }
  .contact .php-email-form button[type="submit"] {
    padding: 20px 35px;
    border-radius: 10px;
  }
}
/*------------------------------
# Por altura de la pantalla
------------------------------*/
@media(min-height: 500px) and (max-height:749px){
  /*#informacion p{
    font-size: 18px;
  }*/
}



/*--------------------------------------------------------------
# Media Query para ajustar las secciones
--------------------------------------------------------------*/
@media(max-width: 1023px){
  .gral{
    max-height: fit-content;
    display: block !important;
  }

  .voltea-img {
    height: 100%;
  }

  #informacion .f-right, #informacion .f-left, #equipo .f-right, #equipo .f-left, #tratamientos .f-right,
  #tratamientos .f-left, #secuelas .f-right, #secuelas .f-left, #problemas .f-right, #problemas .f-left,
  #recuperacion .f-right, #recuperacion .f-left, .box-f-left, .box-f-right, .box-f-roma{
    width: auto;
    float: unset;
  }

  #informacion .f-right{
    display: flex;
  }

  .equipo-container, .problemas-container {
    margin: 0 20px;
  }

  .tratamientos-container {
    margin: 10px 20px;
  }

  .img-banner, #problemas img{
    height: auto;
  }
  #secuelas .f-right {
    margin-right: 0;
  }

  #problemas .f-left{
    display: flex;
    justify-content: center;
  }

  #problemas img {
    max-width: 400px;
  }

  #recuperacion .f-right {
    margin-right: 0;
    padding: 0 15px;
    height: auto;
    margin-bottom: 5px;
  }

  .col-lg-6{
    padding: 0;
  }
}

@media (min-width: 992px){
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 46%;
  }
}