/*--------------------------------------------------------------
# Google Fonts
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Oswald:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;700&family=Open+Sans:wght@300;400;600;700&family=Oswald:wght@300;400;600;700&display=swap");

/* 
font-family: 'Open Sans', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Manrope', sans-serif;
*/

:root {
  --azul: #005588;
  --azul-light: #0077b3;
  --blanco: #ffffff;
  --amarillo: #e8bf08;
  --naranja: #ff9000;
  --oswald: "Oswald", sans-serif;
  --open: "Open Sans", sans-serif;
  --man: "Manrope", sans-serif;
  /* otros */
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #2f3138;
  font-family: var(--man);
  font-size: 16px;
}

html {
  overflow-x: hidden;
}

a {
  color: var(--azul-light);
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: var(--azul);
  outline: none;
  text-decoration: none;
}

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

.avatar {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
}

.text-mute {
  color: #9397ad !important;
}

caption {
  font-size: 0.9rem;
  margin: 10px 0;
}

hr {
  opacity: 0.15 !important;
}

/*--------------------------------------------------------
        # Font Size
----------------------------------------------------------*/

.fs-sm {
  font-size: 0.875rem !important;
}

.fs-md {
  font-size: 1rem !important;
}

.fs-lg {
  font-size: 1.125rem !important;
}

.fs-xl {
  font-size: 1.3rem !important;
}

.fs-xxl {
  font-size: 1.5rem !important;
}

/*--------------------------------------------------------
        # Breadcrumbs  Section
----------------------------------------------------------*/

.breadcrumbs {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
  background-color: rgba(248, 249, 250, 1) !important;
}

.breadcrumb {
  background-color: rgba(248, 249, 250, 1) !important;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/

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

.section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  width: 60%;
  margin: 0 auto 30px;
}

/* Botón ir arriba */

.ir-arriba {
  padding: 5px 10px;
  display: inline-block;
  background: var(--naranja);
  color: var(--azul);
  font-weight: 700;
  position: fixed;
  font-size: 1.5rem;
  bottom: 20px;
  right: 20px;
  display: none;
  cursor: pointer;
  z-index: 10;
}

/*--------------------------------------------------------
# Hero Section
----------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  background: url(../images/fondos/4.jpg) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#hero:before {
  content: "";
  background: linear-gradient(rgba(59, 107, 250, 0.6), rgba(9, 38, 132, 0.9));
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero i {
  font-size: 9rem;
  color: #fff;
}

#hero h1 {
  color: #fff;
  font-family: var(--oswald);
  font-size: 4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

#hero h1 span {
  color: var(--naranja);
}

#hero p {
  color: #ebebeb;
  font-size: 1.8rem;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--naranja) 50%,
    rgba(101, 111, 150, 0.15) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--blanco);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(163, 163, 163, 0.4);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid var(--naranja);
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

#hero .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid var(--naranja);
}

#hero .about-btn:hover {
  background: var(--naranja);
  color: #fff;
}

/* cog */

#hero .fa-cog {
  position: absolute;
  font-size: 20rem;
  opacity: 0.15;
  color: #fff;
  animation: rotate 10s linear infinite;
}

#hero .nut1 {
  top: 3%;
  left: -12rem;
}

#hero .nut2 {
  bottom: 3%;
  right: -12rem;
  animation-direction: reverse;
}

/* Keyframes */

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes waves {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 100rem;
  }
}

/* Media queries */

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

@media (max-width: 991px) {
  #hero .hero-container {
    top: 70px;
  }
  #hero i {
    font-size: 7rem;
  }
  #hero h1 {
    font-size: 2.9rem;
    width: 90%;
  }
  #hero p {
    font-size: 1.6rem;
    line-height: 1.2;
    width: 90%;
  }
  #hero .fa-cog {
    font-size: 17rem;
  }
}

/*--------------------------------------------------------
# Servicios en línea Section
----------------------------------------------------------*/

#servicios.tarjeta {
  background: #aa076b;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #61045f, #aa076b);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #61045f, #aa076b);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

