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

@font-face {
 font-family: "Gotham";
 src: url("../fonts/Gotham-Thin.woff2") format("woff2"),
  url("../fonts/Gotham-Thin.woff") format("woff");
 font-weight: 100;
 font-style: normal;
 font-display: swap;
}



/* ROOT VARS */
:root {
 --font-default: "Gotham";
 --font-primary: "Lemon/Milk";

 --color-default-light: #e3e3e3;
 --color-default: #494949;

 --color-marron-dark: #312a15;
 --color-marron-light: #664b12;

 --color-primary-dark: #937017;
 --color-primary-light: #e1b240;

 --color-secondary-dark: #e6bf62;
 --color-secondary-light: #edd694;

 --color-white: #ffffff;
 --color-light: #f3f5fa;
 --color-dark: #000000;

 --regular-shaodw: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

 --regular-shaodw: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

 scroll-behavior: smooth;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: var(--font-default);
 color: var(--color-default-dark);
}

p {
 font-size: 14px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 9999;
 overflow: hidden;
 background: var(--color-dark);
}
#preloader img {
 width: 100px;
}

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

#header.header-scrolled,
#header.header-inner-pages {
 background: #fff;
}

#header .logo img {
 max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
 padding: 0;
 font-family: "Gotham";
 font-weight: 900;
}

.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: 14px;
 font-weight: lighter;
 color: var(--color-dark);
 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: var(--color-primary-light);
}

.navbar .getstarted,
.navbar .getstarted:focus {
 font-family: "Gotham";
 font-weight: 900;
 padding: 8px 20px;
 margin-left: 30px;
 border-radius: 0;
 color: var(--color-primary-light);
 font-size: 14px;
 border: 2px solid var(--color-primary-light);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
 color: var(--color-white);
 background: var(--color-primary-light);
}

.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: var(--color-white);
 box-shadow: var(--regular-shadow);
 transition: 0.3s;
 border-radius: 4px;
}

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

.navbar .dropdown ul a {
 padding: 10px 20px;
 font-size: 14px;
 text-transform: none;
 font-weight: 500;
 color: var(--color-default);
}

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

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

@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(0, 0, 0, 0.5);
 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: 55px;
 left: 15px;
 padding: 10px 0;
 border-radius: 0;
 background-color: var(--color-white);
 overflow-y: auto;
 transition: 0.3s;
}

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
 margin: 15px;
 color: var(--color-dark);
}

.navbar-mobile .dropdown ul {
 position: static;
 display: none;
 margin: 10px 20px;
 padding: 10px 0;
 z-index: 99;
 opacity: 1;
 visibility: visible;
 background: var(--color-white);
 border: 1px solid var(--color-light);
 box-shadow: none;
}

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

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

.navbar-mobile .getstarted {
 display: flex;
 justify-content: center;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
 padding: 40px 0;
 overflow: hidden;
}
.bg-cover {
 background-position: center;
 background-size: cover;
 width: 100%;
}

.bg-cover-cuadrado {
 background-position: center;
 background-size: cover;
 width: 100%;
 content: "";
 padding-bottom: 100%;
 border-radius: 0 3rem 3rem 3rem;
 height: 100px;
}

.section-title {
 text-align: center;
 padding-bottom: 60px;
 position: relative;
}

.section-title h2 {
 font-family: "LatinWide";
 font-size: 32px;
 font-weight: 500;
 margin-bottom: 20px;
 padding-bottom: 20px;
 position: relative;
}

.section-title h2:after {
 content: "";
 position: absolute;
 display: block;
 width: 50px;
 height: 3px;
 background: var(--color-primary-light);
 left: 0;
 right: 0;
 bottom: 0;
 margin: auto;
}

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



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

.breadcrumbs a {
  color: var(--color-primary-light);
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary-light);
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
 width: 100%;
 min-height: 100vh;
 position: relative;
 padding: 120px 0 60px;
 display: flex;
 align-items: center;
}

