@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700|Open+Sans:300,400,500,600,700&display=swap");
/*----------- CSS by BMestudio 2018 -----------*/
/*-----------start KEYFRAMES-----------*/
/*start RESET*/
@-webkit-keyframes reset {
  0% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-moz-keyframes reset {
  0% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-o-keyframes reset {
  0% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes reset {
  0% {
    opacity: 0; }
  100% {
    opacity: 0; } }

/*end RESET*/
/*start STICK*/
@-webkit-keyframes stick {
  0% {
    top: -100%; }
  100% {
    top: 0; } }

@-moz-keyframes stick {
  0% {
    top: -100%; }
  100% {
    top: 0; } }

@-o-keyframes stick {
  0% {
    top: -100%; }
  100% {
    top: 0; } }

@keyframes stick {
  0% {
    top: -100%; }
  100% {
    top: 0; } }

/*end STICK*/
/*start FADE IN*/
@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes fade-in {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes fade-in {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/*end FADE IN*/
/*start SCROLL ANIMATION*/
@-webkit-keyframes scroll {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px); } }

@keyframes scroll {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px); } }

/*end SCROLL ANIMATION*/
/*-----------end KEYFRAMES-----------*/
/*-----------start GLOBALS-----------*/
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important;
  -moz-font-smoothing: antialiased !important;
  font-smooth: antialiased !important;
  -webkit-text-size-adjust: none;
  font-smooth: always !important;
  -webkit-font-smooth: always !important;
  -moz-font-smooth: always !important;
  text-rendering: optimizeLegibility !important;
  -moz-osx-font-smoothing: grayscale;
  height: 100%; }

body {
  -webkit-animation: reset, fade-in 2s 1 ease;
  -moz-animation: reset, fade-in 2s 1 ease;
  background: #afacb0;
  color: #727277;
  outline: none;
  -webkit-animation: reset, fade-in 2s 1 ease;
  -moz-animation: reset, fade-in 2s 1 ease;
  animation: reset, fade-in 2s 1 ease;
  -o-animation: reset, fade-in 2s 1 ease;
  font-weight: 400;
  font-style: normal;
  height: 100%;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif; }

p, li {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif; }

* {
  outline: none; }

a {
  color: #727277;
  text-decoration: none;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease; }

a:hover, a:active, a.active, a:focus {
  color: #353535;
  text-decoration: none; }

p {
  line-height: 1.7em; }

p span {
  color: #00a47f;
  font-weight: bold; }

p strong {
  font-weight: 700; }

strong {
  font-weight: 700; }

ul {
  padding: 0;
  list-style: none;
  margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400; }

h2 {
  font-size: 2.8em; }

h3 {
  font-size: 1.4em; }

h4 {
  font-size: 1.1em; }

.mt-4 {
  margin-top: 50px; }

.uppercase {
  text-transform: uppercase; }

.container {
  max-width: 1230px;
  width: 100%; }

.form-group {
  overflow: hidden; }

input,
textarea,
.form-control {
  border: none;
  background: transparent;
  border: 1px solid #a0a0a0;
  border-radius: 0px;
  width: 100%;
  padding: 15px;
  min-height: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 14px; }

textarea {
  resize: none; }

input:focus,
textarea:focus,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
  background: #e0e0e0; }

button {
  transition: All 0.2s ease;
  -webkit-transition: All 0.2s ease;
  -moz-transition: All 0.2s ease;
  -o-transition: All 0.2s ease; }

.img img {
  width: 100%; }

.btn-default {
  background-image: none; }

/* Navbar Toggle Icon Bar*/
.navbar-toggle {
  padding: 0;
  margin: 0;
  color: #959595;
  font-size: 2em;
  z-index: 9999 !important; }

.navbar-toggle .icon-bar {
  background-color: #00a47f; }

.navbar-toggle .icon-bar {
  width: 30px;
  height: 4px;
  border-radius: 0; }

/* end Navbar Toggle Icon Bar*/
/*start FLEX*/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center; }

/*end FLEX*/
/* GoTop */
#gotop {
  position: absolute;
  bottom: -20px;
  right: 15px;
  display: inline-block;
  width: 40px;
  margin: 0;
  z-index: 999; }

#gotop:hover {
  opacity: .7; }

#gotop img {
  width: 100%; }

/* end GoTop */
/* start Btn */
.btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  font-size: 14px;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; }
  .btn.btn-default:hover {
    background-color: transparent;
    color: #449cc9; }
  .btn.light.btn-custom {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 3px;
    padding: 10px 10px; }
    .btn.light.btn-custom i {
      color: #fff; }
    .btn.light.btn-custom:hover {
      background-color: #fff;
      color: #449cc9; }
  .btn:hover {
    color: #449cc9; }
  .btn i {
    margin-left: 10px;
    color: #449cc9; }
  .btn:focus {
    color: #fff; }
  .btn.square {
    padding: 20px 45px;
    border-radius: 0;
    color: #fff;
    line-height: 1; }
  .btn.pink, .btn.blue {
    background-color: #449cc9; }
    .btn.pink i, .btn.blue i {
      color: #fff; }

/* end Btn */
/*start Button Responsive Menu*/
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 25px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  float: left;
  margin-top: 4px; }

.c-hamburger:focus {
  outline: none; }

.c-hamburger span {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 3px;
  background: #000;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  border-radius: 3px; }

.home-body .c-hamburger span,
.home-body .c-hamburger span::before,
.home-body .c-hamburger span::after {
  background: #000; }

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 70%;
  border-radius: 3px;
  height: 3px;
  background-color: #000;
  content: ""; }

.c-hamburger span::before {
  top: -8px; }

.c-hamburger span::after {
  bottom: -8px; }

.c-hamburger--htx {
  background-color: transparent; }

.c-hamburger--htx span {
  -webkit-transition: background 0s 0.3s;
  -o-transition: background 0s 0.3s;
  transition: background 0s 0.3s; }

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s; }

.c-hamburger--htx span::before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  -o-transition-property: top, transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform; }

.c-hamburger--htx span::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  -o-transition-property: bottom, transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform; }

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: transparent; }

.c-hamburger--htx.is-active span {
  background: none; }

.c-hamburger--htx.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff; }

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #fff; }

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  -webkit-transition-delay: 0s, 0.3s;
  -o-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s; }

/*end Button Responsive Menu*/
/*start SCROLL MOUSE*/
.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%; }

.icon-scroll {
  width: 30px;
  height: 50px;
  margin-left: -20px;
  bottom: 50px;
  -webkit-box-shadow: inset 0 0 0 1px #fff;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
  opacity: 0.5; }

.icon-scroll:hover {
  opacity: 1; }

.icon-scroll:before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  margin-left: -3px;
  top: 6px;
  border-radius: 3px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll; }