#servicios.tarjeta ul {
  list-style: none;
}

#servicios.tarjeta ul li {
  padding: 5px 0;
}

#servicios.tarjeta ul li a:hover {
  color: #1c378f;
}

#servicios.tarjeta ul li a i {
  color: rgba(9, 38, 132, 0.6);
}

#servicios.tarjeta ul li a:hover i {
  color: rgba(9, 38, 132, 0.9);
}

#servicios .card .card-footer {
  text-align: center;
  padding: 20px 0;
  background-color: none;
  border-top: 1px solid rgba(0, 0, 0, 0.075);
}

#servicios .card.servicios-texto {
  background: transparent;
  border-radius: 8px;
}

#servicios .card.servicios-texto P {
  font-size: 1.2rem;
}

#servicios .card.servicios-texto img {
  width: 200px;
}

/*--------------------------------------------------------
# Modales
----------------------------------------------------------*/

.modal .modal-header {
  background: #28449e;
  color: #fff;
}

.modal .modal-dialog .modal-content .modal-body ul li {
  border-bottom: 1px solid #dee2e6;
  padding: 0.25rem !important;
  list-style: none;
}

.modal .modal-dialog .modal-content .modal-body ul li:last-child {
  border-bottom: none;
}

.modal .modal-dialog .modal-content .modal-body ul li:hover {
  background: #e7f1ff;
  transition: all 0.3s ease;
}

/*--------------------------------------------------------
# Call to Action Sicere Section
----------------------------------------------------------*/

#cta {
  background: linear-gradient(rgba(59, 107, 250, 0.6), rgba(9, 38, 132, 0.9)),
    url(../images/background/1.jpg) no-repeat;
  background-size: cover;
}

#cta .cta-texto {
  color: #fff;
  text-align: left;
}

@media screen and (max-width: 992px) {
  #cta .cta-texto {
    text-align: center;
    padding: 3rem;
  }
}



#cta p span {
  background-color: orange;
  font-size: 4rem;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 768px) {
  #cta .cta-texto h2 {
    font-size: 3rem;
  }
  #cta p span {
    font-size: 2.5rem;
  }
}


.cta-01 {
  background: left bottom url(../images/cta/1.png) no-repeat;
  background-size: contain;
}

.flip-h {
  transform: scaleX(-1);
}

/*--------------------------------------------------------
# Cards Tarjetas Section
----------------------------------------------------------*/

.card-img {
  overflow: hidden;
}

.card-img img {
  transform: scale(1);
  transition: all 0.3s ease;
  border-radius: 0px;
  overflow: hidden;
}

.card-img img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------
# Faqs Section
----------------------------------------------------------*/

#faqs .accordian {
  margin: 0 20px;
}

#faqs .accordian .card {
  margin-bottom: 20px;
  border-radius: 0;
  width: 100%;
}

#faqs .accordian .card .card-header {
  border-radius: 0;
  border-bottom: none;
  padding: 0;
}

#faqs .accordian .card .card-header h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 300 !important;
  cursor: pointer;
  color: #ffffff;
  position: relative;
  background-color: #007bff;
  margin: 0;
  padding: 20px 70px 20px 20px;
  line-height: 1.5;
}

#faqs .accordian .card .card-header {
  position: relative;
}

#faqs .accordian .card .card-header span {
  position: absolute;
  right: 20px;
  top: 12px;
  height: 25px;
  width: 25px;
  color: #3343a2;
  background-color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 13px;
}

#faqs .accordian .card .card-body {
  padding: 20px;
}

#faqs .accordian .card .card-body {
  display: none;
}

/*open one card by default*/

#faqs .accordian .card:nth-child(1) .card-body {
  display: block;
}

#faqs .accordian .card .card-body p {
  font-size: 15px;
  line-height: 24px;
  color: #444444;
  margin: 0px;
}

/*--------------------------------------------------------
# Swipper Anuncios Section
----------------------------------------------------------*/

