@import url(https://fonts.googleapis.com/css?family=Nunito);
@charset "UTF-8";
body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.btn-white {
  background-color: white;
  color: #E3701F;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.btn-orange {
  background-color: #E3701F;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-color: #E3701F;
}
.btn-orange:hover {
  background-color: #E3701F;
  color: #333;
  font-size: 1.1rem;
  font-weight: 700;
  border-color: #333;
}

section.separador {
  padding-top: 70px;
  padding-bottom: 70px;
}

section.titulo {
  padding: 5rem 0rem;
  color: #7B7B7B;
  font-weight: 900;
  font-size: 4rem;
  text-align: center;
}

@media (max-width: 991px) {
  section.separador {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.col-izquierda {
  margin-right: 2rem;
}

.col-derecha {
  margin-left: 2rem;
}

@media (max-width: 991px) {
  .col-izquierda {
    margin-right: 0rem;
  }

  .col-derecha {
    margin-left: 0rem;
  }
}
#header {
  background-color: #fff;
  padding: 1rem 0rem;
  transition: 0.3s;
}
#header.header-scrolled {
  padding: 0.7rem 0rem;
}
#header .logo {
  margin-left: 0 !important;
}

@media (max-width: 991px) {
  #header {
    padding: 0rem 0rem;
  }
  #header .logo {
    margin-left: auto !important;
  }
}
.me-auto {
  margin-right: auto !important;
  margin-left: auto;
}

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar li:hover > a {
  color: #E3701F;
  border-color: #E3701F;
}
.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}
.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #E3701F;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 7px 2px;
  text-transform: uppercase;
  line-height: 134%;
}
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  color: #E3701F;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
}
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover {
  color: #E3701F;
  border-color: #E3701F;
  font-weight: 700;
}
.navbar .active {
  color: #E3701F;
  border-color: #E3701F;
}
.navbar .active:focus {
  color: #E3701F;
  border-color: #E3701F;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul li:hover > a {
  color: #E3701F;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #E3701F;
  border: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover {
  color: #E3701F;
}
.navbar .dropdown ul .active:hover {
  color: #E3701F;
}
.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;
}

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

.mobile-nav-toggle.fa-times {
  color: white;
}

.navbar.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar.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.navbar-mobile > ul > li {
  padding: 0;
}
.navbar.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #333;
  border: none;
}
.navbar.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #E3701F;
  border: none;
}
.navbar.navbar-mobile a:hover {
  color: #E3701F;
}
.navbar.navbar-mobile .active {
  color: #E3701F;
}
.navbar.navbar-mobile li:hover > a {
  color: #E3701F;
}
.navbar.navbar-mobile .getstarted {
  margin: 15px;
}
.navbar.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar.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.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar.navbar-mobile .dropdown ul li:hover > a {
  color: #E3701F;
}
.navbar.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar.navbar-mobile .dropdown ul a:hover {
  color: #E3701F;
}
.navbar.navbar-mobile .dropdown ul .active:hover {
  color: #E3701F;
}
.navbar.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    padding-left: 10px;
  }
  .mobile-nav-toggle.fa-times {
    position: absolute;
    top: 25px;
    right: 15px;
    z-index: 9999;
  }

  .navbar ul {
    display: none;
  }
}
/*# Búsqueda */
.searchbar {
  position: relative;
  min-width: 50px;
  width: 0%;
  height: 50px;
  float: right;
  overflow: hidden;
  transition: width 0.3s;
  border: none;
  background-color: transparent;
}

.searchbar-input {
  top: 0;
  right: 0;
  border: 0;
  outline: 0;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0px 55px 0px 20px;
  font-size: 1rem;
  color: #333;
}
.searchbar-input::-webkit-input-placeholder {
  color: #333;
}
.searchbar-input:-moz-placeholder {
  color: #333;
}
.searchbar-input::-moz-placeholder {
  color: #333;
}
.searchbar-input:-ms-input-placeholder {
  color: #333;
}

