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




/* ROOT VARS */
:root {
  --font-default: "Inter";
  --font-primary: "Inter";
  --font-secondary: "Inter";
  
  --color-default: #444444;

  --color-primary: #097EBD;
  --color-primary-light: #0B9EEE;

  --color-secondary: #022543;
  
  --color-white: #FFFFFF;
  --color-light: #f1f1f1;
  --color-dark: #002037;
  
  --regular-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  
  scroll-behavior: smooth;
}




/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Inter";
  color: var(--color-default);
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-light);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter";
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 200px;
}

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

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

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

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


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
}

#header .logo img {
  height: 60px;
  transition: .3s;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
  background-color: var(--color-white);
}

#header.header-scrolled .logo img {
  height: 45px;
  transition: .3s;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumbs::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(13, 16, 31, 0.7) 0%, rgba(13, 16, 31, 0.7) 75%);
}


.breadcrumbs  .container{
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.breadcrumbs h2 {
  color: var(--color-white);
  font-weight: 900 !important;
  text-transform: uppercase;
  line-height: 64px;
  margin-bottom: 30px;
  font-size: 3.6667rem;
  font-style: normal;
  line-height: 1.1818em;
}

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

.breadcrumbs ol li+li {
  padding-left: 10px;
  font-size: 16px;
  color: var(--color-white);
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-white);
  content: "/";
}




/*--------------------------------------------------------------
# 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>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}


#header .navbar a,
#header .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  transition: 0.3s;
  padding: 5px 2px;
}

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

#header .navbar a:hover,
#header .navbar .active,
#header .navbar .active:focus,
#header .navbar li:hover>a {
  color: var(--color-primary-light);
}

#header.header-scrolled .navbar a,
#header.header-scrolled .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-default);
  white-space: nowrap;
  transition: 0.3s;
  padding: 5px 2px;
}

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

#header.header-scrolled .navbar a:hover,
#header.header-scrolled .navbar .active,
#header.header-scrolled .navbar .active:focus,
#header.header-scrolled .navbar li:hover>a {
  color: var(--color-primary-light);
}



.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 a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: var(--color-default);
  border: none;
}

.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: var(--color-primary-light);
}

.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: var(--color-primary-light);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

@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(28, 47, 65, 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: 100px 100px 100px 30px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary-light);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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: var(--color-primary-light);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero .swiper-slide {
  width: 100%;
  height: 100dvh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#hero .swiper-slide::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

#hero .swiper-slide .container {
  position: relative;
  z-index: 2;
}

#hero .swiper-button-next, 
#hero .swiper-button-prev {
  color: var(--color-primary-light);
}
#hero .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 1;
}
#hero .swiper-pagination-bullet-active {
  background: var(--color-primary-light);
}
#hero .swiper-slide .container h1{
  color: var(--color-white);
  text-shadow: #333 1px 0 20px;
  font-size: 54px;
  text-transform: uppercase;
  font-weight: 900 !important;
  line-height: 54px;
}
.custom-color {
  color: var(--color-primary-light) !important;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

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

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

.section-title-dark h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-dark);
}

.section-title-dark h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary-light);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.btn-custom {
  font-family: "Inter";
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 20px 35px;
  transition: 0.5s;
  border-radius: 0;
  color: #fff;
  background: var(--color-primary-light);
  height: 60px;
}

.btn-custom:hover {
  background: var(--color-primary);
  color: #fff;
}



.arrowUp {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 0;
  font-size: 20px !important;
  padding: 10px 15px !important;
  height: auto !important;
}







/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--color-secondary);
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: var(--color-light);
  text-align: center;
  font-size: 15px;
  color: var(--color-default);
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--color-dark);
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary-light);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--color-primary-light);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--color-white);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-dark);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--color-primary-light);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--color-default);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--color-primary-light);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--color-white);
}

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




/*MYSQYLES*/
#institucional .content {
  padding: 0 80px;
  position: relative;
}
#institucional .content h6{
  font-size: 12px;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: var(--color-primary-light);
}
#institucional .content h1{
  color: var(--color-dark);
  font-size: 74px;
  font-weight: 900 !important;
  text-transform: uppercase;
  line-height: 64px;
  margin-bottom: 30px;
}
#institucional .content h2{
  font-size: 48px;
  font-weight: 900 !important;
  text-transform: uppercase;
  color: var(--color-dark);
}
#institucional .content h2 span{
  color: var(--color-primary-light);
}

#institucional img {
  width: 50%;
  height: auto;
}

#institucional .section__line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  transform: translateX(-50%);
  height: 100%;
  background-color: var(--color-primary-light);
}
#institucional .section__circle_top {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  transform: translateX(-50%);
  background-color: var(--color-white);
  border: 2px solid var(--color-primary-light);
  border-radius: 10px;
}
#institucional .section__circle_bottom {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 20px;
  height: 20px;
  transform: translateX(-50%);
  background-color: var(--color-white);
  border: 2px solid var(--color-primary-light);
  border-radius: 10px;
}








.subtitle{
  font-size: 12px;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--color-primary-light);
}
.title{
  color: var(--color-dark);
  font-size: 48px;
  font-weight: 900 !important;
  text-transform: uppercase;
  margin-bottom: 30px;
}


