@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.woff2') format('woff2'),
        url('../fonts/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2'),
        url('../fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Antonio';
    src: url('../fonts/Antonio-Light.woff2') format('woff2'),
        url('../fonts/Antonio-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Antonio';
    src: url('../fonts/Antonio-Bold.woff2') format('woff2'),
        url('../fonts/Antonio-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Antonio';
    src: url('../fonts/Antonio-Regular.woff2') format('woff2'),
        url('../fonts/Antonio-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Inter';
  color: #444444;
  background-color: #eeeeee
}

p {
  font-size: 14px !important
}

a {
  color: #ff1b02;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Antonio';
}






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

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








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

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

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

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

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

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









section {
  padding: 80px 0
}







/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

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

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

















/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0 10px 0;
  background: transparent;
}

#header.header-scrolled {
  background: #fff;
  padding: 20px 0 20px 0;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}


#header.header-inner-pages {
  background: #fff;
  padding: 15px 0 10px 0;
}


#header.header-scrolled .logo img {
  top: -66px;
  box-shadow: none !important;
  transition: all .3s;
}

#header.header-inner-pages .logo img {
  top: -70px;
  box-shadow: none !important;
  transition: all .3s;
}


#header .logo img {
  max-height: 100px !important;
  transition: all .3s;
  position: absolute;
  z-index: 999;
  top: -25px;
  left: 0
}

#header.header-scrolled .logo:hover img, 
#header.header-inner-pages .logo:hover img {
  top: -35px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  transition: all .3s;
}











































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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: rgba(0,0,0,1);
}



.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 12px;
  text-transform: none;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: rgba(0,0,0,1);
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}




































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

.mobile-nav-toggle.bi-x {
  color: #222;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

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

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

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

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: rgba(0,0,0,0.3);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: rgba(0,0,0,1);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

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

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

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

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

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

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








/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  min-height: 40px;
  margin-top: 120px;
  background-color: var(--mainColor); 
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 900;
  color: #FFF;
}

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

.breadcrumbs ol li+li {
  padding-left: 10px;
  color: #FFFFFF
}
.breadcrumbs ol li a {
  color: #FFF
}

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









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

#hero h1 {
  font-size: 48px !important;
  line-height: 48px;
  font-weight: 900 !important;
  background-position: center;
  background-size: cover;
}
#hero .container {
  margin-top: 100px;
}

@media only screen and (max-width: 600px) {
  #hero h1 {
    font-size: 30px !important;
    line-height: 48px;
    font-weight: 900 !important;
    background-position: center;
    background-size: cover;
  }
  .ministerio-img{
    width: 80% !important;
  }
}



/*
  QUIENES SOMOS
*/
.hover-card-institucional .card-institucional {
  border-bottom: 5px solid #e5e6e7;
  color: #989898;
  padding: 30px;
  transition: all .3s
}

.hover-1 .card-institucional{
  border-bottom: 5px solid #989898;
  padding: 30px;
  transition: all .3s;
}
.hover-1 .card-institucional h4{
  color: #989898;
  transition: all .3s
}
.hover-1 .card-institucional p{
  color: #444444;
  height: 60px;
  font-size: 1.25rem;
  margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}


.hover-2 .card-institucional{
  border-bottom: 5px solid #ff6600;
  padding: 30px;
  transition: all .3s;
}
.hover-2 .card-institucional h4{
  color: #ff6600;
  transition: all .3s
}
.hover-2 .card-institucional p{
  color: #444444;
  height: 60px;
  font-size: 1.25rem;
  margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}


.hover-3 .card-institucional{
  border-bottom: 5px solid #febb02;
  padding: 30px;
  transition: all .3s;
}
.hover-3 .card-institucional h4{
  color: #febb02;
  transition: all .3s
}
.hover-3 .card-institucional p{
  color: #444444;
  height: 60px;
  font-size: 1.25rem;
  margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}


.divider-25 {
  width: 100%;
  height: 25px
}














/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #222;
}


#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}