/*end SCROLL MOUSE*/
/*start ARROWS*/
.curves {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -50px;
  text-align: center;
  width: 95px;
  height: 24px;
  background: url(../images/curves/up.png);
  background-repeat: no-repeat;
  background-position: bottom center; }

.curves.pink {
  background: url(../images/curves/up-pink.png);
  color: #fff;
  height: 25px;
  -webkit-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
  transform: translate(0, 2px); }

.curves.dark {
  background: url(../images/curves/up-dark.png);
  color: #fff; }

.curves.blue {
  background: url(../images/curves/up-blue.png);
  color: #fff;
  -webkit-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
  transform: translate(0, 2px); }

.curves i {
  line-height: 35px;
  font-size: 1.3em; }

/*end ARROWS*/
/*start TITLEs*/
.title-sec {
  color: #fff;
  margin: 0 0 15px 0;
  font-size: 3em;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif; }

.title {
  font-family: 'Quicksand', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: #6e6e6e;
  position: relative;
  font-weight: 700; }
  .title:after {
    content: '';
    width: 52px;
    height: 3px;
    background: #449cc9;
    margin: 15px 0 20px;
    display: block; }

h3.title {
  font-size: 24px;
  margin: 0; }

.wrap-name .title:after {
  width: 8%; }

/*end TITLEs*/
/*start BREADCRUMB*/
.breadcrumb {
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: 'Quicksand', sans-serif; }

.breadcrumb a {
  color: #fff;
  text-shadow: none; }

.breadcrumb a:hover {
  color: #de175d; }

/*end BREADCRUMB*/
/*start SEARCH*/
.ss-search-form {
  position: relative; }

.ss-search-form .form-group {
  position: relative;
  width: 100%; }

.ss-search-form .form-group input[type="text"] {
  width: 100%;
  border-color: #c5c5c5; }

.ss-search-form .form-group .ss-search-form__submit {
  position: absolute;
  right: 0;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  top: 0;
  color: #fff;
  border: none;
  background: #449cc9; }
  .ss-search-form .form-group .ss-search-form__submit:hover {
    opacity: .7; }

.ss-search-form__results {
  position: absolute;
  left: 0;
  top: 110%;
  width: 100%;
  z-index: 999;
  background: #fff; }

.ss-search-form__results.ss-search-form__results--visible {
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }

.ss-search-form__results > p {
  text-align: center;
  margin: 5px 0; }

.wrap-result.flex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.wrap-result.flex .ss-autocomplete-result__aside {
  margin-right: 15px;
  width: calc(30% - 15px);
  overflow: hidden; }

.wrap-result.flex .ss-autocomplete-result__aside img {
  width: 100%; }

.wrap-result.flex .ss-autocomplete-result__content {
  width: 65%; }

/*.ss-search-form__results.ss-search-form__results--visible:before{
        content: 'Te sugerimos:';
        margin: 15px 0;
    }   */
.ss-autocomplete-result {
  padding: 10px;
  border-bottom: 1px solid #eee; }

.ss-autocomplete-result:nth-child(even) {
  background: #f7f7f7; }

.ss-search-form__results h4 {
  margin: 0; }

/*end SEARCH*/
.pattern {
  display: inline-block;
  padding: 0 10px 0 0;
  background: url(../images/pattern-lines.svg) repeat 0 0 transparent;
  background-size: 80px;
  color: #b190b9;
  font-size: 60px;
  vertical-align: bottom;
  font-weight: 800;
  height: 80px;
  position: relative;
  font-family: 'Quicksand', sans-serif;
  line-height: 115px; }

.pattern.light {
  background: url(../images/pattern-lines-light.svg) repeat 0 0 transparent;
  color: #fff; }
  .pattern.light.pink {
    color: #449cc9 !important; }

.pattern.pink {
  color: #449cc9; }

/*start BXSLIDER*/
.bx-wrapper {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0; }

/*end BXSLIDER*/
/*-----------end GLOBALS-----------*/
/*-----------start HEADER-----------*/
header {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 9; }
  header #wrap {
    background: rgba(255, 255, 255, 0.8); }
  header #logo {
    padding: 15px 25px;
    background-color: #449cc9; }

header #logo img {
  width: 110px; }

header #navbar {
  width: calc(100% - 160px - 4.3%);
  margin-left: 4.3%;
  font-family: 'Montserrat', sans-serif;
  padding: 0 30px; }

header #navbar > ul > li {
  text-align: center; }

header #navbar > ul > li > a {
  border-top: 1px solid transparent;
  padding: 30px 0;
  display: inline-block;
  position: relative;
  color: #353535;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif; }
  @media (max-width: 991px) {
    header #navbar > ul > li > a {
      color: #fff; } }

header #navbar > ul > li > a.active:before {
  background: #449cc9;
  height: 3px;
  width: 100%;
  position: absolute;
  top: -3px;
  left: 0;
  content: ""; }

header #navbar > ul > li.open > a:after,
header #navbar > ul > li > a:hover:after {
  background: #449cc9;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: -3px;
  left: 0;
  content: ""; }

header #navbar > ul > li > a span {
  color: #449cc9; }

header #navbar > ul > li > a.link-special {
  color: #fff;
  background: #449cc9;
  padding: 7px 25px; }

header #navbar > ul > li > a.link-special:hover {
  opacity: 0.8; }

.dropdown-menu,
.dropdown-submenu > .dropdown-menu {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  background: #353535;
  color: #fff; }

.dropdown-menu {
  padding: 15px 8px; }

.dropdown-menu > li > a {
  padding: 8px 16px; }

.dropdown-menu > li > a,
.dropdown-submenu > li > a {
  color: #fff; }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  background: #404040;
  color: #fff; }

.stickEm-fixed header {
  /*transition:all 0.2s ease;
    -webkit-transition:all 0.2s ease;
    -moz-transition:all 0.2s ease;
    -o-transition:all 0.2s ease;*/
  -webkit-animation: stick 1s 1 ease;
  -moz-animation: stick 1 s 1 ease;
  animation: stick 1s 1 ease;
  -o-animation: stick 1s 1 ease;
  -webkit-transition: padding 0.2s ease;
  position: fixed;
  left: 0;
  top: 0; }

.stickEm-fixed header #wrap {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }

/*-----------end HEADER-----------*/
/*-----------start FOOTER-----------*/
footer #wrap {
  margin-bottom: 25px;
  background: #68626a;
  font-size: 14px;
  padding: 20px 30px;
  font-family: 'Open Sans', sans-serif;
  color: #fefefe; }
  footer #wrap #logo-go img {
    width: 140px; }
  footer #wrap #logo-ellecktra img {
    width: 80px;
    margin-left: 5px; }
  footer #wrap small {
    font-size: 12px;
    color: #fefefe;
    line-height: 17px; }
  footer #wrap span, footer #wrap small {
    opacity: .6; }
  footer #wrap a {
    opacity: 0.6; }
  footer #wrap a:hover {
    opacity: 1; }