@media (min-width: 1200px) {
 .hero:after {
  position: absolute;
  content: "";
  width: 44%;
  background-image: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-marron-dark), transparent 15%),
    color-mix(in srgb, var(--color-marron-dark), transparent 15%) 100%
   ),
   linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
  top: 0;
  bottom: 0;
  z-index: 2;
 }
}

.hero:before {
 position: absolute;
 content: "";
 background: color-mix(in srgb, var(--color-marron-dark), transparent 40%);
 inset: 0;
 z-index: 2;
}

.hero img {
 position: absolute;
 inset: 0;
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 1;
}

.hero .container,
.hero .container-fluid {
 z-index: 3;
 position: relative;
}

.hero h1 {
 margin: 0;
 font-size: 28px;
 color: white;
 font-family: "LatinWide";
}

.hero blockquote {
 color: color-mix(in srgb, #ffffff, transparent 20%);
 padding-left: 20px;
 border-left: 2px solid var(--color-primary-light);
 font-family: "Gotham";

 margin: 40px 0;
}

.hero blockquote p {
 font-size: 17px;
}

.hero .btn-get-started {
 color: white;
 background: var(--color-primary-dark);
 font-family: "Gotham";
 font-weight: 800;
 font-size: 16px;
 letter-spacing: 1px;
 display: inline-block;
 padding: 12px 30px;
 border-radius: 50px;
 transition: 0.5s;
}

.hero .btn-get-started:hover {
 background: color-mix(in srgb, var(--color-primary-light) 90%, white 15%);
}

.hero .btn-watch-video {
 font-size: 16px;
 transition: 0.5s;
 margin-left: 25px;
 color: #ffffff;
 font-weight: 600;
}

.hero .btn-watch-video i {
 color: color-mix(in rgb, #ffffff, transparent 50%);
 font-size: 32px;
 transition: 0.3s;
 line-height: 0;
 margin-right: 8px;
}

.hero .btn-watch-video:hover {
 color: #ffffff;
}

.hero .btn-watch-video:hover i {
 color: #ffffff;
}

@media (max-width: 640px) {
 .hero h1 {
  font-size: 23px;
  line-height: 36px;
 }

 .hero .btn-get-started,
 .hero .btn-watch-video {
  font-size: 13px;
 }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .img-bg {
 min-height: 500px;
 position: relative;
 border-top-left-radius: 20px;
 border-bottom-left-radius: 20px;
}

.why-us .img-bg img {
 position: absolute;
 inset: 0;
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 1;
 border-top-left-radius: 20px;
 border-bottom-left-radius: 20px;
}

.why-us .slides {
 background-color: color-mix(
  in srgb,
  var(--color-primary-dark),
  transparent 97%
 );
 border-top-right-radius: 20px;
 border-bottom-right-radius: 20px;
}

.why-us h3 {
 font-size: 24px;
 font-weight: 400;
 font-family: "LatinWide";
}

.why-us p {
 font-family: "Gotham";
 font-weight: 600;
 font-size: 15px;
}

.why-us .swiper {
 margin: 100px 130px 100px 130px;
 overflow: hidden;
}

.why-us .swiper-wrapper {
 height: auto;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
 font-size: 24px;
 color: color-mix(in srgb, var(--color-primary-dark), transparent 50%);
}

.why-us .swiper-button-prev {
 left: 80px;
}

.why-us .swiper-button-next {
 right: 80px;
}

.why-us .swiper-pagination {
 margin-top: 30px;
 position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
 background-color: color-mix(
  in srgb,
  var(--color-primary-dark),
  transparent 50%
 );
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
 background-color: var(--color-primary-light);
}

@media (max-width: 1200px) {
 .why-us .swiper {
  margin: 60px 60px 40px 60px;
 }

 .why-us .swiper-button-prev,
 .why-us .swiper-button-next {
  display: none;
 }
}

@media (max-width: 575px) {
 .why-us .swiper {
  margin: 40px 40px 20px 40px;
 }
}

/* Step */
.step {
 box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
 padding: 40px;
 transition: 0.3s ease;
 position: relative;
 height: 250px;
 min-height: 250px;
}

.step h3 {
 font-size: 22px;
 font-family: "Gotham";
 font-weight: 600;
}

.step p {
 font-size: 16px;
 font-weight: 400;
 font-family: "Gotham";
 font-weight: 600;
}

.step i,
.step h3,
.step p {
 position: relative;
 z-index: 2;
}

.step-overlay {
 position: absolute;
 z-index: 1;
 content: "";
 width: 0;
 top: 0;
 left: 0;
 bottom: 0;
 transition: 0.3s;
 background-color: #000000;
 /* background-color: var(--color-marron-light); */
}

.step:hover .step-overlay {
 width: 100%;
 right: 0;
 transition: 0.3s;
}

.step i {
 background: linear-gradient(
  -45deg,
  var(--color-primary-light),
  var(--color-primary-dark)
 );
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 font-size: 30px;
 font-weight: bolder;
 margin-bottom: 10px;
 display: block;
}

@media (prefers-color-scheme: dark) {
 .step i {
  background: linear-gradient(  -45deg,  var(--color-primary-light),  var(--color-primary-dark) );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-weight: bolder;
  margin-bottom: 10px;
  display: block;
 }
}

.step:hover i {
 background: unset;
 -webkit-background-clip: unset;
 -webkit-text-fill-color: unset;
 color: #ffffff;
 transition: 0.3s;
}

.step:hover h3 {
 color: #ffffff;
 transition: 0.3s;
}

.step:hover p {
 color: #ffffff;
 transition: 0.3s;
}

.step p:last-child {
 margin-bottom: 0px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .swiper {
 width: 100%;
 height: 900px !important;
}

.team .swiper-slide {
 text-align: center;
 font-size: 18px;
 background: #fff;
 display: flex;
 justify-content: center;
 align-items: center;
}

.team .team-member {
 overflow: hidden;
 border-radius: 5px;
 box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
 height: 100%;
 width: 95%;
}

.team .team-member .member-img {
 position: relative;
 overflow: hidden;
}

.team .team-member .social {
 position: absolute;
 left: 0;
 bottom: 30px;
 right: 0;
 opacity: 0;
 transition: ease-in-out 0.3s;
 text-align: center;
}

.team .team-member .social a {
 background: color-mix(in srgb, #ffffff, transparent 25%);
 color: color-mix(in srgb, var(--color-marron-dark), transparent 20%);
 margin: 0 3px;
 border-radius: 4px;
 width: 36px;
 height: 36px;
 transition: ease-in-out 0.3s;
 display: inline-flex;
 justify-content: center;
 align-items: center;
}

.team .team-member .social a:hover {
 color: var(--color-primary-light);
 background: var(--color-marron-dark);
}

.team .team-member .social i {
 font-size: 18px;
 line-height: 0;
}

.team .team-member .member-info {
 padding: 25px 15px;
 height: 450px;
}

.team .team-member .member-info h4 {
 font-weight: bolder;
 margin-bottom: 5px;
 font-size: 18px;
}

.team .team-member .member-info span {
 display: block;
 font-size: 14px;
 font-family: "Gotham";
 font-weight: 700;
 color: color-mix(in srgb, var(--default-color), transparent 40%);
 text-align: start;
}

.team .team-member:hover .social {
 opacity: 1;
 bottom: 15px;
}

.team .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(
   in srgb,
   var(--color-primary-dark),
   transparent 50%
  );
 }
 
 .team .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary-light);
 }

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
 padding: 80px 0;
 position: relative;
 clip-path: inset(0);
}

.call-to-action img {
 position: fixed;
 top: 0;
 left: 0;
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 1;
}

.call-to-action:before {
 content: "";
 background: color-mix(in srgb, var(--color-marron-light), transparent 50%);
 position: absolute;
 inset: 0;
 z-index: 2;
}

.call-to-action .container {
 position: relative;
 z-index: 3;
}

.call-to-action h3 {
 font-size: 28px;
 font-weight: 500;
 font-family: "LatinWide";
 color: white;
}

.call-to-action p {
 color: white;
 font-family: "Gotham";
 font-weight: 800;
 font-size: 20px;
}

.cta-btn {
 background: var(--color-primary-light);
 /* color: white; */
 font-family: "Gotham";
 font-weight: 800;
 font-size: 16px;
 letter-spacing: 1px;
 display: inline-block;
 padding: 12px 40px;
 border-radius: 50px;
 transition: 0.5s;
 margin: 10px;
}

.cta-btn:hover {
 background: color-mix(in srgb, var(--color-primary-dark) 90%, black 15%);
 color: var(--color-primary-light) !important;
}

.btn-custom {
 background: var(--color-primary-light);
 /* color: white; */
 font-family: "Gotham";
 font-weight: 800;
 font-size: 16px;
 letter-spacing: 1px;
 display: inline-block;
 padding: 12px 40px;
 border-radius: 50px;
 transition: 0.5s;
}

.btn-custom:hover {
 background: color-mix(in srgb, var(--color-primary-dark) 90%, black 15%);
 color: var(--color-primary-light) !important;
}

/*--------------------------------------------------------------
# Contenidos
--------------------------------------------------------------*/
.contenidos .card {
 min-height: 530px;
 max-height: 530px;
}

@media (max-width: 768px) {
 .contenidos .card {
  min-height: 580px;
  max-height: 580px;
 }
}

.info-detalle-img {
 width: 100%;
 height: 400px;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
}

.hover-smallblog-card {
 transition: 0.3s;
}
.hover-smallblog-card .smallblog-card {
 display: flex;
}

.hover-smallblog-card .smallblog-card .smallblog-card-bg {
 position: relative;
 overflow: hidden;
 width: 80px;
 height: 80px;
}

.hover-smallblog-card .smallblog-card .smallblog-card-bg img {
 transform: scale(1);
 width: 80px;
 height: 80px;
 object-fit: cover;
 transition: 0.3s;
}
.hover-smallblog-card .smallblog-card .smallblog-card-body {
 padding: 0 0 0 15px;
 height: auto;
 width: calc(100% - 80px);
}

.hover-smallblog-card .smallblog-card .smallblog-card-footer {
 display: none !important;
}
.hover-smallblog-card .smallblog-card .smallblog-card-body small {
 font-size: 12px !important;
}
.hover-smallblog-card .smallblog-card .smallblog-card-body h5 {
 font-size: 15px !important;
}

.docente-card {
 width: 100%;
 display: flex;
}
.docente-card .docente-card-img,
.docente-card .docente-card-img img {
 width: 70px;
 height: 100px;
}
.docente-card .docente-card-img img {
 object-fit: cover;
}
.docente-card .docente-card-body {
 width: calc(100% - 70px);
 padding: 0 0 0 20px;
}

.content-light .btn-get-started {
 font-family: var(--font-default);
 font-weight: 800;
 font-size: 16px;
 letter-spacing: 1px;
 display: inline-block;
 padding: 10px 28px 11px 28px;
 border-radius: 0;
 transition: 0.5s;
 margin: 10px 0 0 0;
 color: var(--color-white);
 background: var(--color-primary-dark);
 border: none;
}

.content-light .btn-get-started:hover {
 background: var(--color-primary-light);
 border: none;
}

/*--------------------------------------------------------------
# Area Posts Section
--------------------------------------------------------------*/
.area-posts article {
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
 /* padding: 30px; */
 min-height: 380px;
 max-height: 380px;
 width: 95%;
 border-radius: 10px;
 overflow: hidden;
}

.area-posts .title {
 font-size: 20px;
 font-weight: 700;
 padding: 0;
 margin: 0 0 20px 0;
}

.area-posts .title a {
 color: var(--color-dark);
 transition: 0.3s;
}

.area-posts .title a:hover {
 color: var(--color-primary-light);
}

.area-posts .swiper {
 width: 100%;
 height: 440px;
}

.area-posts .swiper-slide {
 height: 100%;
 text-align: center;
 font-size: 18px;
 background: #fff;
 display: flex;
 justify-content: center;
 align-items: center;
}

.area-posts .swiper-pagination .swiper-pagination-bullet {
 background-color: color-mix(
  in srgb,
  var(--color-primary-dark),
  transparent 50%
 );
}

.area-posts .swiper-pagination .swiper-pagination-bullet-active {
 background-color: var(--color-primary-light);
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
#bg-login {
  background-position: top; 
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#bg-login::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: rgb(255,255,255);
  background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
} 


/*--------------------------------------------------------------
# SESSION
--------------------------------------------------------------*/
.content-white {
  background-color: #FFF;
}
.hover-contenido-card {
  transition: .3s;
}
.hover-contenido-card .contenido-card {
  background-color: #FFF;
  transition: .3s;
  position: relative;
}
.hover-contenido-card .contenido-card span{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  font-size: 14px;
}
.hover-contenido-card:hover .contenido-card {
  background-color: #f9f9f9;
  transition: .3s;
  box-shadow: var(--regular-shadow);
}
.hover-contenido-card .contenido-card .contenido-card-bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.hover-contenido-card .contenido-card .contenido-card-bg img{
  transform: scale(1);
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: .3s;
}
.hover-contenido-card:hover .contenido-card .contenido-card-bg img{
  transform: scale(1.2);
  transition: .3s;
}
.hover-contenido-card .contenido-card .contenido-card-body {
  padding: 20px 15px;
  height: 150px;
}
.hover-contenido-card .contenido-card .contenido-card-body h5, .hover-contenido-card .contenido-card .contenido-card-body small {
  color: var(--color-default);
}
.hover-contenido-card .contenido-card .contenido-card-footer {
  padding: 15px;
}

.bg-cover-profile {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 8px;
}


/*--------------------------------------------------------------
# SESSION NAVBAR
--------------------------------------------------------------*/
#session-nav #navbarSupportedContent .navbar-nav{
  display: block !important;
}
.session-menu-list li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.session-menu-list li a{
  font-weight: 500;
  transition: .3s;
  font-size: 15px;
  width: 100% !important;
  border-radius: var(--bs-border-radius) !important;
}
.session-menu-list li a:hover{
  color: var(--color-white) !important;
  background-color: var(--color-primary-light) !important;
  width: 100% !important;
  border-radius: var(--bs-border-radius) !important;
}
.session-menu-list li .active-item{
  color: var(--color-white) !important;
  background-color: var(--color-primary-light) !important;
  width: 100% !important;
  border-radius: var(--bs-border-radius) !important;
}
.session-menu-list li span {
  font-size: 9px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
 font-size: 14px;
 background-color: var(--color-marron-dark);
 font-family: "Gotham";
}

#footer .footer-top {
 padding: 60px 0 30px 0;
 /* background: var(--color-marron-light); */
 background: #000000;
}

#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: var(--font-default);
 color: var(--color-default);
}

#footer .footer-top h4 {
 font-size: 18px;

 color: white;
 position: relative;
 padding-bottom: 12px;
 font-family: "LatinWide";
}

#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);
 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: white;
 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-dark);
 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;
}

/*--------------------------------------------------------------
# SOCIAL MEDIA MENU
--------------------------------------------------------------*/
.social-media-menu {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 0;
}
.social-media-menu li {
 width: 30px;
 height: 30px;
 border-radius: 30px;
 background-color: var(--color-light);
 display: flex;
 justify-content: center;
 align-items: center;
}
.social-media-menu li a {
 color: var(--color-default);
 opacity: 0.5;
 transition: 0.3s;
}
.social-media-menu li a:hover {
 color: var(--color-primary-dark);
 opacity: 1;
 transition: 0.3s;
}

@media (max-width: 768px) {
}