/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/
.btn:hover{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.f-bold {
  font-weight: bold !important;
  font-style: normal !important;
}
.f-black {
  font-weight: 900 !important;
  font-style: normal !important;
}
.f-medium {
  font-weight: 500 !important;
  font-style: normal !important;
}
.f-48 {
  font-size: 48px !important;
}
.f-34 {
 font-size: 34px !important;
}
.f-28 {
 font-size: 28px !important;
}
.f-24 {
 font-size: 24px !important;
}
.f-22 {
 font-size: 22px !important;
}
.f-20 {
 font-size: 20px !important;
}
.f-18 {
 font-size: 18px !important;
}
.f-16 {
 font-size: 16px !important;
}



.color-blanco-1 {
  color: #FFF;
  transition: all .3s
}
.bg-blanco-1 {
  background-color: #FFF;
  transition: all .3s
}

.color-blanco-2 {
  color: #e5e6e7;
  transition: all .3s
}
.bg-blanco-2 {
  background-color: #e5e6e7;
  transition: all .3s
}



.color-1 {
  color: var(--mainColor);
  transition: all .3s
}
.bg-1 {
  background-color: var(--mainColor);
  transition: all .3s
}
.border-bottom-1 {
  border-bottom: 5px solid var(--mainColor)
}

.color-2 {
  color: #9d2e33;
  transition: all .3s
}
.bg-2 {
  background-color: #9d2e33;
  transition: all .3s
}
.border-bottom-2 {
  border-bottom: 5px solid #9d2e33
}

.color-3 {
  color: #cf6e49;
  transition: all .3s
}
.bg-3 {
  background-color: #cf6e49;
  transition: all .3s
}
.border-bottom-3 {
  border-bottom: 5px solid #cf6e49
}


.color-4 {
  color: #fbb040;
  transition: all .3s
}
.bg-4 {
  background-color: #fbb040;
  transition: all .3s
}
.border-bottom-4 {
  border-bottom: 5px solid #fbb040
}


.color-5 {
  color: #222222;
  transition: all .3s
}
.bg-5 {
  background-color: #222222;
  transition: all .3s
}


.h-100 {
  height: 100%
}

.bgCover75 {
  background-position: center;
  background-size: cover;
  content: '';
  padding-bottom: 75%;
}

.bgCover_125 {
  background-position: center;
  background-size: cover;
  content: '';
  padding-bottom: 75%;
}
.bgCover_125:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(255,255,255,0) 50%);
  border-radius: .25rem
}

.bgCoverNoticias {
  background-position: center;
  background-size: cover;
  padding-bottom: 400px;
}

.bgCoverRectangular {
  background-position: center;
  background-size: cover;
  content: '';
  padding-bottom: 50%;
}
.bgCoverCuadrado {
  background-position: center;
  background-size: cover;
  content: '';
  padding-bottom: 100%;
}

.bgCoverFull{
  background-position: center;
  background-size: cover;
  height: 100%;
  position: relative;
} 
.bgCoverFull:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  background-color: rgba(0,0,0,0.5);
}



.btn-outline-custom {
  --bs-btn-color: #f19601;
  --bs-btn-border-color: #f19601;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f19601;
  --bs-btn-hover-border-color: #f19601;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #f19601;
  --bs-btn-active-border-color: #f19601;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f19601;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f19601;
  --bs-gradient: none;
  font-weight: 600 !important;
  font-size: 14px;
  padding: 8px 15px;
}

.btn-custom {
    --bs-btn-color: #fff;
    --bs-btn-bg: #f19601;
    --bs-btn-border-color: #f19601;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #f19601;
    --bs-btn-hover-border-color: #f19601;
    --bs-btn-focus-shadow-rgb: 60,153,110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #f19601;
    --bs-btn-active-border-color: #f19601;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #f19601;
    --bs-btn-disabled-border-color: #f19601;
    font-weight: 600 !important;

    padding: 8px 15px;
}





.w-slide {
  width: 80% !important
}
.w-slide:nth-child(3n) {
    margin-right: 100% !important
}

.float-info {
  position: absolute;
  border-radius: .25rem;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 0 20px 20px 20px
}





.redes-list li{
  margin-right: 20px;
}
.redes-list li:last-child{
  margin-right: 0px;
}
.redes-list li a{
  font-size: 22px;
  line-height: unset;
  width: 40px;
  height: 40px;
  border: 2px solid #fbb040;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fbb040;
  transition: all .3s;
  background-color: transparent;
}
.redes-list li a:hover{
  background-color: #fbb040;
  color: #FFF;
  transition: all .3s
}

.ubicacion-list li{
  margin-right: 20px;
}
.ubicacion-list li:last-child{
  margin-right: 0px;
}
.ubicacion-list li a{
  font-size: 22px;
  line-height: unset;
  width: 40px;
  height: 40px;
  border: 2px solid #9d2e33;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9d2e33;
  transition: all .3s;
  background-color: transparent;
}
.ubicacion-list li a:hover{
  background-color: #9d2e33;
  color: #FFF;
  transition: all .3s
}