/*-----------end FOOTER-----------*/
/*-----------start LAYOUT-----------*/
.header-inner .container {
  height: 100%; }

.header-inner {
  height: 100%;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed; }
  .header-inner .mensaje-obras {
    color: #fff;
    max-width: 350px;
    color: #fff;
    font-family: 'Open Sans', sans-serif; }

.header-inner .flex {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

article .content {
  padding: 45px 30px;
  background: #fff; }
  article .content.pacientes {
    padding: 90px 30px 85px 30px; }

article .content.gray {
  background: #ededed;
  padding: 15px 30px; }

article .img,
article .txt {
  margin-bottom: 50px; }

.content hr {
  border: none;
  height: 2px;
  margin: 50px 0;
  width: 100%; }

/*.accordion-blocks > ul.column-2{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
    .accordion-blocks > ul.column-2 > li{
        width: calc(50% - 15px);
    }
    .accordion-blocks > ul.column-2 > li:nth-child(even){
        margin-left: 15px;
    }
    .accordion-blocks > ul.column-2 > li:nth-child(odd){
        margin-right: 15px;
    }*/
.accordion-blocks > ul > li,
.accordion-blocks > .column-2 > ul > li {
  padding: 22px 15px;
  font-weight: 400;
  font-size: 1em;
  margin: 0;
  background: #ededed;
  margin-bottom: 10px; }

.accordion-blocks > ul > li h4,
.accordion-blocks > .column-2 > ul > li h4 {
  margin: 0;
  color: #5b5b5f;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  padding-right: 50px; }

.file h4 {
  padding-left: 45px;
  font-weight: 400;
  font-family: 'Roboto Slab', serif; }

.file h4:before {
  content: '';
  display: inline-block;
  width: 29px;
  height: 34px;
  background: url(../images/icon-pdf.png) no-repeat 0 0 transparent;
  position: absolute;
  left: 0;
  top: -8px; }

.accordion-blocks > ul > li h4:after,
.accordion-blocks > .column-2 > ul > li h4:after {
  font-family: "Font Awesome 5 Free";
  text-align: center;
  font-weight: 900;
  padding: 7px 15px;
  line-height: 1em;
  position: absolute;
  right: 0;
  top: -7px; }

.accordion-blocks > ul > li > h4:after,
.accordion-blocks > .column-2 > ul > li h4:after {
  content: '\f107';
  border-radius: 10px;
  background: #fff;
  color: #89878c; }

.accordion-blocks > ul > li > h4.active:after,
.accordion-blocks > .column-2 > ul > li h4.active:after {
  content: '\f106'; }

ul > .file h4:after {
  content: "" !important;
  border-radius: 0;
  color: #353535;
  background: transparent; }

.accordion-blocks > ul > li h4:hover:after,
.accordion-blocks > .column-2 > ul > li h4:hover:after {
  background: #d5d5d5; }

.accordion-blocks li .editor {
  margin-top: 35px; }

.accordion-blocks li .editor p img {
  width: 100% !important;
  margin-bottom: 25px; }

.accordion-blocks li .editor ul li,
.txt .editor ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px; }

.accordion-blocks li .editor ul li:before,
.txt .editor ul li:before {
  content: '\f00c';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0; }

.accordion-blocks .actions {
  margin-top: 30px; }

.servicios-medicos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .servicios-medicos div.block {
    -webkit-box-flex: unset;
    -ms-flex-positive: unset;
    flex-grow: unset;
    width: 33%;
    font-size: 14px;
    margin-bottom: 25px; }
    @media (max-width: 767.98px) {
      .servicios-medicos div.block {
        width: 100%;
        margin-top: 15px; }
        .servicios-medicos div.block img {
          width: 100%; }
        .servicios-medicos div.block .inner {
          padding: 0 !important; } }
    .servicios-medicos div.block:nth-child(3n+2) .inner {
      padding: 0 7.5px; }
    .servicios-medicos div.block:nth-child(3n + 4) .inner, .servicios-medicos div.block:first-child .inner {
      padding-right: 7.5px; }
    .servicios-medicos div.block:nth-child(3n) .inner {
      padding-left: 7.5px; }
    .servicios-medicos div.block .inner h2 {
      font-family: 'Montserrat', sans-serif;
      color: #6e6e6e;
      font-size: 20px !important;
      margin-bottom: 5px;
      margin-top: 15px;
      font-weight: 600;
      display: block; }
    .servicios-medicos div.block .inner .view-more {
      color: #449cc9;
      font-weight: 700;
      display: block;
      margin-top: 15px;
      font-size: 14px; }

.grid {
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-count: 3;
  column-count: 3; }

.grid .block {
  /*margin-bottom: 35px;*/
  width: 100%; }

.grid .block h3 {
  margin: 35px 0 15px 0;
  color: #353535;
  font-weight: 400;
  font-size: 1.8em; }

.grid .block:first-child h3 {
  margin-top: 0; }

.grid .block li {
  padding-left: 15px;
  margin-bottom: 10px;
  position: relative; }

.grid .block li:before {
  content: '\f0da';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #449cc9; }

/*-----------end LAYOUT-----------*/
/*-----------start HOME-----------*/
.header-inner .bx-wrapper,
.header-inner .bx-viewport,
.slider-home,
.slider-home .bxitem {
  width: 100%;
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover; }

.header-inner .bx-controls.bx-has-pager {
  position: absolute;
  left: calc( 50% + 560px);
  top: 0;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.header-inner .bx-pager.bx-default-pager {
  padding: 0;
  position: relative;
  left: 0;
  bottom: 0; }

.header-inner .bx-wrapper .bx-pager-item {
  display: block;
  margin-bottom: 10px; }

.header-inner .bx-wrapper .bx-pager.bx-default-pager a {
  border-radius: 0;
  background: transparent;
  border: 1px solid #fff;
  width: 11px;
  height: 11px;
  margin: 0; }

.header-inner .bx-wrapper .bx-pager.bx-default-pager a.active,
.header-inner .bx-wrapper .bx-pager.bx-default-pager a:focus,
.header-inner .bx-wrapper .bx-pager.bx-default-pager a:hover {
  background: #449cc9;
  border-color: #449cc9; }

.home-body .header-inner .flex {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.slider-home small {
  text-transform: upppercase;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 1px; }

.slider-home .btn {
  color: #fff; }

.slider-home .wrap-pattern {
  width: 100%;
  /* max-width: 520px; */
      max-width: 50%;
  padding-left: 115px;
  position: relative;
  color: #fff; }
  .slider-home .wrap-pattern small {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2.66px; }
  .slider-home .wrap-pattern h2 {
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 56px;
    line-height: 1;
    letter-spacing: 2px;
    font-family: 'Quicksand', sans-serif; }
  .slider-home .wrap-pattern .btn-custom {
    border: none; }
    .slider-home .wrap-pattern .btn-custom:hover {
      background-color: transparent; }
    .slider-home .wrap-pattern .btn-custom i {
      color: #b190b9; }

.slider-home .pattern.light {
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 0; }
  .slider-home .pattern.light span {
    padding-left: 15px;
    text-align: right;
    color: #449cc9; }

.home-blocks {
  position: relative; }

#home-section .servicios-medicos {
  background-color: #ededed;
  padding-top: 55px;
  padding-bottom: 100px; }
  #home-section .servicios-medicos .title {
    margin-top: 25px; }
    #home-section .servicios-medicos .title:after {
      background-color: #b190b9; }
  #home-section .servicios-medicos .excerpt {
    font-size: 14px; }
  #home-section .servicios-medicos .view-more {
    color: #b190b9; }

.home-blocks > .flex {
  height: 100%; }

.home-blocks .wrap-pattern h2 {
  color: #6e6e6e;
  font-weight: 400;
  margin: 25px 0;
  font-size: 30px;
  font-family: 'Montserrat', sans-serif; }

.home-blocks .wrap-pattern h2.light {
  color: #fff; }

.home-blocks .icon img {
  height: 55px; }

.home-blocks .block-item .img {
  position: relative;
  overflow: hidden; }

.home-blocks .block-item .img img {
  width: 100%;
  -webkit-transition: All .3s ease;
  -moz-transition: All .3s ease;
  -o-transition: All .3s ease; }

.home-blocks a:hover .block-item .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.home-blocks .block-item .img .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease; }

.home-blocks a:hover .block-item .img .mask {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.home-blocks .block-item .img .mask span {
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 1px solid #fff;
  text-align: center;
  line-height: 80px;
  border-radius: 100%; }

.home-blocks .block-item {
  padding-left: 35px;
  border-left: 1px solid #bcbcbc; }

.home-blocks#wrap-block03 a {
  display: block;
  color: #fff; }

.home-blocks#wrap-block03 .block-item {
  padding: 0;
  border: none; }

.home-blocks .block-item .text h2 {
  color: #6e6e6e;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 300;
  line-height: 1.3em; }

.home-blocks .block-item .text h2 p {
  margin: 0;
  line-height: 1em; }

.home-blocks .block-item .text h2:after {
  margin: 20px auto;
  width: 20%;
  background-color: #b190b9; }

.home-blocks .block-item .text > span p {
  margin: 0; }

.home-blocks a .block-item {
  display: block;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease; }

.home-blocks a .block-item .txt > span {
  display: block; }

.home-blocks a:hover .block-item,
.home-blocks a:focus .block-item,
.home-blocks a:active .block-item {
  opacity: 0.8;
  color: #353535; }

.home-blocks a:hover .block-item span p {
  color: #353535; }

.wrap-parallax {
  padding: 65px 30px;
  background-size: cover;
  background-attachment: fixed; }

.profesionales {
  padding: 10px 30px 70px 30px;
  text-align: center;
  color: #fff;
  background-color: #449cc9;
  background-image: url("../images/pattern.png");
  font-size: 30px;
  background-size: auto;
  background-attachment: fixed;
  background-position: left top;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif; }
  .profesionales .pattern {
    display: block;
    width: 83px;
    height: 83px;
    text-align: center;
    padding: 5px;
    margin: 0 auto 45px auto; }
  .profesionales small {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    letter-spacing: 3px;
    margin-bottom: 15px; }
  .profesionales .btn {
    margin-top: 60px;
    display: inline-block; }
    .profesionales .btn:hover {
      opacity: 0.7;
      color: #fff; }
    .profesionales .btn i {
      color: #fff; }

#wrap-block04 {
  padding: 75px 30px 115px 30px;
  background-size: auto 100%;
  background-attachment: fixed; }
  #wrap-block04 h2 {
    margin-top: 40px;
    font-size: 30px;
    font-weight: 300 !important;
    max-width: 70%;
    font-family: 'Quicksand', sans-serif; }
  #wrap-block04 h4 {
    color: #449cc9;
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 500; }
  #wrap-block04 p {
    font-size: 14px; }
  #wrap-block04 a:hover {
    color: #449cc9; }
  #wrap-block04 .btn {
    color: #fff;
    font-family: 'Montserrat', sans-serif; }

#wrap-block04 #turnos .editor {
  color: #fefefe; }

#wrap-block04 #turnos .wrap-icon {
  background: #449cc9; }

#turnos .wrap-icon .fa-whatsapp {
  font-size: 1.3em;
  line-height: 49px; }

#wrap-block04 #turnos .col-md-3:last-child .txt {
  margin-bottom: 0; }

.home-blocks#wrap-block03 .block-item .text h2:after {
  margin: 20px 0; }

#wrap-block02 .btn-custom {
  border-radius: 0;
  padding: 0 15px;
  line-height: 50px;
  border: 1px solid #818181; }
  #wrap-block02 .btn-custom:hover, #wrap-block02 .btn-custom:focus {
    background-color: #b190b9;
    color: #fff;
    border-color: #b190b9; }
    #wrap-block02 .btn-custom:hover i, #wrap-block02 .btn-custom:focus i {
      color: #fff; }
  #wrap-block02 .btn-custom i {
    font-size: 17px;
    color: #b190b9; }

#wrap-blockPost {
  margin: 80px 0 0 0;
  position: relative; }
  #wrap-blockPost:before {
    content: "";
    display: inline-block;
    width: calc(100% + 60px);
    height: calc(100% + 120px);
    background-color: #ededed;
    position: absolute;
    top: -36px;
    left: -30px; }
  #wrap-blockPost .bx-wrapper {
    background-color: transparent; }

#wrap-blockPost .post-list a {
  display: block;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease; }

#wrap-blockPost .view-more {
  color: #b190b9;
  font-weight: 700; }

#wrap-blockPost .post-list a:hover {
  color: #353535;
  opacity: 0.7;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease; }

#wrap-blockPost .post-list img {
  width: 100%; }