.custom-card-img{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  background-position: center;
  background-size: cover;
  transition: .3s;
}
.custom-card-img::before{
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.custom-card-img h3 {
  font-size: 34px;
  font-weight: 900 !important;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  transition: .3s;
  text-align: center;
}
.custom-card-img .custom-card-overlay {
  position: absolute;
  width: 100%;
  height: 500px;
  bottom: -500px;
  background-color: var(--color-primary-light);
  padding: 50px 25px !important;
  right: 0;
  color: var(--color-white);
  transition: .3s;
}

.custom-card-img:hover {
  box-shadow: var(--regular-shadow);
  transition: .3s;
}
.custom-card-img:hover h3 {
  color: var(--color-white);
  transition: .3s;
}
.custom-card-img:hover .custom-card-overlay{
  position: absolute;
  width: 100%;
  height: 500px;
  bottom: 0;
  right: 0;
  background-color: var(--color-primary-light);
  padding: 25px;
  z-index: 2;
  transition: .3s;
}


.nota-grande {
  background-color: var(--color-white);
  transition: .3s;
}
.nota-grande .nota-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
}
.nota-grande .nota-img img{
  object-fit: cover;
  width: 100%;
  height: 400px;
  transition: .3s;
  transform: scale(1);
}
.nota-grande .nota-cuerpo{
  width: 100%;
  height: 300px;
  padding: 25px;
}
.nota-grande .nota-cuerpo h5{
  font-weight: 900 !important;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--color-dark);
}
.nota-grande .nota-footer {
  padding: 25px;
}



.nota-chica {
  background-color: var(--color-white);
  transition: .3s;
}
.nota-chica .nota-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
}
.nota-chica .nota-img img{
  object-fit: cover;
  width: 100%;
  height: 200px;
  transition: .3s;
  transform: scale(1);
}
.nota-chica .nota-cuerpo{
  width: 100%;
  height: 118px;
  padding: 25px;
}
.nota-chica .nota-cuerpo h5{
  font-weight: 500 !important;
  font-size: 16px;
  color: var(--color-dark);
}
.nota-chica .nota-footer {
  padding: 25px;
}

.nota-grande:hover, .nota-chica:hover {
  transition: .3s;
  box-shadow: var(--regular-shadow);
}

.nota-grande:hover .nota-img img,
.nota-chica:hover .nota-img img {
  transition: .3s;
  transform: scale(1.2);
}

.mapsize {
  width: 100%;
  height: 415px;
}

#contacto .content {
  padding: 0 80px;
}

.my-tabs .nav-tabs .nav-link.active {
  font-family: "Inter";
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  width: calc(100% / 2);
  transition: 0.5s;
  border-radius: 0;
  color: #fff;
  background: var(--color-primary-light);
}

.my-tabs .nav-tabs .nav-link {
  font-family: "Inter";
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  width: calc(100% / 2);
  transition: 0.5s;
  border-radius: 0;
  color: var(--color-default);
  background: var(--color-white);
  height: 60px;
}
.my-tabs .nav-tabs .nav-link:hover {
  background: var(--color-primary-light);
    color: #fff;
}

#contacto .content h6{
  font-size: 12px;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: var(--color-primary-light);
}
#contacto .content h1{
  color: var(--color-dark);
  font-size: 74px;
  font-weight: 900 !important;
  text-transform: uppercase;
  line-height: 64px;
  margin-bottom: 30px;
}


.over-line {
  margin-top: 15px;
  width: 70px;
  height: 4px;
  background-color: var(--color-white);
  position: relative;
  z-index: 3;
}











#inner-page .content {
  background-color: #FFF;
}
#inner-page .content, .gallery-content  {
  width: 100%;
  height: 500px;
  position: relative;
}
#inner-page .content img, .gallery-content img{
  width: 100%;
  height: 500px;
  object-fit: cover;
}
#inner-page .content a, .gallery-content a {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
}



.img-slwiper-six {
  height:auto; 
  width: 90%;
  filter: grayscale(1);
  transition: .3s;
}
.img-slwiper-six:hover {
  filter: grayscale(0);
  transition: .3s;
}





@media only screen and (max-width: 600px) {
  #hero .swiper-slide .container h1 {
    text-align: center;
    font-size: 34px;
    line-height: 40px;
  }
  #hero .swiper-slide {
    width: 100%;
    height: 450px;
  }
  #institucional .section__circle_top, #institucional .section__circle_bottom {
    left: 15px;
    transform: unset;
  }
  #institucional .section__line {
    left: 25px;
    transform: unset;
  }
  #institucional .content h1 {
    font-size: 34px;
    line-height: 34px;
  }
  #institucional .content {
    padding: 0 0px 0 50px;
  }
  .title {
    color: var(--color-dark);
    font-size: 34px;
    line-height: 34px;
  }



  .nota-grande .nota-cuerpo, .nota-chica .nota-cuerpo {
    height: auto;
  }
  .nota-grande .nota-img, .nota-grande .nota-img img {
    height: 200px;
  }
  .nota-grande .nota-cuerpo h5 {
    font-weight: 500 !important;
    font-size: 16px;
    color: var(--color-dark);
  }
  .nota-grande .nota-cuerpo p {
    display: none;
  }
  .nota-grande .nota-footer a, .nota-chica .nota-footer a {
    font-family: "Inter";
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 35px;
    transition: 0.5s;
    border-radius: 0;
    color: #fff;
    background: var(--color-primary-light);
    height: 60px;
    width: 100% !important;
    text-align: center !important;
  }
  
  .nota-chica .nota-footer a:hover {
    background: var(--color-primary-light);
    color: #fff;
  }

  .breadcrumbs h2 {
    font-size: 34px;
    line-height: 0;
  }

  #header .logo img {
    height: 45px;
    transition: .3s;
  }

  .breadcrumbs .container {
    padding-top: 60px;
  }

  .breadcrumbs {
    height: 300px;
  }
  #inner-page .content img, .gallery-content, #inner-page .content img, .gallery-content img {
    height: 300px;
  }
  #header .navbar a {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-default);
  }
} 