@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: #1a1f24;
  --color-default-light: #d9d9d9;
  
  --color-primary-light: #a04453;
  --color-primary: #692429;
  --color-primary-dark: #3d171e;
  
  --color-secondary-light: #7a7f4c;
  --color-secondary: #3b4221;
  --color-secondary-dark: #1c1e0d;
  
  --color-white: #FFFFFF;
  --color-light: rgba(248,249,250,1);
  --color-dark: #1a1f24;
  
  --regular-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  
  scroll-behavior: smooth;
}












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

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










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

#preloader img {
  width: 150px
}



/*--------------------------------------------------------------
# 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: var(--color-dark);
}


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





















/*--------------------------------------------------------------
# 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: 15px;
  font-weight: 500;
  color: var(--color-white);
  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 {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 0;
  color: var(--color-white);
  font-size: 14px;
  border: 2px solid var(--color-primary);
  font-weight: 600;
}

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

.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-white);
  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: 60px 0;
  overflow: hidden;
}






/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /*background: var(--color-primary-dark);*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}  
#hero::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%);
}  

#hero .container {
  padding-top: 72px;
  position: relative;
}  

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--color-white);
}  

#hero h2 {
  color: var(--color-light);
  margin-bottom: 50px;
  font-size: 24px;
}  

#hero .btn-get-started {
  font-family: var(--font-default);
  font-weight: 500;
  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);
}  

#hero .btn-get-started:hover {
  background: var(--color-primary-light);
}  


@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }  
}  

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }  

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }  

}  

@media (max-width: 575px) {
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }  
}  










/*--------------------------------------------------------------
# SERVICIOS
--------------------------------------------------------------*/
.service-item {
  padding: 0 20px;
}
.service-item .service-icon i{
  font-size: 60px;
  color: var(--color-default-light);
}
.service-item .service-text {
  width: calc(100% - 100px);
}
.icon-size {
  height: 80px !important;
  width: auto;
  opacity: 0.2;
}


/*--------------------------------------------------------------
# VIDEO
--------------------------------------------------------------*/


#institucional-video {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
#institucional-video::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%);
}  
#institucional-video .container {
  display: flex;
  width: 100%;
  height: 500px;
  justify-content: center;
  align-items: center;
}

.background-button,
.pulse-button {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50px;
}
.background-button {
  animation: pulse 1.2s ease infinite;
  background: var(--color-primary-light);
}
.pulse-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 99;
  border: none;
  background: var(--color-primary);
  background-size: 18px;
  cursor: pointer;
  outline: none;
}

.pulse-button a {
  position: absolute;
  color: #FFF;
  font-size: 35px;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}









/*--------------------------------------------------------------
# teachers
--------------------------------------------------------------*/
.teacher-card {
  display: flex;
}
.teacher-img img{
  width: 200px;
  height: 300px;
  object-fit: cover;
}
.teacher-body {
  padding: 20px;
  width: calc(100% - 200px);
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--color-light);
  min-height: 40px;
  margin-top: 92px;
}

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

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

.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-dark);
  content: "/";
}

/*--------------------------------------------------------------
# INSTITUCIONAL
--------------------------------------------------------------*/
.info-container img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.info-container .info-body {
  padding: 25px;
}

/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
.hover-blog-card {
  transition: .3s;
}
.hover-blog-card .blog-card {
  background-color: #FFF;
  transition: .3s;
  position: relative;
}
.hover-blog-card .blog-card span{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  font-size: 14px;
}
.hover-blog-card:hover .blog-card {
  background-color: #f9f9f9;
  transition: .3s;
  box-shadow: var(--regular-shadow);
}
.hover-blog-card .blog-card .blog-card-bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
}
.hover-blog-card .blog-card .blog-card-bg img{
  transform: scale(1);
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: .3s;
}
.hover-blog-card:hover .blog-card .blog-card-bg img{
  transform: scale(1.2);
  transition: .3s;
}
.hover-blog-card .blog-card .blog-card-body {
  padding: 20px 15px;
  height: 150px;
}
.hover-blog-card .blog-card .blog-card-body h5, .hover-blog-card .blog-card .blog-card-body small {
  color: var(--color-default);
}
.hover-blog-card .blog-card .blog-card-footer {
  padding: 15px;
}
.hover-blog-card .blog-card .blog-card-footer .btn-get-started {
  font-family: var(--font-default);
  font-weight: 500;
  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);
}  