#wrap-blockPost .post-list h3 {
  margin-top: 20px;
  color: #6e6e6e;
  font-weight: 700;
  letter-spacing: .8px;
  font-size: 22px; }
  #wrap-blockPost .post-list h3:after {
    background-color: #b190b9; }

/*#wrap-blockPost .post-list .editor{
            font-size: 0.9em;
        }*/
#wrap-blockPost .bx-wrapper .bx-pager.bx-default-pager a {
  border-radius: 0;
  background: transparent;
  border: 1px solid #dddddd;
  width: 11px;
  height: 11px; }

#wrap-blockPost .bx-wrapper .bx-pager.bx-default-pager a.active,
#wrap-blockPost .bx-wrapper .bx-pager.bx-default-pager a:focus,
#wrap-blockPost .bx-wrapper .bx-pager.bx-default-pager a:hover {
  background: #b190b9;
  border-color: #b190b9; }

#call-action {
  position: relative; }

#call-action .content {
  padding: 30px;
  background: #1576b8;
  color: #fff; }

#call-action img {
  width: 45px; }

.home-body #como-llegar {
  background: url(../images/bg-staff.jpg) no-repeat 0 0 transparent;
  padding: 40px 0;
  color: #fff;
  font-size: 26px;
  text-align: center;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .home-body #como-llegar h2 {
    font-size: 26px;
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    line-height: 42px;
    margin-left: 20px;
    margin-top: 0;
    margin-bottom: 0; }
  .home-body #como-llegar .icon {
    display: inline-block;
    background: url(../images/icon-marker.png) no-repeat 0 0 transparent;
    width: 24px;
    height: 42px;
    margin-right: 10px; }