.searchbar-icon {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  font-size: 1.4rem;
  right: 0;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  color: #E3701F;
  border: none;
  transition: width 0.3s;
}
.searchbar-icon i.fa::before {
  content: "\f002";
}

.searchbar-submit {
  width: 50px;
  height: 50px;
  display: none;
  position: absolute;
  top: 0;
  font-size: 22px;
  right: 0;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  color: #E3701F;
  border: none;
  background-color: transparent;
  margin-right: 50px;
  background-color: #f2f2f2;
  border-radius: 5px;
}

.searchbar-open {
  width: 60%;
  max-width: 250px;
}
.searchbar-open .searchbar-icon {
  color: #999999;
}
.searchbar-open .searchbar-icon i.fa::before {
  content: "\f00d";
}
.searchbar-open .searchbar-submit {
  display: block;
}

.search-mobile {
  display: none;
}

.search-mobile-container {
  display: none;
}

@media (max-width: 991px) {
  .searchbar {
    display: none;
  }

  .search-mobile {
    display: block;
    padding: 20px 0px;
  }
  .search-mobile .searchbar-icon {
    position: relative;
  }

  .searchbar-icon.opened {
    color: #999999;
  }
  .searchbar-icon.opened i.fa::before {
    content: "\f00d";
  }

  .search-mobile-container {
    display: none;
  }
  .search-mobile-container.searchbartop-open {
    display: block;
  }
  .search-mobile-container .btn {
    border-radius: 0 0px 0px 0;
    background-color: #f2f2f2;
    border: #f2f2f2;
    color: #E3701F;
  }
  .search-mobile-container .form-control {
    border-radius: 0 0px 0px 0;
    border: #f2f2f2;
  }
}
.hero {
  width: 100%;
  background-size: cover;
  background-color: rgba(227, 112, 31, 0.8);
  color: #fff;
  padding-top: 170px;
  border-bottom-left-radius: 80px;
  padding-bottom: 10px;
  position: relative;
  display: block;
  position: relative;
  overflow: hidden;
}
.hero .background-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  position: absolute;
  top: 25px;
  left: 0px;
  padding-bottom: 0px;
  border-bottom-left-radius: 80px;
}
.hero h2 {
  font-weight: 700;
  font-size: 2rem;
  text-align: right;
}
.hero .hero-text {
  font-size: 1rem;
  line-height: 150%;
  padding-top: 2rem;
  position: relative;
}
.hero .hero-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 0.5em;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  z-index: 10;
}

@media (max-width: 767px) {
  .hero {
    width: 100%;
    min-height: 50vh;
    background-size: cover;
    background-color: rgba(227, 112, 31, 0.8);
    color: #fff;
    padding-top: 70px;
    border-bottom-left-radius: 50px;
    padding-bottom: 10px;
    position: relative;
    display: block;
    position: relative;
  }
  .hero .background-video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
    position: absolute;
    top: 20px;
    left: 0px;
    padding-bottom: 0px;
    border-bottom-left-radius: 50px;
  }
  .hero h2 {
    font-size: 2rem;
    text-align: left;
  }
}
.swiper-container {
  width: 100%;
  height: 100%;
  padding-right: 2rem;
}

.inner-swiper {
  overflow: hidden;
  margin-left: -30px;
  margin-right: -30px;
}

.wrapper-swiper {
  position: relative;
  margin-left: 10vw;
  margin-right: 10vw;
}