.swiper-container {
  width: 100%;
  height: 100%;
  max-height: 420px;
  position: relative;
  background: linear-gradient(
    270deg,
    rgba(247, 249, 255, 1) 0%,
    rgba(242, 246, 255, 1) 100%
  );
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.slider-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  border-radius: 10px;
  opacity: 0;
  overflow: hidden;
  cursor: grab;
}

.slider-item-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.4s;
}

.slider-item-content > * {
  opacity: 0;
  transform: translateY(20px);
}

.swiper-slide-active .slider-item-content > * {
  transform: translateY(0px);
  opacity: 1;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  width: auto !important;
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translatex(-50%);
  z-index: 1;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  line-height: 30px;
  margin-right: 8px;
  display: inline-block;
  background: rgba(255, 185, 0, 0.3);
  border-radius: 0;
  border-radius: 50%;
  font-size: 12px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.2s;
}

.swiper-pagination-bullet-active {
  width: 20px;
  background: #ffb200;
  border-radius: 10px;
}

.slider-buttons {
  width: 100%;
  padding-top: 8px;
  display: flex;
  position: absolute;
  top: 100%;
  justify-content: flex-end;
}

.swiper-button-next1,
.swiper-button-prev2 {
  margin-left: 4px;
  background-color: transparent;
  border: none;
  color: rgb(178, 27, 27);
  cursor: pointer;
  outline: none;
}

.swiper-button-next1::before,
.swiper-button-prev2::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  /* top:50%; */
  /* transform:translatey(-50%); */
  background-color: #fff;
  transition: 0.2s;
}

.swiper-button-next1:hover::before,
.swiper-button-prev2:hover::before {
  width: 100%;
}

@media screen and (max-width: 520px) {
  .swiper-button-next1:hover:before,
  .swiper-button-prev2:hover:before {
    display: none;
  }
}

/*--------------------------------------------------------
# Swipper Últimoas noticias Section
----------------------------------------------------------*/

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

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.card {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: #fff;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.image-content {
  position: relative;
  grid-row-gap: 5px;
  padding: 25px 0;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
}

.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070f4;
}

.name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.description {
  font-size: 14px;
  color: #707070;
  text-align: center;
}

a.button {
  text-decoration: none;
}

.button {
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  background-color: #4070f4;
  border-radius: 3px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.button:hover {
  background: #1650f0;
  color: #fff;
}

.swiper-navBtn {
  color: #6e93f7;
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: #4070f4;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: #6e93f7;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4070f4;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }
  .swiper-navBtn {
    display: none;
  }
}

/*--------------------------------------------------------
# Consultas varias Section
----------------------------------------------------------*/

.consultas-varias {
  background-color: #f5f5f5;
}

.swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-wrapper .swiper-slide img.mySlide {
  width: 350px;
  height: auto;
}

.accordion-button {
  font-size: 1.3rem !important;
}

/*--------------------------------------------------------
# Teléfonos Sucursales Section
----------------------------------------------------------*/

#contacto-regiones li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dee2e6;
  padding: 0.25rem !important;
}

#contacto-regiones li:last-child {
  border-bottom: none;
}

#contacto-regiones li:hover {
  background: #e7f1ff;
  transition: all 0.3s ease;
}

/*--------------------------------------------------------
# Audiograma Section
----------------------------------------------------------*/

#audio-gramas .nav-tabs {
  margin-bottom: 25px;
}

#audio-gramas .nav-tabs .nav-item.show .nav-link,
#audio-gramas .nav-tabs .nav-link.active {
  border: none;
  border-color: transparent;
  border-bottom: 5px solid var(--naranja);
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

#audio-gramas .nav-tabs .nav-item {
  margin: 0 10px;
  border-radius: 10px;
}

#audio-gramas .tab-content {
  padding: 15px;
  border-radius: 0.5rem;
  background-color: #f3f6ff !important;
}