.mapa-home {
  position: relative; }

#wrap-block05 {
  background: #fff; }
  #wrap-block05 .btn.btn-custom {
    border: none;
    font-size: 14px;
    color: #777777;
    padding: 0;
    padding-right: 20px;
    background-color: transparent; }
    #wrap-block05 .btn.btn-custom i {
      color: #449cc9; }
    #wrap-block05 .btn.btn-custom:hover {
      background-color: transparent;
      color: #449cc9; }
  #wrap-block05 h4 {
    color: #b190b9;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif; }
    #wrap-block05 h4:after {
      content: "";
      width: 50px;
      height: 3px;
      display: block;
      background-color: #b190b9;
      margin-top: 25px; }
  #wrap-block05 .info {
    font-size: 14px; }
    #wrap-block05 .info .fa, #wrap-block05 .info .fas, #wrap-block05 .info .fab {
      color: #b190b9;
      margin-right: 15px; }

/*-----------end HOME-----------*/
#institucional .izquierda-quienes .bx-controls {
  position: absolute;
  width: 100%;
  bottom: 50px; }
  #institucional .izquierda-quienes .bx-controls .bx-pager {
    padding-top: 0; }

#institucional .izquierda-quienes .bx-wrapper .bx-pager.bx-default-pager a {
  border: 1px solid #fff;
  width: 10px;
  height: 10px;
  border-radius: 0;
  background-color: transparent; }
  #institucional .izquierda-quienes .bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: #449cc9;
    border-color: #449cc9; }

#institucional .izq strong {
  color: #449cc9; }

/*-----------start INFORMACION UTIL-----------*/
#informacion article .content.gray .img {
  margin: 0; }

/*-----------end INFORMACION UTIL-----------*/
/*-----------start API-----------*/
#api article .img {
  margin-bottom: 35px; }

#api .datos {
  font-size: 14px;
  margin-left: 25px; }
  #api .datos li {
    line-height: 2;
    padding-left: 25px;
    position: relative; }
  #api .datos i {
    color: #449cc9;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }

/*-----------end API-----------*/
/*-----------start TURNOS-----------*/
#turnos h4 {
  font-weight: 600;
  color: #449cc9; }

#turnos .title {
  font-weight: 400;
  max-width: 95%; }
  @media (max-width: 991px) {
    #turnos .title {
      max-width: 100%; } }

#turnos .wrap-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  line-height: 50px;
  background: #449cc9;
  margin-bottom: 35px;
  font-size: 1.5em; }

@media (min-width: 992px) {
  #turnos .txt.side .editor {
    max-width: 78%; } }

@media (max-width: 991px) {
  #turnos {
    text-align: center; }
    #turnos .txt {
      text-align: center; }
    #turnos .title:after {
      margin: 15px auto; }
    #turnos .wrap-icon {
      margin: 0 auto 40px auto; } }

/*-----------end TURNOS-----------*/
/*-----------start PORTAL PACIENTES-----------*/
#portal-pacientes .footer-content-pacientes {
  margin-top: 100px; }
  @media (max-width: 767.98px) {
    #portal-pacientes .footer-content-pacientes {
      text-align: center; }
      #portal-pacientes .footer-content-pacientes .btn {
        margin-top: 25px; } }

/*-----------end PORTAL PACIENTES-----------*/
/*-----------start BLOG-----------*/
@media (max-width: 767.98px) {
  #news aside .flex, #news .editor .flex {
    display: block; } }

#news .blog-item-index {
  margin-bottom: 25px; }

#news .index-blog {
  font-size: 20px; }
  @media (max-width: 767.98px) {
    #news .index-blog {
      font-size: 18px; } }

#news .view-more {
  color: #449cc9;
  font-weight: 600;
  font-size: 14px; }

#news aside {
  margin-top: 50px;
  font-size: 14px; }
  #news aside .editor .title {
    font-size: 24px; }
  #news aside h3.title {
    font-size: 24px; }

.block-blog {
  margin-top: 55px;
  display: block; }

.block-blog:hover {
  color: #727277;
  opacity: 0.6; }

.block-blog:first-child {
  margin-top: 0; }

.block-blog .img {
  margin-bottom: 25px; }

.block-blog .txt {
  margin-bottom: 0;
  width: 100%; }

.block-blog .title:after {
  margin: 15px 0; }

aside .title:after {
  margin: 15px 0; }

aside .block-search {
  margin-top: 20px; }

aside .list {
  margin-top: 45px; }

aside .list li {
  margin-top: 20px; }

aside .list li:first-child {
  margin-top: 0; }

aside .list .img,
aside .list .txt {
  margin: 0; }

aside .list .txt h4 {
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  letter-spacing: 1px; }

aside .list a {
  display: block; }