.hover-blog-card .blog-card .blog-card-footer .btn-get-started:hover {
  background: var(--color-primary-light);
}  

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


.hover-smallblog-card {
  transition: .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: .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;
}


/*--------------------------------------------------------------
# Contenidos
--------------------------------------------------------------*/
.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: 500;
  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);
  border: none;
}  

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


.btn-custom {
  font-family: var(--font-default);
  font-weight: 500;
  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);
}  

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


.special-success {
  font-family: var(--font-default) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  letter-spacing: 1px !important;
  display: inline-block !important;
  padding: 10px 28px 11px 28px !important;
  border-radius: 0 !important;
  transition: 0.5s !important;
  margin: 10px 0 0 0 !important;
}  

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
#bg-login {
  background-position: center; 
  background-size: cover;
  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 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{
  color: var(--color-oscuro-tres);
  font-weight: 500;
  transition: .3s;
  font-size: 15px;
  width: 100% !important;
  border-radius: 0 !important;
}
.session-menu-list li a:hover{
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
  width: 100% !important;
  border-radius: 0 !important;
}
.session-menu-list li .active-item{
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
  width: 100% !important;
  border-radius: 0 !important;
}
.session-menu-list li span {
  font-size: 9px;
}



@media only screen and (max-width: 600px) {
  .mt-special {
    margin-top: 35px;
  }
  #session-nav {
    background-color: var(--color-white);
    padding: 10px;
    border-radius: 0;
  }
}

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

.offcanvas.offcanvas-bottom {
  height: 140px !important;
}
.accordion-button:focus {
  box-shadow: none !important;
}
.video-clase {
  width: 100%;
  height: 500px;
}
/*--------------------------------------------------------------
# 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;
}
.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 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

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

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

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color-primary);
  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;
}










#overlap {
  position: fixed;
  background-color: rgba(0,0,0,0.9);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
}
#timer {
  right: 20px;
  bottom: 100px;
  position: fixed;
  z-index: 1;
}




@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;
  }
  .breadcrumbs {
    margin-top: 92px;
  }

  .service-item {
    padding: 0 15px;
  }
  .service-item .service-icon i{
    font-size: 30px;
    color: var(--color-default-light);
  }
  .service-item .service-text {
    width: calc(100% - 50px);
  }
  .icon-size {
    height: 50px !important;
    width: auto;
    opacity: 0.2;
  }
  #institucional-video .container {
    height: 400px;
  }
  .teacher-card {
    display: flex;
    flex-direction: column;
  }
  .teacher-img img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
  }
  .teacher-body {
    width: 100%;
  }
  .inverse-card {
    flex-direction: column-reverse !important;
  }
  .info-container img{
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .info-container .info-body {
    padding: 25px 15px;
  }



/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
.hover-blog-card {
  transition: .3s;
}
.hover-blog-card .blog-card {
  background-color: #FFF;
  transition: .3s;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  display: flex;
  align-items: center;
  padding: 15px 0;
}
.hover-blog-card .blog-card .blog-card-bg {
  position: relative;
  overflow: hidden;
  width: 80px;
  height: 80px;
}
.hover-blog-card .blog-card .blog-card-bg img{
  transform: scale(1);
  width: 80px;
  height: 80px;
  object-fit: cover;
  transition: .3s;
}
.hover-blog-card .blog-card .blog-card-body {
  padding: 0 0 0 15px;
  height: auto;
  width: calc(100% - 80px);
}

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

.video-clase {
  width: 100%;
  height: 200px;
}


}