.box {
  position: relative;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box i {
  font-size: 6rem;
  color: var(--naranja);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.capa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.bi-play-circle-fill::before {
  background: white;
  border-radius: 50%;
}

/*--------------------------------------------------------
# Blog
----------------------------------------------------------*/

.blog article.post {
  padding-left: 130px;
  position: relative;
  padding-bottom: 40px;
}

.blog article.post .post-left {
  position: absolute;
  width: 100px;
  left: 0;
  top: 0;
  padding: 0 10px;
}

.img-circle {
  border-radius: 50%;
}

.blog article.post .meta div {
  margin-right: 5px;
}

.blog article.post .meta .date {
  font-size: 14px;
  font-weight: 600;
}

.blog article.post p {
  font-size: 1rem;
  line-height: 26px;
  color: #444444;
}

.blog article.post ul {
  list-style-type: square;
  margin-bottom: 0;
}

.blog article.post ul li {
  margin-left: 0px;
  margin-bottom: 15px;
}

.blog article.post ul li:last-child {
  margin-bottom: 0px;
}

.blog article.post .categoria {
  text-transform: uppercase;
  font-weight: 700;
}

.blog article.post .categoria::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 35, 71, 0.2);
  margin: 10px 0;
}

.blog .post h3 {
  font-size: 1.6rem;
  color: #0b0f19;
  margin-bottom: 10px;
}

.blog .post h5 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #444444;
  margin: 20px 0;
}

.blog article.post .post-left .author span.name {
  display: block;
  font-size: 15px;
  line-height: 1;
  margin-top: 10px;
}

.blog .post p {
  margin-bottom: 20px;
}

.blog .attachment img {
  width: 100%;
}

.shadow-primary {
  box-shadow: 0 0.5rem 1.125rem -0.5rem rgb(99 102 241 / 90%) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon {
  font-size: 1.25rem;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
}

.declaracion {
  font-style: italic;
}

.img-fondo {
  background-image: url("../images/noticias/vacuna.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
}

.subtitulo {
  font-weight: bold;
  font-size: 1.2rem !important;
}

.italica {
  font-style: italic;
}

/* WIDGET: POST CATEGORIES */

.widget-post-categories ul li:last-child {
  border-bottom: 0;
}

.widget-post-categories ul li a {
  color: #777777;
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.widget-post-categories h3 {
  margin-bottom: 20px;
}

.widget-body ul.list-unstyled li {
  list-style: none !important;
  margin-bottom: 10px;
  font-size: 15px;
  border-bottom: 1px solid #eeeeee;
}

@media (max-width: 767px) {
  .blog article.post .post-left {
    display: none;
  }
  .blog article.post {
    padding-left: 0px;
  }
}

/*--------------------------------------------------------
# Footer
----------------------------------------------------------*/

#footer {
  background-color: rgb(0, 0, 0);
}

#footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 20px;
}

#footer .social a {
  margin-right: 15px;
  transition: all 0.3s ease;
  background-color: #ced4da;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .social a:last-child {
  margin-right: 0;
}

#footer .social a:hover {
  background-color: var(--naranja);
}

.btn-facebook {
  color: #1877f2 !important;
}

.btn-instagram {
  color: #405de6 !important;
}

.btn-twitter {
  color: #1da1f2 !important;
}

.btn-youtube {
  color: #bb0000 !important;
}

.btn-linkedin {
  color: #007bb5 !important;
}

i.icon {
  font-size: 1.5rem;
}

#footer a:hover {
  background: var(--naranja);
  border: none;
}

#footer a i {
  font-size: 1.4rem;
}

#footer a:hover i {
  color: var(--blanco);
}

#footer .copyright-info {
  color: var(--blanco);
  font-size: 0.8rem;
  text-align: center;
}

#footer .copyright-info p {
  padding: 0 !important;
  margin: 0 !important;
}

#footer .copyright-info span i.fa-solid.fa-heart,
#footer .copyright-info span i.bi.bi-heart-fill {
  color: red;
  font-size: 1rem;
  align-items: center;
  margin: 0 5px;
}