aside .list a:hover {
  color: #727277; }

.pager {
  margin: 70px 0 0 0;
  text-align: left; }

.pagination {
  margin: 0; }

.pagination > li > a,
.pagination > li > span,
.pagination > .active > span,
.pagination > li > a:hover span,
.pagination > li > a:hover,
.pagination > li.active > a:hover {
  border-radius: none;
  border: none;
  color: #333; }

.pagination > .active > span,
.pagination > li > a:hover span,
.pagination > li > a:hover,
.pagination > li.active:hover > span {
  background: transparent;
  color: #1879bb; }

.categories-list > ul > li:first-child,
.categories-list > ul > li.active > a,
.categories-list > ul > li.child-active > a {
  display: none; }

.categories-list > ul > li ul li {
  margin-bottom: 8px; }

.categories-list > ul > li ul li a {
  padding: 25px 25px 25px 40px;
  background: #e9e9e9;
  color: #5b5b5f;
  display: block;
  position: relative; }

.categories-list > ul > li ul li a:hover {
  opacity: 0.8; }

.categories-list > ul > li ul li a:before {
  display: inline-block;
  left: 25px;
  top: 26px;
  position: absolute;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900; }

.extra-info {
  width: 100%;
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #cdcdcd; }

.extra-info li {
  display: inline-block;
  margin-left: 50px; }

.extra-info li:first-child {
  margin-left: 0; }

.extra-info li i {
  color: #1879bb;
  margin-right: 5px; }

#datepicker {
  margin-bottom: 45px; }

#datepicker .ui-datepicker {
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 0;
  background: #e9e9e9;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  color: #353535; }

#datepicker .ui-datepicker .ui-datepicker-header {
  background: #aba49a;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 0;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 0.05em; }

#datepicker .ui-state-default {
  text-align: center;
  border: none;
  background: transparent; }

#datepicker .has-event .ui-state-default {
  color: #de175d !important; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 0;
  width: auto;
  height: auto;
  text-align: center;
  padding: 13px;
  cursor: pointer;
  color: #fff; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: none; }

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background: transparent;
  border: none;
  color: #353535; }

.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900; }

.ui-datepicker .ui-datepicker-prev:before {
  content: '\f104'; }

.ui-datepicker .ui-datepicker-next:before {
  content: '\f105'; }

.wrap-post .accordion-blocks {
  margin: 30px 0; }

.wrap-post .txt .editor ul {
  padding-left: 40px;
  margin-bottom: 10px; }

/*-----------end BLOG-----------*/
/*-----------start estudios-procedimientos-----------*/
#estudios-procedimientos .chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: 10px 4px; }

#estudios-procedimientos .bottom-links {
  margin-top: 35px; }
  #estudios-procedimientos .bottom-links a:hover {
    color: #449cc9; }

/*-----------end estudios-procedimientos-----------*/
/*-----------start STAFF-----------*/
#staff article .content {
  position: relative; }

#letter-list {
  background: #E9E9E9;
  position: relative; }

#letter-list li {
  margin: 0;
  text-align: center; }

#letter-list li a {
  display: block;
  color: #B5B5B5;
  padding: 4px 15px;
  font-family: 'Montserrat', sans-serif;
  margin: 0; }

#letter-list li a:hover,
#letter-list li a.active {
  color: #fff;
  background: #6e6e6e; }

#letter-list li a.active {
  font-size: 2em;
  padding: 15px 15px; }

#staff-list .thumbnail {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: none;
  padding: 0;
  height: 425px;
  margin: 0;
  overflow: hidden; }

#staff-list .thumbnail img {
  width: 100%; }

#staff-list .thumbnail .txt {
  margin-top: 25px; }
  #staff-list .thumbnail .txt .editor {
    font-family: 'Montserrat', sans-serif; }

#staff-list .thumbnail h3 {
  font-weight: 600;
  font-size: 1.3em;
  font-family: 'Open Sans', sans-serif;
  text-align: center; }

#staff-list .thumbnail h3:after {
  content: '';
  width: 80px;
  height: 3px;
  background: #449cc9;
  display: block;
  margin: 15px auto; }

.staff-search {
  padding: 45px 30px;
  background: url(../images/bg-staff.jpg) no-repeat 0 0 transparent;
  background-size: cover; }
  .staff-search .btn.light.btn-custom {
    padding: 10px 15px; }
    .staff-search .btn.light.btn-custom:hover i {
      color: #449cc9; }
  .staff-search .search-container {
    position: relative; }
    .staff-search .search-container .search-name {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      text-align: center;
      line-height: 30px;
      width: 40px;
      height: 30px;
      border-radius: 5px;
      background-color: #e9e9e9;
      position: absolute;
      top: 50%;
      right: 10px;
      -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
      transform: translate(0%, -50%); }
  .staff-search .form-control {
    border: none;
    color: #333; }

.staff-search h2.title {
  color: #fff;
  letter-spacing: none;
  font-size: 26px;
  font-weight: 700; }
  .staff-search h2.title:after {
    background-color: #fff; }

.staff-search .form-control {
  background: #fff; }

.chosen-container {
  max-width: 100%; }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-color: #e9e9e9;
  width: 30px;
  height: 30px;
  border-radius: 3px; }

.chosen-container-single .chosen-drop {
  background-color: #e9e9e9; }

.chosen-container-single .chosen-single {
  border: 1px solid #bababa;
  border-radius: 0;
  background: #fff;
  color: #353535;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 50px;
  line-height: 50px; }

.chosen-container-single .chosen-single div {
  background-color: #e9e9e9;
  right: -10px;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -9px 4px;
  background-size: 52px 48px !important; }

.chosen-container-single .chosen-single div b {
  width: 10px;
  margin: 0 auto;
  background-size: 52px 48px !important;
  background-repeat: no-repeat;
  background-position: 0 4px; }

/*-----------end STAFF-----------*/
/*-----------start TRABAJA CON NOSOTROS-----------*/
@media (min-width: 991.98px) {
  #trabaja-nosotros .editor {
    padding-right: 50px; } }

#trabaja-nosotros i {
  color: #449cc9; }

#trabaja-nosotros .link {
  font-size: 14px; }
  #trabaja-nosotros .link:hover {
    color: #449cc9; }

@media (min-width: 991.98px) {
  #trabaja-nosotros .logo {
    float: right; } }

/*-----------end TRABAJA CON NOSOTROS-----------*/
/*-----------start CONTACTO-----------*/
#contacto .btn.btn-custom {
  background-color: transparent !important; }

#gmap-park {
  height: 350px; }

#gplace {
  display: block; }

#gplace:hover {
  opacity: 0.7; }

#gplace h4 {
  margin: 22px 0;
  color: #449cc9;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif; }

#gplace img {
  width: 100%; }