.swiper-slide {
  position: relative;
}
.swiper-slide .card {
  margin: 1em;
  width: 100%;
  border: none;
  border-radius: 1rem;
  transition: transform 0.2s;
  /* Animation */
  box-shadow: 2px 2px 6px -1px rgba(0, 0, 0, 0.48);
}
.swiper-slide .card:hover {
  transform: scale(1.02);
}
.swiper-slide .card a {
  text-decoration: none;
}
.swiper-slide .card a .image-wrapper {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.swiper-slide .image-wrapper {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #E5E5E5;
  border-radius: 1rem 1rem 0 0;
}
.swiper-slide .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.swiper-slide .card-body {
  color: #7B7B7B;
  font-size: 0.8rem;
  max-height: 200px;
  overflow: hidden;
  min-height: 200px;
  display: block;
}
.swiper-slide .card-body .fecha {
  color: #7B7B7B;
  font-size: 0.8rem;
}
.swiper-slide .card-body h5 {
  color: #E3701F;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 700;
  line-height: 1em;
  height: 3em;
  overflow: hidden;
}
.swiper-slide .card-body h5 a {
  text-decoration: none;
  color: #E3701F;
}

@media (max-width: 767px) {
  .wrapper-swiper {
    margin-left: 0vw;
    margin-right: 0vw;
  }

  .swiper-container {
    width: 100%;
    height: 100%;
    padding-right: 0.5rem;
  }

  .inner-swiper {
    overflow: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .swiper-slide {
    display: block;
  }
  .swiper-slide .card {
    margin: 0.8rem 0;
    width: 100%;
  }
  .swiper-slide .image-wrapper {
    height: auto;
    min-height: 240px;
    overflow: hidden;
    display: block;
  }
  .swiper-slide .image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.swiper-button-next {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 25px;
  border-radius: 25px;
  background-size: 60%;
}
.swiper-button-next:after {
  color: #fff;
  font-size: 16px;
}

.swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 25px;
  border-radius: 25px;
  background-size: 60%;
}
.swiper-button-prev:after {
  color: #fff;
  font-size: 16px;
}

.swiper-button-next {
  right: -5vw !important;
}

.swiper-button-prev {
  left: -5vw !important;
}

footer {
  background-color: #E3701F;
  color: white;
  border-top-right-radius: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
}
footer h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
footer .form-email {
  padding-right: 5rem;
  position: relative;
}
footer .form-email::after {
  content: "";
  width: 1px;
  height: 90%;
  margin: auto;
  margin-top: auto;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0%;
  margin-top: 5%;
}
footer .btn-search {
  background-color: white;
  color: #E3701F;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.5rem 1.3rem;
  border-top-left-radius: 0px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
footer .form-search {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(124, 22, 0, 0.2);
  background-clip: padding-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
footer .direcciones {
  margin-left: 5rem;
  padding-top: 1rem;
  padding-bottom: 0rem;
}
footer .direcciones .address {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 120%;
}
footer .social-items ul {
  display: inline;
  list-style: none;
  padding: 0px;
}
footer .social-items ul li {
  display: inline-block;
}
footer .social-items ul li a .icon {
  width: 45px;
  height: 32px;
  display: block;
  background-image: url("../img/icons.png");
  background-repeat: no-repeat;
}
footer .social-items ul li a .icon.icon-email {
  background-position: 0px 0px;
}
footer .social-items ul li a .icon.icon-instagram {
  background-position: -56px 0px;
}
footer .social-items ul li a .icon.icon-facebook {
  background-position: -104px 0px;
}
footer .social-items ul li a .icon.icon-twitter {
  background-position: -148px 0px;
}

@media (max-width: 767px) {
  footer {
    padding-top: 20px;
    padding-bottom: 30px;
    border-top-right-radius: 50px;
  }
  footer h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  footer .form-email {
    padding-right: 1rem;
  }
  footer .form-email::after {
    display: none;
  }
  footer .direcciones {
    margin-left: 0;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #E3701F;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  transition: all 0.4s;
  border: 2px solid #fff;
  text-decoration: none;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
  text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment {
  width: 100%;
}
.appointment .form-group {
  padding-bottom: 8px;
}
.appointment .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.appointment .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.appointment .error-message br + br {
  margin-top: 25px;
}
.appointment .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.appointment .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.appointment .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;
}

.top-spacer {
  height: 220px;
}

.top-spacer-naranja {
  height: 220px;
  background-color: #E3701F;
}

.fixed {
  position: fixed;
}

.spacer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 10vw;
  padding-right: 10vw;
}

.bloque {
  color: #7B7B7B;
  font-size: 0.9rem;
  line-height: 180%;
  padding-bottom: 1rem;
}
.bloque p {
  line-height: 180%;
  text-align: justify;
}
.bloque h2 {
  color: #E3701F;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 0rem;
}

.img-cuadrada {
  border-radius: 1rem;
  position: relative;
  width: 100%;
  background-color: #e5e5e5;
  z-index: -1;
  overflow: auto;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.img-cuadrada:after {
  content: "";
  display: block;
  padding-bottom: 90%;
}

.outer-naranja {
  background-image: url(../img/blanco-naranja.gif);
  background-repeat: repeat-y;
  background-position: 0px 0px;
  background-size: 100%;
}
.outer-naranja .inner-orange {
  background-color: #E3701F;
  border-bottom-left-radius: 80px;
}

.wrapper-topmenu {
  background-image: url(../img/blanco-naranja.gif);
  background-repeat: repeat-y;
  background-position: 0px 0px;
  background-size: 100%;
  width: 100%;
}
.wrapper-topmenu .topmenu {
  background-color: #E3701F;
  padding-top: 140px;
  padding-bottom: 20px;
}
.wrapper-topmenu .topmenu .inner-topmenu {
  color: #fff;
}
.wrapper-topmenu .topmenu .inner-topmenu ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper-topmenu .topmenu .inner-topmenu ul li a {
  display: block;
  padding: 0.5rem 2rem 0.5rem 2rem;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}
.wrapper-topmenu .topmenu .inner-topmenu ul li a.active {
  background-color: #fff;
  color: #E3701F;
}

@media (max-width: 767px) {
  .wrapper-topmenu .topmenu .inner-topmenu ul {
    list-style: none;
    display: block;
    align-items: center;
  }
  .wrapper-topmenu .topmenu .inner-topmenu ul li {
    padding-bottom: 0.7rem;
  }
}
.bloque-naranja {
  padding-bottom: 4rem;
  color: #fff;
}
.bloque-naranja .titulo {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.bloque-naranja .persona-item {
  width: 33%;
  color: #fff;
  text-align: center;
  padding-top: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.bloque-naranja .persona-item .foto {
  width: 100%;
  max-width: 150px;
  margin: auto;
  border-radius: 50%;
  background-color: #f2f2f2;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 1rem;
}
.bloque-naranja .persona-item .foto div {
  display: none;
}
.bloque-naranja .persona-item .foto:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.bloque-naranja .persona-item .detalles {
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.9rem;
  font-weight: 400;
}
.bloque-naranja .persona-item .detalles h4 {
  font-weight: 700;
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .bloque-naranja .persona-item {
    width: auto;
    text-align: center;
    padding-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .bloque-naranja .persona-item .foto {
    width: 100%;
    max-width: 125px;
  }
  .bloque-naranja .persona-item .foto:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .bloque-naranja .persona-item .detalles {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
  }
  .bloque-naranja .persona-item .detalles h4 {
    font-weight: 700;
    font-size: 0.9rem;
  }
}
.lista-localidades {
  list-style: none;
}
.lista-localidades li {
  font-size: 1rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.lista-localidades li:before {
  content: "›";
  display: block;
  float: left;
  margin: 0 6px 0 0;
}

.novedades {
  background-color: rgba(227, 112, 31, 0.1294117647);
  /**background-image: url(../img/bottom-novedades.gif);**/
  background-repeat: repeat-x;
  background-position: 0% 100%;
}
.novedades .bloque-novedades {
  padding-left: 10vw;
  padding-right: 10vw;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.novedades .no-news {
  padding: 4rem 4rem;
  font-size: 1.2rem;
  background-color: #fff;
  border: 1px solid #f2f2f2;
}

.bloque-novedad {
  position: relative;
}
.bloque-novedad .card {
  margin: 1em;
  width: 100%;
  border: none;
  border-radius: 1rem;
  transition: transform 0.2s;
  /* Animation */
  box-shadow: 2px 2px 6px -1px rgba(0, 0, 0, 0.48);
}
.bloque-novedad .card:hover {
  transform: scale(1.02);
}
.bloque-novedad .card a {
  text-decoration: none;
}
.bloque-novedad .card a .image-wrapper {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.bloque-novedad .image-wrapper {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #E5E5E5;
  border-radius: 1rem 1rem 0 0;
}
.bloque-novedad .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.bloque-novedad .card-body {
  color: #7B7B7B;
  font-size: 0.8rem;
  max-height: 200px;
  overflow: hidden;
  min-height: 200px;
  display: block;
}
.bloque-novedad .card-body .fecha {
  color: #7B7B7B;
  font-size: 0.8rem;
}
.bloque-novedad .card-body h5 {
  color: #E3701F;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  line-height: 1em;
  height: 3em;
  overflow: hidden;
}
.bloque-novedad .card-body h5 a {
  text-decoration: none;
  color: #E3701F;
}

.novedades-anterior {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
  vertical-align: middle;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: start;
}
.novedades-anterior::before {
  font-size: 1.3rem;
  padding-right: 0.3rem;
  content: "\f0a8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.novedades-siguiente {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
  vertical-align: middle;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: end;
}
.novedades-siguiente::after {
  content: "\f0a9";
  font-size: 1.3rem;
  padding-left: 0.3rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.paginado {
  padding-top: 2rem;
  padding-bottom: 3rem;
  padding-left: 10vw;
  padding-right: 10vw;
}
.paginado ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.paginado ul li {
  display: inline-block;
  font-size: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
.paginado ul li span::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #E3701F;
  background-color: #fff;
  display: inline-block;
  border-radius: 5px;
}
.paginado ul li span.active::after {
  background-color: #E3701F;
}
.paginado ul li a::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #E3701F;
  background-color: #fff;
  display: inline-block;
  border-radius: 5px;
}
.paginado ul li a.active::after {
  background-color: #E3701F;
}

.single-post .single-post-meta {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}
.single-post .single-post-meta .single-post-meta-img {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 100%;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.single-post .single-post-meta .single-post-meta-details .single-post-meta-details-name {
  font-size: 0.9rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.single-post .single-post-meta .single-post-meta-details .single-post-meta-details-date {
  font-size: 0.75rem;
  line-height: 1;
}
.single-post .single-post-meta-links {
  font-size: 1.25rem;
}
.single-post .single-post-meta-links a {
  color: #c5ccd6;
  margin-left: 0.5rem;
  text-decoration: none;
}
.single-post .single-post-meta-links a:hover {
  color: #69707a;
}
.single-post .single-post-text {
  font-size: 1.1rem;
}
.single-post .single-post-text p {
  margin-bottom: 1.5rem;
}
.single-post .single-post-text h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-post .single-post-text .h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-post .single-post-text h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-post .single-post-text .h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-post .single-post-text h4 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-post .single-post-text .h4 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-post .single-post-text h5 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-post .single-post-text .h5 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-post .single-post-text h6 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-post .single-post-text .h6 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .bloque-novedad {
    display: block;
  }
  .bloque-novedad .card {
    margin: 0.8rem 0;
    width: 100%;
  }
  .bloque-novedad .image-wrapper {
    height: auto;
    min-height: 240px;
    overflow: hidden;
    display: block;
  }
  .bloque-novedad .image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .single-post .single-post-meta-links a {
    margin-left: 0.1rem;
  }
}
@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
svg:not(:root).svg-inline--fa {
  overflow: visible;
}

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}
.svg-inline--fa .fa-primary {
  fill: var(--fa-primary-color, currentColor);
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}
.svg-inline--fa .fa-secondary {
  fill: var(--fa-secondary-color, currentColor);
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}
.svg-inline--fa mask .fa-primary {
  fill: black;
}
.svg-inline--fa mask .fa-secondary {
  fill: black;
}

.svg-inline--fa.fa-lg {
  vertical-align: -0.225em;
}

.svg-inline--fa.fa-w-1 {
  width: 0.0625em;
}

.svg-inline--fa.fa-w-2 {
  width: 0.125em;
}

.svg-inline--fa.fa-w-3 {
  width: 0.1875em;
}

.svg-inline--fa.fa-w-4 {
  width: 0.25em;
}

.svg-inline--fa.fa-w-5 {
  width: 0.3125em;
}

.svg-inline--fa.fa-w-6 {
  width: 0.375em;
}

.svg-inline--fa.fa-w-7 {
  width: 0.4375em;
}

.svg-inline--fa.fa-w-8 {
  width: 0.5em;
}

.svg-inline--fa.fa-w-9 {
  width: 0.5625em;
}

.svg-inline--fa.fa-w-10 {
  width: 0.625em;
}

.svg-inline--fa.fa-w-11 {
  width: 0.6875em;
}

.svg-inline--fa.fa-w-12 {
  width: 0.75em;
}

.svg-inline--fa.fa-w-13 {
  width: 0.8125em;
}

.svg-inline--fa.fa-w-14 {
  width: 0.875em;
}

.svg-inline--fa.fa-w-15 {
  width: 0.9375em;
}

.svg-inline--fa.fa-w-16 {
  width: 1em;
}

.svg-inline--fa.fa-w-17 {
  width: 1.0625em;
}

.svg-inline--fa.fa-w-18 {
  width: 1.125em;
}

.svg-inline--fa.fa-w-19 {
  width: 1.1875em;
}

.svg-inline--fa.fa-w-20 {
  width: 1.25em;
}

.svg-inline--fa.fa-pull-left {
  margin-right: 0.3em;
  width: auto;
}

.svg-inline--fa.fa-pull-right {
  margin-left: 0.3em;
  width: auto;
}

.svg-inline--fa.fa-border {
  height: 1.5em;
}

.svg-inline--fa.fa-li {
  width: 2em;
}

.svg-inline--fa.fa-fw {
  width: 1.25em;
}

.fa-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: 1em;
}
.fa-layers svg.svg-inline--fa {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center center;
}

.fa-layers-counter {
  display: inline-block;
  position: absolute;
  text-align: center;
  background-color: #ff253a;
  border-radius: 1em;
  box-sizing: border-box;
  color: #E3701F;
  height: 1.5em;
  line-height: 1;
  max-width: 5em;
  min-width: 1.5em;
  overflow: hidden;
  padding: 0.25em;
  right: 0;
  text-overflow: ellipsis;
  top: 0;
  transform: scale(0.25);
  transform-origin: top right;
}

.fa-layers-text {
  display: inline-block;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.fa-layers-bottom-right {
  bottom: 0;
  right: 0;
  top: auto;
  transform: scale(0.25);
  transform-origin: bottom right;
}

.fa-layers-bottom-left {
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
  transform: scale(0.25);
  transform-origin: bottom left;
}

.fa-layers-top-right {
  right: 0;
  top: 0;
  transform: scale(0.25);
  transform-origin: top right;
}

.fa-layers-top-left {
  left: 0;
  right: auto;
  top: 0;
  transform: scale(0.25);
  transform-origin: top left;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fas.fa-pull-left {
  margin-right: 0.3em;
}

.far.fa-pull-left {
  margin-right: 0.3em;
}

.fal.fa-pull-left {
  margin-right: 0.3em;
}

.fab.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

.fas.fa-pull-right {
  margin-left: 0.3em;
}

.far.fa-pull-right {
  margin-left: 0.3em;
}

.fal.fa-pull-right {
  margin-left: 0.3em;
}

.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

.fa-stack {
  display: inline-block;
  height: 2em;
  position: relative;
  width: 2.5em;
}

.fa-stack-1x {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.fa-stack-2x {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.svg-inline--fa.fa-stack-1x {
  height: 1em;
  width: 1.25em;
}

.svg-inline--fa.fa-stack-2x {
  height: 2em;
  width: 2.5em;
}

.fa-inverse {
  color: #E3701F;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.svg-inline--fa.fa-swap-opacity .fa-primary {
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}
.svg-inline--fa.fa-swap-opacity .fa-secondary {
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}

.fad.fa-inverse {
  color: #E3701F;
}