.hover-card-noticias .texto p{
  color: #444444 !important
}

.hover-card-noticias .texto h5{
  color: #888888;
  transition: .3s
}
.hover-card-noticias:hover .texto h5{
  color: var(--mainColor);
  transition: .3s
}
.hover-card-noticias:hover .bgCover75 {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  transition: .3s 
}



.swiper-button-next, .swiper-button-prev {
  color: #222 !important;
  background-color: #eeeeee !important;
  padding: 20px 22px;
  transition: all .5s;
  border-radius: 100px;
  box-shadow: none !important
}
.swiper-button-next{
  right: 13px !important
}
.swiper-button-prev{
  left: 13px !important
}
@media (min-width: 1441px) {
  #hero {
    height: 400px;
  }
  .swiper-button-next{
    right: 27px !important
  }
  .swiper-button-prev{
    left: 27px !important
  }
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 14px !important;
  font-weight: bolder
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  color: #222 !important;
  background-color: #FFFFFF !important;
  padding: 20px 22px;
  transition: all .5s
}





.hover-card-init .float-info h6, 
.hover-card-init .float-info h4{
  color: #FFFFFF;
  transition: all .3s
}
.hover-card-init:hover .bgCover_125:before {
  content: '';
  position: absolute;
  background: rgba(255,255,255, .2);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0px 0px 2000px rgba(255,255,255, .2); 
  backdrop-filter: blur(7px);
  z-index: 0;
}
.hover-card-init:hover .float-info h6, 
.hover-card-init:hover .float-info h4{
  color: #222222;
  transition: all .3s
}






.titulos h1{
  padding-left: 40px
}
.titulos .deco{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: auto;
}


.content-for-text {
  background-color: #FFF;
  border-radius: .375rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  padding: 40px
}

.custom-content-for-text {
  background-color: var(--mainColor);
  border-radius: .375rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  padding: 40px;
  color: #FFF
}

.accordion-button:not(.collapsed) {
    color: var(--mainColor) !important;
    background-color: var(--lightMainColor) !important;
    box-shadow: none !important;
}

.swiper-pagination-bullet-active {
  background: var(--mainColor) !important
}

.bgCoverRectangular {
  width: 100%;
  background-position: center;
  background-size: cover;
  height: 500px;
}

.accordion-button:not(.collapsed)::after {
  color: #FFF !important
}






.hover-gallery {
  transition: all .3s
}
.hover-gallery .bgCoverCuadrado {
  width: 100%;
  background-size: cover;
  background-position: center;
  content: '';
  padding-bottom: 100%;
  transition: all .3s
}
.hover-gallery .bgCoverCuadrado .overlay-gallery {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: .25rem;
  background-color: rgba(0,0,0,0.6);
  transition: all .3s;
  opacity: 0
}
.hover-gallery:hover .bgCoverCuadrado {
  transition: all .3s;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.hover-gallery:hover .bgCoverCuadrado .overlay-gallery {
  transition: all .3s;
  opacity: 1
}






.hover-small-news {
  transition: all .3s
}
.hover-small-news .bgCover100x100 {
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: cover;
  margin-right: 15px;
  transition: all .3s
}
.hover-small-news .texto{
  width: calc(100% - 75px);
  transition: all .3s;
}
.hover-small-news .texto p {
  color: #444;
  transition: all .3s;
}
.hover-small-news .texto h6 {
  color: #888;
  transition: all .3s;
}

.hover-small-news:hover .bgCover100x100 {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  transition: all .3s
}
.hover-small-news:hover .texto p {
  color: #222;
  transition: all .3s;
}
.hover-small-news:hover .texto h6 {
  color: var(--mainColor);
  transition: all .3s;
}





@media only screen and (max-width: 600px) {
  #header .logo img {
    max-height: 80px !important;
  }
  .w-slide:nth-child(3n) {
    margin-right: 0% !important
  }
  .content-for-text {
    padding: 40px 20px !important
  }
  .custom-content-for-text {
   padding: 40px 20px !important 
  }
  .redes-list li {
    margin-right: 8px 
  }
  .redes-list li a{
  font-size: 14px;
  width: 30px;
  height: 30px;
  }
  .ubicacion-list li {
    margin-right: 8px 
  }
  .ubicacion-list li a{
  font-size: 14px;
  width: 30px;
  height: 30px;
  }
  #header.header-scrolled .logo img {
    top: -62px;
  }
  #header.header-inner-pages .logo img {
    top: -62px;
  }
  .bgCoverRectangular {
    height: 240px;
  }
}