.local-block {
  margin-bottom: 25px; }
  .local-block li {
    margin-bottom: 7px;
    font-size: 14px; }
    .local-block li i {
      margin-right: 7px;
      color: #449cc9; }

.social-block ul {
  width: 100%;
  text-align: left; }
  .social-block ul li {
    display: inline-block; }
    .social-block ul li a {
      display: inline-block;
      text-align: center;
      color: #fff;
      font-size: 15px;
      background: #b190b9;
      width: 30px;
      height: 30px;
      line-height: 30px;
      border-radius: 100%;
      margin-right: 5px; }
      .social-block ul li a:hover {
        opacity: 0.7; }

/*-----------end CONTACTO-----------*/
/*-----------start ESTUDIOS Y PROCEDIMIENTOS-----------*/
.wrap-title .flex {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

/*-----------end ESTUDIOS Y PROCEDIMIENTOS-----------*/
/*-----------start EN CONSTRUCCION-----------*/
.soon-body .title-sec {
  margin: 30px 0; }

/*-----------end EN CONSTRUCCION-----------*/
#como-llegar .editor {
  padding-right: 5%; }

#como-llegar .small {
  font-size: 14px;
  margin-top: 35px; }
  #como-llegar .small div {
    margin-bottom: 7px; }
  #como-llegar .small i {
    color: #449cc9;
    margin-right: 7px; }

/*-----------start MEDIA QUERIES-----------*/
/*start IPHONE VERTICAL*/
@media (min-width: 320px) and (max-width: 479px) {
  /*start GLOBAL*/
  .pattern {
    font-size: 2.2em; }
  /*end GLOBAL*/
  /*start HEADER*/
  header #wrap > .flex {
    width: 95%; }
  header #logo {
    padding: 10px; }
  header #logo img {
    width: 80px; }
  header #wrap.flex .navbar-toggle {
    display: block !important; }
  header #navbar {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease; }
  header #navbar.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  #navbar > ul {
    display: block;
    max-height: 450px;
    overflow: scroll; }
  header #navbar > ul > li > a {
    font-size: 1.5em;
    padding: 15px 0;
    text-align: center;
    display: block; }
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    min-width: 0;
    width: 100%; }
  .dropdown-submenu:hover > .dropdown-menu,
  .dropdown.open .dropdown-submenu > .dropdown-menu {
    display: block !important;
    left: 0; }
  .dropdown-submenu > a:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  /*end HEADER*/
  /*start FOOTER*/
  footer #wrap > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  footer #wrap > .flex span {
    margin: 15px 0; }
  /*end FOOTER*/
  /*start LAYOUT*/
  article .content,
  .wrap-parallax {
    padding: 40px 20px; }
  article .content.gray {
    padding: 20px; }
  .title-sec {
    font-size: 2em; }
  .title {
    font-size: 2em; }
  .accordion-blocks > ul.column-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .accordion-blocks > ul.column-2 > li {
    width: 100%; }
  .accordion-blocks > ul.column-2 > li:nth-child(odd),
  .accordion-blocks > ul.column-2 > li:nth-child(even) {
    margin: 0 0 15px 0; }
  /*end LAYOUT*/
  /*start HOME*/
  #wrap-block04 h2 {
    max-width: 100%; }
  .header-inner .bx-controls.bx-has-pager {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: none;
    justify-content: flex-end; }
  .slider-home .wrap-pattern {
    width: 100%;
    padding-left: 65px; }
  .slider-home .wrap-pattern h2 {
    font-size: 1.5em; }
  .slider-home .wrap-pattern .btn {
    padding: 10px 25px; }
  .home-blocks .wrap-pattern .btn {
    padding: 10px 15px; }
  .home-blocks .block-item {
    padding-left: 0;
    border-left: none;
    margin-bottom: 30px; }
  #wrap-block02 > .row.flex {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    #wrap-block02 > .row.flex p {
      color: #727277; }
  .home-blocks .wrap-pattern {
    margin-bottom: 30px;
    text-align: center; }
  .home-blocks .wrap-pattern h2 {
    font-size: 2em; }
  #wrap-blockPost .post-list .txt {
    padding: 0; }
  .home-blocks .block-item .img {
    margin-bottom: 10px; }
  #call-action .content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center; }
  #call-action .content h3 {
    margin: 25px 0; }
  #turnos {
    text-align: center; }
  #turnos .col-md-9 .col-md-4 {
    margin-bottom: 50px; }
  #turnos .col-md-9 .col-md-4:last-child {
    margin-bottom: 0; }
  #turnos .wrap-icon {
    margin: auto auto 20px auto; }
  #turnos .txt {
    margin-bottom: 30px; }
  #turnos .col-md-4:last-child .txt {
    margin-bottom: 0; }
  #turnos h4 {
    margin-bottom: 10px; }
  .social-block ul {
    text-align: center; }
  #gplace {
    margin-top: 50px; }
  #contacto .btn.btn-custom {
    width: 100%;
    display: block; }
  /*end HOME*/
  /*start INNER*/
  .accordion-blocks > ul > li.file h4:after {
    /*display: none;*/
    line-height: 32px; }
  .accordion-blocks > ul > li.file h4 {
    min-height: 32px; }
  .content hr {
    margin: 30px 0; }
  /*end INNER*/
  /*start BLOG*/
  .extra-info li {
    margin: 0 0 10px 0;
    width: 100%; }
  #news aside {
    margin-top: 50px; }
  .popular-post li {
    margin-bottom: 30px; }
  .popular-post li:last-child {
    margin-bottom: 0; }
  .popular-post li .img {
    margin-bottom: 15px; }
  /*end BLOG*/
  /*start INFORMATION*/
  #informacion article .content.gray .img {
    margin: 0 0 30px 0; }
  /*end INFORMATION*/
  /*start STUDIES*/
  #estudios-procedimientos .wrap-title .txt {
    margin: 0;
    text-align: center; }
  #estudios-procedimientos .wrap-title .title:after {
    margin: 20px auto 30px; }
  #estudios-procedimientos .col-md-4 .der {
    margin-top: 50px; }
  #estudios-procedimientos .col-md-4 .der .txt {
    margin: 0; }
  .grid {
    -webkit-column-count: 1;
    column-count: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  /*end STUDIES*/
  /*start STAFF*/
  #staff .btn.light {
    display: block;
    margin-bottom: 30px; }
  #staff-list .thumbnail {
    height: 440px; }
  #letter-list {
    display: none;
    top: 0 !important; }
  /*end STAFF*/ }

/*end IPHONE VERTICAL*/
/*start IPHONE HORIZONTAL*/
@media (min-width: 480px) and (max-width: 767px) {
  /*start GLOBAL*/
  .pattern {
    font-size: 2.2em; }
  /*end GLOBAL*/
  /*start HEADER*/
  header #wrap > .flex {
    width: 95%; }
  header #logo {
    padding: 10px 0 10px 15px; }
  header #logo img {
    width: 80px; }
  header #wrap.flex .navbar-toggle {
    display: block !important; }
  header #navbar {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease; }
  header #navbar.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  #navbar > ul {
    display: block;
    max-height: 450px;
    overflow: scroll; }
  header #navbar > ul > li > a {
    font-size: 1.5em;
    padding: 15px 0;
    text-align: center;
    display: block; }
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    min-width: 0;
    width: 100%; }
  .dropdown-submenu:hover > .dropdown-menu,
  .dropdown.open .dropdown-submenu > .dropdown-menu {
    display: block !important;
    left: 0; }
  .dropdown-submenu > a:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  /*end HEADER*/
  /*start FOOTER*/
  footer #wrap > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  footer #wrap > .flex span {
    margin: 15px 0; }
  /*end FOOTER*/
  /*start LAYOUT*/
  article .content,
  .wrap-parallax {
    padding: 40px 20px; }
  article .content.gray {
    padding: 20px; }
  .title-sec {
    font-size: 2em; }
  .title {
    font-size: 2em; }
  .accordion-blocks > ul.column-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .accordion-blocks > ul.column-2 > li {
    width: 100%; }
  .accordion-blocks > ul.column-2 > li:nth-child(odd),
  .accordion-blocks > ul.column-2 > li:nth-child(even) {
    margin: 0 0 15px 0; }
  /*end LAYOUT*/
  /*start HOME*/
  .header-inner .bx-controls.bx-has-pager {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .slider-home .wrap-pattern {
    width: 100%;
    padding-left: 65px; }
  .slider-home .wrap-pattern h2 {
    font-size: 1.5em; }
  .slider-home .wrap-pattern .btn {
    padding: 10px 25px; }
  .home-blocks .wrap-pattern .btn {
    padding: 10px 15px; }
  .home-blocks .block-item {
    padding-left: 0;
    border-left: none;
    margin-bottom: 30px; }
  #wrap-block04 h2 {
    max-width: 100%; }
  #wrap-block02 > .row.flex {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .home-blocks .wrap-pattern {
    margin-bottom: 30px;
    text-align: center; }
  .home-blocks .wrap-pattern h2 {
    font-size: 2em; }
  #wrap-blockPost .post-list .txt {
    padding: 0; }
  .home-blocks .block-item .img {
    margin-bottom: 10px; }
  #call-action .content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center; }
  #call-action .content h3 {
    margin: 25px 0; }
  #turnos {
    text-align: center; }
  #turnos .col-md-9 .col-md-4 {
    margin-bottom: 50px; }
  #turnos .col-md-9 .col-md-4:last-child {
    margin-bottom: 0; }
  #turnos .wrap-icon {
    margin: auto auto 20px auto; }
  #turnos .txt {
    margin-bottom: 30px; }
  #turnos .col-md-4:last-child .txt {
    margin-bottom: 0; }
  #turnos h4 {
    margin-bottom: 10px; }
  .social-block ul {
    text-align: center; }
  #gplace {
    margin-top: 50px; }
  #contacto .btn.btn-custom {
    width: 100%;
    display: block; }
  /*end HOME*/
  /*start INNER*/
  .accordion-blocks > ul > li.file h4:after {
    /*display: none;*/
    line-height: 32px; }
  .accordion-blocks > ul > li.file h4 {
    min-height: 32px; }
  .content hr {
    margin: 30px 0; }
  /*end INNER*/
  /*start BLOG*/
  .extra-info li {
    margin: 0 0 10px 0;
    width: 100%; }
  #news aside {
    margin-top: 50px; }
    #news aside h3.title {
      font-size: 18px; }
  .popular-post li {
    margin-bottom: 30px; }
  .popular-post li:last-child {
    margin-bottom: 0; }
  .popular-post li .img {
    margin-bottom: 15px; }
  /*end BLOG*/
  /*start INFORMATION*/
  #informacion article .content.gray .img {
    margin: 0 0 30px 0; }
  /*end INFORMATION*/
  /*start STUDIES*/
  #estudios-procedimientos .wrap-title .txt {
    margin: 0;
    text-align: center; }
  #estudios-procedimientos .wrap-title .title:after {
    margin: 20px auto 30px; }
  #estudios-procedimientos .col-md-4 .der {
    margin-top: 50px; }
  #estudios-procedimientos .col-md-4 .der .txt {
    margin: 0; }
  .grid {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  /*end STUDIES*/
  #staff-list .thumbnail {
    height: auto; } }

/*end IPHONE HORIZONTAL*/
/*start IPAD VERTICAL*/
@media (min-width: 768px) and (max-width: 979px) {
  /*start HEADER*/
  header #wrap > .flex {
    width: 95%; }
  header #wrap.flex .navbar-toggle {
    display: block !important; }
  header #navbar {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease; }
  header #navbar.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  #navbar > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  header #navbar > ul > li > a {
    font-size: 1.5em;
    padding: 15px 0;
    text-align: center;
    display: block; }
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    min-width: 0;
    width: auto; }
  .dropdown-submenu:hover > .dropdown-menu,
  .dropdown.open .dropdown-submenu > .dropdown-menu {
    display: block !important;
    left: 0; }
  .dropdown-submenu > a:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  /*end HEADER*/
  /*start HOME*/
  .slider-home .wrap-pattern {
    width: 60%; }
  .home-blocks .wrap-pattern .btn {
    padding: 10px 15px; }
  .home-blocks .block-item {
    padding-left: 0;
    border-left: none; }
  #wrap-block02 > .row.flex {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  #wrap-block02 .wrap-pattern {
    margin-bottom: 25px; }
  #wrap-block05 .wrap-pattern {
    margin-bottom: 50px; }
  /*end HOME*/
  /*start INNER*/
  .accordion-blocks > ul > li.file h4:after {
    display: none; }
  .accordion-blocks > ul > li.file h4 {
    min-height: 32px; }
  /*end INNER*/
  /*start BLOG*/
  .extra-info li {
    margin-left: 10px; }
  /*end BLOG*/ }

/*end IPAD VERTICAL*/
/*start BIG SCREEN*/
@media (min-width: 1260px) and (max-width: 1290px) {
  .slider-home .bxitem {
    background-size: contain;
  }
}

/*end BIG SCREEN*/
/*-----------end MEDIA QUERIES-----------*/
/*-----------CALENDAR-----------*/
.has-event a {
  color: red !important; }

.btn.btn-blue {
  background-color: #1879BB;
  color: white;
  min-width: 230px;
  border-color: #1879BB;
  margin-bottom: 10px;
  margin-right: 10px; }

.btn.btn-blue:hover {
  color: #1879BB;
  background-color: white; }

.img-pdf-right li a {
  min-width: 100%;
  display: block;
  background-image: url(../images/icon-pdf.png);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 17px 20px; }

ul.menu-filtro-categorias li {
  margin-top: 4px; }

ul.menu-filtro-categorias li:not(.selected) a {
  background-color: #EAEAEA; }

ul.menu-filtro-categorias li.selected a {
  color: #EAEAEA;
  background-color: #727277; }

ul.menu-filtro-categorias li a {
  padding: 18px; }
