
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

section {
  padding: 60px 0;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #106eea;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #1a48ed;
  outline: none;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/* Back to top button */
.back-to-top, .back-to-top:focus {
  position: fixed;
  display: none;
  background: #106eea;
  color: #fff !important;
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
  padding: 6px 12px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: all 0.5s;
  z-index: 11;
}

@media (hover: hover) {
  .back-to-top:hover {
    background: #fff;
    color: #106eea !important;
  }
}

.back-to-top::before {
  content: '\F286';
  font-family: 'bootstrap-icons';
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#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(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #106eea;
  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);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(16, 14, 9, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header .logo a {
  color: #fff;
}

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




/*--------------------------------------------------------------
# Navigation (MENÚ)
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 10px;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
  
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 7px;
  
}


.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  font-size: 12px;
  padding: 10px 0px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #1a48ed;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 40px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.40);
  transition: 0.3s;
  border-top: 2px solid #1a48ed;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}


.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #282828;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #1a48ed;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 85px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 22px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #FFFFFF;
}

.mobile-nav {
  position: fixed;
  top: 140px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #FFFFFF;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #24325d;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #006fbe;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}





/*--------------------------------------------------------------
# Segundo Slide- Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #intro {
    height: 150vh;
  }
}

#intro .carousel, #intro .carousel-inner, #intro .carousel-item, #intro .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/*-------  opacidad slide -----*/

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
}

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#intro .container {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
  }
}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #intro p {
    width: 60%;
  }
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 5%;
  }
}

#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}



#intro .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  background: #1a48ed;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}


#intro .btn-get-started:hover {
  background: #3583f0;
  
}



/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

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

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #106eea;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #ffffff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 90px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}







/* Facts Section
--------------------------------*/
#facts {
  background: url("https://www.geofisica.unam.mx/assets4/img/facts-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#facts::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #106eea;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}




/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("https://www.geofisica.unam.mx/assets4/img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(2, 2, 2, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item h5 {
  font-size: 7 px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #FFFFFF;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #106eea !important;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 90%;
	
  }
}



/*--------------------------------------------------------------
# INDEX (SLIDE)
--------------------------------------------------------------*/
#hero-s {
  width: 100%;
  height: 45vh;
  background-color: rgba(31, 38, 39, 0.5);
  overflow: hidden;
  position: relative;
  padding: 0;
}

#hero-s .carousel-item {
  width: 100%;
  height: 45vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#hero-s .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero-s .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-s .carousel-content {
  text-align: center;
}

#hero-s h2 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
}

#hero-s p {
  width: 60%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 18px auto;
  color: #fff;
}

#hero-s .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero-s .carousel-inner .carousel-item,
#hero-s .carousel-inner .active.carousel-item-left,
#hero-s .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero-s .carousel-inner .active,
#hero-s .carousel-inner .carousel-item-next.carousel-item-left,
#hero-s .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero-s .carousel-inner .carousel-item-next,
#hero-s .carousel-inner .carousel-item-prev,
#hero-s .carousel-inner .active.carousel-item-left,
#hero-s .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero-s .carousel-control-prev, #hero-s .carousel-control-next {
  width: 10%;
}

#hero-s .carousel-control-next-icon, #hero-s .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero-s .carousel-indicators li {
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
  transition: ease-in;
  opacity: .7;
}

#hero-s .carousel-indicators li.active {
  opacity: 1;
  background-color: #1a48ed;
}

#hero-s .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  background: #1a48ed;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #106eea !important;
}


#hero-s .btn-get-started:hover {
  background: #3583f0;
}

@media (max-width: 768px) {
  #hero-s {
    height: 90vh;
  }
  #hero-s .carousel-item {
    height: 90vh;
  }
  #hero-s h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero-s p {
    width: 60%;
  }
  #hero-s .carousel-control-prev, #hero-s .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero-s {
    height: 150vh;
  }
  #hero-s .carousel-item {
    height: 150vh;
  }
}



/*--------------------------------------------------------------
# Carrusel
--------------------------------------------------------------*/

/*------/ Space Padding /------*/
.section-t8 {
  padding-top: 0rem;
}

@media (max-width: 767px) {
  .section-t8 {
    padding-top: 4rem;
  }
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
 
}

.gallery .container {
   padding-bottom: 119px;
   padding-top:100px;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

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



/*--------------------------------------------------------------
#  Publicaciones
--------------------------------------------------------------*/
#hotels {
  padding: 20px 0;
}

#hotels .container {
   padding-bottom: 80px;
   padding-top:80px;
}


#hotels .hotel {
  border: 0px solid #e0e5fa;
  background: #fff;
  margin-bottom: 30px;
}

#hotels .hotel:hover .hotel-img img {
  transform: scale(1.1);
}

#hotels .hotel-img {
  overflow: hidden;
  margin-bottom: 15px;
}

#hotels .hotel-img img {
  transition: 0.3s ease-in-out;
}

#hotels h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 200 0px;
}

#hotels a {
  color: #444444;
 }

#hotels a:hover {
  color: #1a48ed;
}

#hotels .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}


#hotels p {
  padding: 30 0px;
  margin-bottom: 20px;
  color: #848484;
  font-style:normal;
  font-size: 15px;
  
}

#hotels .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 0px;
  display: inline-block;
  padding: 11px 24px;
  border-radius: 3px;
  transition: 0.5s;
  line-height: 1;
  margin: 0px;
  color: #fff;
  background: #1a48ed;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#hotels .btn-get-started:hover {
  background: #3583f0;
  color: #fff;
}





/*--------------------------------------------------------------
# Fin header
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sections General (Titulos)
--------------------------------------------------------------*/
section {
  padding:30px 0;
  overflow: hidden;
}

.section-bg {
  /*Really? background-color: #;*/
  margin-top: 0px;
  margin-bottom: 30px;
  
}

.section-title {
  padding-bottom: 40px;
}

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

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #1a48ed;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 15px;
 }


/*--------------------------------------------------------------
# Baner Imagen (Secciones)
--------------------------------------------------------------*/
.ban {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("https://www.geofisica.unam.mx/assets4/img/cta-bg_.jpg") fixed center center;
  background-size: cover;
  padding:82px 0;
}

/*--------------------------------------------------------------
# SECCIONES: Intro Single
--------------------------------------------------------------*/

.intro-single {
  padding: 3rem 0 2rem;
  
}

@media (max-width: 767px) {
  .intro-single {
    padding-top: 9rem;
  }
}

.intro-single .title-single-box {
  padding: 1rem 0 1rem 2rem;
}

.intro-single .title-single-box {
  border-left: 3px solid #1a48ed;
}

.intro-single .title-single-box .title-single {
  font-weight: 600;
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  .intro-single .title-single-box .title-single {
    font-size: 2.1rem;
  }
}

@media (min-width: 992px) {
  .intro-single .title-single-box .title-single {
    font-size: 2.5rem;
  }
}

.intro-single .breadcrumb-box {
  padding: 1rem 0 0 .5rem;
}

.intro-single .breadcrumb {
  background-color: transparent;
  padding-right: 0;
  padding-left: 0;
}




/*------/ Secretaría academica /------*/

.aboutsa .content {
  padding: 0px 0;
  
}

.aboutsa .content h3 {
  font-weight: 700;
  font-size: 34px;
  
}

.aboutsa .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  
}


.aboutsa .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px 60px;
}



.aboutsa .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left:40px;
}

.aboutsa .image {
  background: url("https://www.geofisica.unam.mx/assets4/img/quintanar.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

@media (max-width: 991px) {
  .aboutsa .image {
    text-align: center;
  }
  .aboutsa .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .aboutsa .image img {
    max-width: 100%;
  }
}




/*--------------------------------------------
 DIRECCIÓN: Contacto director (colorIcon3)
-------------------------------------------*/

#contactd {
  padding: 0px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #1a48ed;
}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #1a48ed;
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}


/*--------------------------------------------------------------
# DIRECCIÓN: Contacto de Unidades 
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 120px;
}

.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #1a48ed;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 16px;
}

.departments .nav-link:hover {
  color: #5691CB;
}

.departments .nav-link.active {
  color: #041F7A;
  border-color: #1a48ed;
}

.departments .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a48ed;
}

.departments .details h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a48ed;
}

.departments .details h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #38393E;
}

.departments .details p {
  color: #777777;
}

.departments .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .departments .nav-link {
    border: 0;
    padding: 15px;
  }
  .departments .nav-link.active {
    color: #fff;
    background: #1977cc;
  }
}


/*--------------------------------------------------------------
# Plan de desarrollo
--------------------------------------------------------------*/
.pdd {
  background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.8)), url("https://www.geofisica.unam.mx/assets4/img/instituto.png") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.pdd h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.pdd p {
  color: #fff;
}

.pdd .pdd-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  background: #1a48ed;
  animation-delay: 0.8s;
}

.pdd.pdd-btn:hover {
  background: #8fc04e;
  border: 2px solid #8fc04e;
}






/*--------------------------------------------------------------
# SEDES: Contacto
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.sedes  .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);

}

.sedes  .info i {
  font-size: 20px;
  background: #1a48ed;
  color: #FFFFFF;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  
}


.sedes  .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000000;
}

.sedes  .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.sedes  .info .email p {
  padding-top: 5px;
}

.sedes  .info .social-links {
  padding-left: 60px;
}

.sedes  .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}



/*--------------------------------------------------------------
# Texto Sedes
--------------------------------------------------------------*/

.texsed .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-left: 20px;
}


.texsed .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  margin-left: 20px;
}






/*--------------------------------------------------------------
# HISTORIA
--------------------------------------------------------------*/

/*------/ Texto Historia /------*/

.post-information {
  padding: 0rem 0;
}

.post-content {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
}

.post-content .post-intro {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 4rem;
  line-height: 1.6;
  color: #000000;
  font-weight: 250;
  font-family: "Raleway", sans-serif;
  text-align: center;
}

.post-content p {
  margin-bottom: 1.7rem;
  text-align: justify;
  
}







/*--------------------------------------------------------------
# MISION/VISON 
--------------------------------------------------------------*/

/*------/ Texto /------*/

.about .content {
 padding: 50px 0px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
}

.about .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
}


.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}



.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  background: url("https://www.geofisica.unam.mx/assets4/img/about1.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }
  .about .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# MUSEO
--------------------------------------------------------------*/

/*------/ Texto /------*/

.museo .content {
 padding: 50px 0px;
}

.museo .content h3 {
  font-weight: 700;
  font-size: 34px;
}

.museo .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
}


.museo .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}



.museo .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.museo .image {
  background: url("https://www.geofisica.unam.mx/assets4/img/museo.png") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .museo .image {
    text-align: center;
  }
  .museo .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .museo .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# objetivos MISION/VISON 
--------------------------------------------------------------*/


.why-us .box:hover {
  background: #1a48ed;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}


.why-us {
  padding: 0;
  padding: 7rem 0 10rem;
  
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 20px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 27px;
  font-weight: 800;
  color: #1a48ed;
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #878383;
  font-size: 14px;
  margin: 0;
  padding: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# SECRETARIA ACADEMICA
--------------------------------------------------------------*/

/*---------   Asistentes --------------*/

.asis {
  background: #fff;
  padding: 60px 0;
}

.asis .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.asis .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}

.asis .member {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
  background: rgba(124, 197, 118, 0.8);
}

.asis .member a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.asis .member  a:hover {
  color: #1a48ed;
}

.asis .member  i {
  font-size: 18px;
  margin: 0 2px;
}

.asis .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
  
}

.asis .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 3px;
  color: #1a48ed;
}

.asis .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 20px;
  color: #888888;
}

.asis .member:hover  {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
  
}


/*--------------------------------------------------------------
# DIRECTOR
--------------------------------------------------------------*/


.aboutdr .content {
  padding: 0px 0;
  
}

.aboutdr .content h3 {
  font-weight: 700;
  font-size: 34px;
  
}

.aboutdr .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  
}


.aboutdr .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px 60px;
}



.aboutdr .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left:40px;
}

.aboutdr .image {
  background: url("https://www.geofisica.unam.mx/assets4/img/macias.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .aboutdr .image {
    text-align: center;
  }
  .aboutdr .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .aboutdr .image img {
    max-width: 100%;
  }
}






/*--------------------------------------------------------------
# SECRETARIAs DIRECTORIO
--------------------------------------------------------------*/

.title-box-d {
  padding-bottom: 0rem;
  margin-bottom: 0rem;
  position: relative;
}

.title-box-d .title-d {
  font-weight: 600;
  font-size: 2rem;
}

.title-box-d .title-d:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  /* Really?background-color: #;*/
  bottom: 20px;
  left: 0;
}
.card-box-d .content-d {
  opacity: 0;
  transition: .5s ease-in-out;
  transform: translateY(-40px);
  text-align: justify;
}

.color-text-a {
  color: #555555;
  text-align: justify;
}



/*---------- #Secretarias  Formatos ----------*/


.faq .faq-list ul {
  padding: 0;
  list-style: none;
  margin-bottom: 100px;
  /* Really? margin top: 20px; */
}

.faq .faq-list li + li {
  margin-top: 15px;
}



.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 50px;
  outline: none;
  color: #1a48ed;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #1a48ed;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  margin-left: 50px;
}

.faq .faq-list .icon-show {
  display: none;
  
}

.faq .faq-list a.collapsed {
  color: #343a40;
  margin-left: 7px;
}

.faq .faq-list a.collapsed:hover {
  color: #1a48ed;
 
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
 
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
 
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*---------- # Formatos ----------*/

/* Really?
..faq .faq-list .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
*/

.faq .faq-list .entry-title a {
  color: #111111;
  transition: 0.3s;
  font-size: 14px;
}

.faq .faq-list .entry-title a:hover {
  color: #1a48ed;
}



/*======================================
//--//--> Secretarias FOTO
======================================*/
.card-box-d .card-overlay-hover {
  transition: all .2s ease-in-out;
  padding: 15px 40px 15px 35px;
}

@media (min-width: 768px) {
  .card-box-d .card-overlay-hover {
    padding: 5px 15px 5px 10px;
  }
}

@media (min-width: 992px) {
  .card-box-d .card-overlay-hover {
    padding: 5px 40px 5px 35px;
  }
}

@media (min-width: 1200px) {
  .card-box-d .card-overlay-hover {
    padding: 15px 40px 5px 35px;
  }
}

.card-box-d .title-d {
  transition: .3s ease-in-out;
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem 0;
  transform: translateY(-20px);
  opacity: 0;
}

@media (min-width: 768px) {
  .card-box-d .title-d {
    font-size: 1.1rem;
    margin: .5rem 0;
  }
}

@media (min-width: 992px) {
  .card-box-d .title-d {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
}

@media (min-width: 1200px) {
  .card-box-d .title-d {
    font-size: 2rem;
    margin: 1rem 0;
  }
}

.card-box-d .content-d {
  opacity: 0;
  transition: .5s ease-in-out;
  transform: translateY(-40px);
}

@media (min-width: 768px) {
  .card-box-d .content-d {
    font-size: .8rem;
    margin: .5rem 0;
  }
}

@media (min-width: 768px) {
  .card-box-d .card-body-d p {
    margin-bottom: 8px;
    font-size: .8rem;
  }
}

@media (min-width: 992px) {
  .card-box-d .card-body-d p {
    margin-bottom: 12px;
    font-size: 1rem;
  }
}

.card-box-d .info-agents {
  opacity: 0;
  transition: .5s ease-in-out;
}

.card-box-d .card-footer-d {
  transition: .5s ease-in-out;
  transform: translateY(40px);
  opacity: 0;
  position: absolute;
  width: 100%;
  bottom: 10px;
  left: 0;
}

.card-box-d .list-inline-item:not(:last-child) {
  margin-right: 25px;
}

.card-box-d:hover .card-overlay-hover {
  background-color: #1a48ed;
  opacity: .9;
}

.card-box-d:hover .title-d,
.card-box-d:hover .content-d,
.card-box-d:hover .info-agents,
.card-box-d:hover .card-footer-d {
  opacity: 1;
  transform: translateY(0);
}


.agent-info-box .socials-footer {
  margin-top: 2rem;
}

.agent-info-box .socials-footer li {
  margin-right: 1.5rem;
}

.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.link-two {
  color: #FFFFFF;
  transition: all .5s ease;
}

.link-one {
  color: #FFFFFF;
  transition: all .5s ease;
}

.link-one:hover {
  color: #000000;
  text-decoration: none;
}

.link-icon {
  color: #000000;
  font-weight: 500;
}

.link-icon span {
  font-size: 14px;
  padding-left: 4px;
  vertical-align: middle;
}

.link-a {
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .link-a {
    font-size: .9rem;
  }
}

@media (min-width: 992px) {
  .link-a {
    font-size: 1rem;
  }
}

.link-a:hover {
  color: #ffffff;
  text-decoration: none;
}

.link-a span {
  font-size: 18px;
  vertical-align: middle;
  margin-left: 5px;
}

@media (min-width: 768px) {
  .link-a span {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .link-a span {
    font-size: 18px;
  }
}

.text-brand {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .text-brand {
    font-size: 1.8rem;
  }
}

/*------/ Directorio E/T /------*/
.color-a {
  color: #555555;
}

.color-b {
  color: #2eca6a;
}

.color-d {
  color: #adadad;
}

.color-text-a {
  color: #555555;
}

.no-margin {
  margin: 0;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffc451;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}


/*--------------------------------------------------------------
# Laboratorios 1 
--------------------------------------------------------------*/



/*------/ texto/------*/

.aboutl .content {
  padding: 30px 0;
  
}

.aboutl .content h3 {
  font-weight: 700;
  font-size: 34px;
  
}

.aboutl .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  
}


.aboutl .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px 60px;
}



.aboutl .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left:40px;
}

.aboutl .image {
  background: url("https://www.geofisica.unam.mx/assets4/img/about3.png") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .aboutl .image {
    text-align: center;
  }
  .aboutl .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .aboutl .image img {
    max-width: 100%;
  }
}







/*------/ laboratorios divicion de imágenes /------*/

.services_l {
  padding-bottom: 30px;

}

.services_l .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
  background: transparent;
}

.services_l .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.services_l .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.services_l .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
  text-align: justify;
}

.services_l .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.services_l .card-title a {
  color: #213b52;
  transition: 0.3s;
}

.services_l .card-text {
  color: #5e5e5e;
   font-size: 14px;
}

.services_l .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.services_l .read-more a:hover {
  color: #1a48ed;
}

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

.services_l .card:hover .card-body {
  border-color: #1a48ed;
}

.services_l .card:hover .card-body .card-title a {
  color: #1a48ed;
}




/*======================================
//--//-->  / Laboratorios recuadros/
======================================*/


/*------/ Laboratorios recuadros/------*/


.card-header-b {
  padding: 1rem;
  color: #ffffff;
  position: absolute;
  bottom: 40px;
  z-index: 5;
}

@media (min-width: 768px) {
  .card-header-b {
    bottom: 0px;
  }
}

@media (min-width: 992px) {
  .card-header-b {
    bottom: 20px;
  }
}

.card-header-b .category-b {
  font-size: .9rem;
  background-color: #1a48ed;
  padding: .3rem .7rem;
  color: #FFFFFF;
  letter-spacing: 0.030em;
  border-radius: 0px;
  text-decoration: none;
}

.card-header-b .title-2{
  margin-bottom: 0;
  padding: .6rem 0;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .card-header-b .title-2 {
    font-size: 1.2rem;
  }
}

@media (min-width: 992px) {
  .card-header-b .title-2 {
    font-size: 1.2rem;
  }
}

.card-header-b .title-2 a {
  color: #ffffff;
  text-decoration: none;
}

.card-header-b .date-b {
  color: #d8d8d8;
  font-size: 1rem;
  padding-bottom: 10rem;
}

@media (min-width: 768px) {
  .card-header-b .date-b {
    font-size: .9rem;
  }
}

@media (min-width: 992px) {
  .card-header-b .date-b {
    font-size: 1rem;
  }
}

/*------/ News Single /------*/
.post-information {
  padding: 3rem 0;
}

.post-content {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
}

.post-content .post-intro {
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 4rem;
  line-height: 1.6;
  color: #000000;
  font-weight: 400;
}

.post-content p {
  margin-bottom: 1.7rem;
}

.post-content .blockquote {
  padding: 1rem 3rem 1.7rem 3rem;
  border-left: 3px solid #2eca6a;
  color: #000000;
}

.post-content .blockquote {
  text-align: left;
  padding: 0;
}

.post-footer {
  padding: 3rem 0 4rem;
}

.post-share .socials {
  display: inline-block;
}

.post-share .socials li {
  margin-left: .6rem;
}

/*------/ Comments /------*/
.box-comments .list-comments li {
  padding-bottom: 3.5rem;
}

.box-comments .list-comments .comment-avatar {
  display: table-cell;
  vertical-align: top;
}

.box-comments .list-comments .comment-avatar img {
  width: 80px;
  height: 80px;
}

.box-comments .list-comments .comment-author {
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .box-comments .list-comments .comment-author {
    font-size: 1.5rem;
  }
}

.box-comments .list-comments .comment-details {
  display: table-cell;
  vertical-align: top;
  padding-left: 25px;
}

.box-comments .list-comments .comment-description {
  padding: .8rem 0 .5rem 0;
}

.box-comments .list-comments a {
  color: #000000;
}

.box-comments .list-comments span {
  display: block;
  color: #2B2A2A;
  font-style: italic;
}

.box-comments .comment-children {
  margin-left: 40px;
}

@media (max-width: 767px) {
  .card-box-a,
  .card-box-b,
  .card-box-c,
  .card-box-d {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .grid .card-box-a,
  .grid .card-box-b,
  .grid .card-box-c,
  .grid .card-box-d {
    margin-bottom: 2.5rem;
  }
}

.card-box-a,
.card-box-b,
.card-box-d {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-box-a .img-a,
.card-box-a .img-b,
.card-box-b .img-a,
.card-box-b .img-b {
  transition: .8s all ease-in-out;
}

@media (min-width: 768px) {
  .card-box-a:hover .img-a,
  .card-box-a:hover .img-b,
  .card-box-b:hover .img-a,
  .card-box-b:hover .img-b {
    transform: scale(1.2);
  }
}

@media (min-width: 768px) {
  .card-box-a .price-a,
  .card-box-b .price-a {
    font-size: .9rem;
  }
}

@media (min-width: 992px) {
  .card-box-a .price-a,
  .card-box-b .price-a {
    font-size: 1rem;
  }
}

.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.card-shadow {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-shadow:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 11%, rgba(0, 0, 0, 0.65) 80%);
}

/*------/ Nav Pills  /------*/
.nav-pills-a.nav-pills .nav-link {
  color: #000000;
  position: relative;
  font-weight: 600;
}

.nav-pills-a.nav-pills .nav-link.active {
  background-color: transparent;
}

.nav-pills-a.nav-pills .nav-link.active:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #2eca6a;
  z-index: 2;
}



/*------/ Pagination-a /------*/

.pagination-a .pagination .page-link {
  margin:  .3rem;
  border-color: transparent;
  padding: .5rem .8rem;
  color: #000000;
  
}

.pagination-a .pagination .page-link:hover, .pagination-a .pagination .page-link:active, .pagination-a .pagination .page-link:focus {
  background-color: #1a48ed;
  color: aliceblue;
}

.pagination-a .pagination .page-link span {
  font-size: 1.2rem;
}

.pagination-a .pagination .next .page-link {
  padding: .4rem .9rem;
}

.pagination-a .pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-a .pagination .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-a .pagination .page-item.disabled .page-link {
  padding: .4rem .9rem;
  color: #555555;
}

.pagination-a .pagination .page-item.active .page-link {
  background-color: #1a48ed;
  color: aliceblue;
  
}

.a {
  color: #FFFFFF;
  font-size: 1.3rem;
}


/*======================================
//--//-->  / Geoficosas/
======================================*/



/* Numeros de Revistas
--------------------------------*/
#portfolio {
  padding: 20px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 7 35px 0;
  list-style: none;
  text-align: center;
}


#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  background: #18d26e;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
  /* Really? box-shadow: */
}

#portfolio .portfolio-item figure:hover img {
  opacity: 0.9;
  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
  background: #18d26e;
}

#portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 20px;
  height: 95px;
  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
  color:#1A48ED;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
}


#portfolio .portfolio-item .portfolio-info p a {
  padding: 0;
  margin: 0;
  color: #636363;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-info p a:hover {
  padding: 0;
  margin: 0;
  color: #1A48ED;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
}


/* Portfolio Details
--------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #18d26e !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Libro
--------------------------------------------------------------*/

#libro-us img {
  max-width: 100%;
  margin-bottom: 100px; 
}

#libro-us p{
	
  margin-bottom: 0;
  text-align: justify;
  text-align: justify;
  color: #848484;
	
}

#libro-us .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 0px;
  color: #fff;
  background: #1a48ed;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#libro-us .btn-get-started:hover {
  background: #3583f0;
}

/*--------------------------------------------------------------
# Servicio Socilal
--------------------------------------------------------------*/

.aboutss .content {
  padding: 0px 0;
  
}

.aboutss .content h3 {
  font-weight: 700;
  font-size: 34px;
  
}

.aboutss .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  
}


.aboutss .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px 60px;
}



.aboutss .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left:40px;
}

.aboutss .image {
  background: url("https://www.geofisica.unam.mx/assets4/img/ss.png") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.aboutss strong{
  color:#1a48ed;
	
	
}

@media (max-width: 991px) {
  .aboutss .image {
    text-align: center;
  }
  .aboutss .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .aboutss .image img {
    max-width: 100%;
  }
}



/*--------------------------------------------------------------
# Edu Continua
--------------------------------------------------------------*/

.educon .content {
  padding: 0px 0;
  
}

.educon .content h3 {
  font-weight: 700;
  font-size: 34px;
  
}

.educon .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  
}


.educon .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px 60px;
}



.educon .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left:40px;
}

.educon .image {
  background: url("https://www.geofisica.unam.mx/recursos/img/educacion-continua/ejemplo.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.educon strong{
  color:#1a48ed;
	
}



@media (max-width: 991px) {
  .educon .image {
    text-align: center;
  }
  .educon .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .educon .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Posgrados
--------------------------------------------------------------*/

.post .content {
  padding: 0px 0;
  
}

.post .content h3 {
  font-weight: 700;
  font-size: 34px;
  
}

.post .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  
}


.post .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px 60px;
}



.post .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left:40px;
}

.post .image {
  background: url("https://www.geofisica.unam.mx/assets4/img/edupos.png") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.post strong{
  color:#1a48ed;
	
}



@media (max-width: 991px) {
  .post .image {
    text-align: center;
  }
  .post .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .post .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Comunicacion S
--------------------------------------------------------------*/

.comu .content {
  padding: 30px 0;
  
}

.comu .content h3 {
  font-weight: 700;
  font-size: 34px;
  
}

.comu .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  
}


.comu .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px 60px;
}



.comu .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left:40px;
}

.comu .image {
  background: url("https://www.geofisica.unam.mx/recursos/img/comunicacion/ejemplo.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .comu .image {
    text-align: center;
  }
  .comu .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .comu .image img {
    max-width: 100%;
  }
}





.comus .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.comus .content ul {
  list-style: none;
  padding: 0;
}

.comus .content ul li {
  padding-left: 28px;
  position: relative;
  text-align: justify;
  color: #848484;
  font-size: 14px;
  

}

.comus .content ul li + li {
  margin-top: 10px;
  text-align: justify;
  color: #848484;
  

}

.comus .content ul i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 16px;
  color: #1a48ed;
  line-height: 1;
}

.comus .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Vinculación
--------------------------------------------------------------*/

 .vinculacion .content {
  padding: 0px 0;
  
}

.vinculacion .content h3 {
  font-weight: 700;
  font-size: 34px;
  
}

.vinculacion .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  
}


.vinculacion.content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px 60px;
}



.vinculacion.content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left:40px;
}

.vinculacion .image {
  background: url("https://www.geofisica.unam.mx/recursos/img/vinculacion/ejemplo.jpg") center center no-repeat;
  background-size: cover;
  min-height: 300px;
}

@media (max-width: 991px) {
  .vinculacion .image {
    text-align: center;
  }
  .vinculacion .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .vinculacion .image img {
    max-width: 100%;
  }
}




/*--------------------------------------------------------------
# Editorial
--------------------------------------------------------------*/


.editorial .content {
  padding: 0px 0;
  
}

.editorial .content h3 {
  font-weight: 700;
  font-size: 34px;
  
}

.editorial .content p {
  margin-bottom: 0;
  text-align: justify;
  color: #848484;
  
}


.editorial.content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px 60px;
}



.editorial.content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left:40px;
}

.editorial .image {
  background: url("https://www.geofisica.unam.mx/assets4/img/edit.png") center center no-repeat;
  background-size: cover;
  min-height: 300px;
}

@media (max-width: 991px) {
  .editorial .image {
    text-align: center;
  }
  .editorial .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .editorial .image img {
    max-width: 100%;
  }
}





/*--------------------------------------------------------------
#Eventos 
--------------------------------------------------------------*/
.courses .course-item {
  border-radius: 5px;
  border: 1px solid #eef0ef;
}
.courses .course-content {
  padding: 15px;
}
.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}
.courses .course-content h3 a {
  color: #37423b;
  transition: 0.3s;
}
.courses .course-content h3 a:hover {
  color: #1a48ed;
}
.courses .course-content p {
  font-size: 14px;
  color: #777777;
  text-align: justify;
}
.courses .course-content h4 {
  font-size: 14px;
  background: #1a48ed;
  padding: 7px 14px;
  color: #fff;
  margin: 0;
}
.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}
.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}
.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}
.courses .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}
.courses .trainer .trainer-rank {
  font-size: 18px;
  color: #657a6d;
}



/*--------------------------------------------------------------
#Proyectos
--------------------------------------------------------------*/


.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 400px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #1a48ed;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 14px;
  padding-right: 4px;
}

.blog .entry .entry-meta a {
  color: #5e5e5e;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
  text-align: justify;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #1a48ed;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #e65d5f;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}



.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #8b8b8b;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #1a48ed;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}




.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #1a48ed;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.blog .sidebar .search-form form button:hover {
  background: #2b2b2b;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #515151;
}

.blog .sidebar .categories ul a:hover {
  color: #1a48ed;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #777777;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: black;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #1a48ed;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #777777;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #111111;
  background: #111111;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}



/*--------------------------------------------------------------
# Igef en medios Lista
--------------------------------------------------------------*/
#schedule {
  padding: 60px 0 60px 0;
}
#schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}
#schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}
#schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #0e1b4d;
  color: #fff;
  padding: 10px 100px;
}
@media (max-width: 991px) {
  #schedule .nav-tabs a {
    padding: 8px 60px;
  }
}
@media (max-width: 767px) {
  #schedule .nav-tabs a {
    padding: 8px 50px;
  }
}
@media (max-width: 480px) {
  #schedule .nav-tabs a {
    padding: 8px 30px;
  }
}
#schedule .nav-tabs a.active {
  background-color: #f82249;
  color: #fff;
}
#schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}
@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}
#schedule .tab-pane {
  transition: ease-in-out 0.2s;
}
#schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}
#schedule .schedule-item:hover {
  background-color: #fff;
}
#schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}
#schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}
#schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}
#schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
#schedule .schedule-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}
#schedule .schedule-item p {
  font-style: italic;
  color: #152b79;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Servicio Social
--------------------------------------------------------------*/
.faq {
  padding: 0;
}

.faq .content {
  padding: 60px 100px 0 100px;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #848484;
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.faq .accordion-list {
  padding: 0 100px 60px 100px;
}

.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li + li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 4px;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
}

.faq .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  text-align: justify;
}

.faq .accordion-list .icon-show {
  display: none;
}

.faq .accordion-list a.collapsed {
  color: #343a40;
}

.faq .accordion-list a.collapsed:hover {
  color: #3583f0;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .faq .content, .faq .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .faq {
    /* img {
      padding-top: 30px;
    } */
  }
  .faq .content {
    padding-top: 30px;
  }
  .faq .accordion-list {
    padding-bottom: 30px;
  }
}




/*--------------------------------------------------------------
# historia
--------------------------------------------------------------*/
.historia .content h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #052c3f;
}

.historia .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
  color: #4d8090;
}

.historia .content ul {
  list-style: none;
  padding: 0;
}

.historia .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.historia .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #85b0be;
}

.historia .content p:last-child {
  margin-bottom: 0;
  text-align: justify;
}





@media (max-width: 419px) {
  header {
    top: 50px !important;
  }
  .logos-test {
    margin: auto;
  }
}


@media (max-width: 519px) {
  .logos-test {
    margin: auto;
  }
}

@media (min-width: 419px) {
  .mobile-nav-toggle {
    top: 75px;
  }
}

@media (min-width: 576px) {
  .mobile-nav-toggle {
    margin-right: 15px;
  }
  #topbarSocial {
    margin-left: 0;
  }
  .topbar-social a.youtube {
    margin-top: -1.5px;
  }
  a.nav-link {

  }
}

@media (max-width: 991px) {
  .logos-test {
    margin: auto;
  }
}

@media (min-width: 992px) {
  .nav-menu a {
    margin-left: -5px !important;
    margin-right: -2px !important;
  }
  .nav-menu a::after {
    margin-left:  -3px !important;
  }
}

@media (min-width: 1200px) {
  .nav-menu a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .nav-menu a::after {
    margin-left:  0 !important;
  }
}




footer {
  background-color: rgb(26,25,25);
  font-size: 14px;
  padding-top: 50px;
}

footer a {
  color: #eee;
  text-decoration: none;
  transition: all 0.5s;
}

footer a:hover {
  color: #106eea !important;
}

footer a.chevron-right-icon:before {
  color: #106eea;
  margin-left: 2px;
  margin-right: 6px;
  font-size: 14px;
  font-weight: 700;
  vertical-align: top;
}

footer .contact :not(.social) a {
  line-height: 20px;
  padding-left: 36px;
  padding-right: 6px;
  text-indent: -25px;
}

footer .link li {
  border-bottom: 1px solid #263044;
  padding-bottom: 8px;
  margin-top: 10px;
}

footer ul {
  list-style: none;
  margin-left: -45px;
}

footer .disclaimer {
  font-size: 13px;
  color: #eee;
  text-align: justify;
  margin-bottom: 15px;
}

footer .col {
  margin-bottom: 15px;
}

footer .social {
  font-family: "bootstrap-icons";
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 19px;
  margin-left: -6px;
}

footer .social a {
  background-color: #106eea;
  border-radius: 50%;
  color: #fff;
  padding: 9px;
  margin-right: 8px !important;
  transition: all 1s !important;
}

footer .social a:focus {
  background-color: #106eea;
  color: #fff;
}

footer .social a:hover {
  background-color: #fff !important;
}

footer .contact-data a:before {
  font-family: "bootstrap-icons";
  color: #106eea;
  margin-right: 6px;
  font-size: 18px;
  vertical-align: top;
}

footer .footer-links a:before, footer .footer-more a:before {
  font-family: "bootstrap-icons";
}
footer a.chevron-right-icon:before {
  content: "\F285";
}
footer a.geolocation-icon:before {
  content: "\F3E8";
}
footer a.envelope-icon:before {
  content: "\F32F";
}
footer a.telephone-icon:before {
  content: "\F5C1";
}
footer .social a.facebook-icon:before {
  content: "\F344";
}
footer .social a.twitter-icon:before {
  content: "\F8DB";
}
footer .social a.youtube-icon:before {
  content: "\F62B";
}
footer .social a.instagram-icon:before {
  content: "\F437";
}
footer .social a.tiktok-icon:before {
  content: "\F6CC";
}
footer .social a.youtube-icon {
  margin-top: 8px;
  font-size: 20px !important;
}

footer .last {
  background-color: #171616;
  padding-top: 10px;
  padding-bottom: 30px;
  font-family: "Open Sans", sans-serif;
}

footer .last a {
  font-size: 13px;
  color: #106eea !important;
  text-align: center;
}

footer .last .creditos {
  margin-right: 20px;
}

footer .last a:hover {
  color: #fff !important;
}

.footer-title {
  border-bottom: 2px solid #106eea;
  color: #fff;
  font-family: "Raleway", sans-serif !important;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.footer-logos .escudo-unam img {
  height: 45px;
  margin-right: 10px;
  transition: all 0.5s;
}

.footer-logos .escudo-unam:hover img, .footer-logos .logo-geofisica:hover img {
  filter: opacity(0.8);
}

.footer-logos .logo-geofisica img {
  margin-top: -2px;
  height: 50px !important;
  transition: all 0.5s;
}

.igef-footer-title {
  letter-spacing: 0.4px;
  color: #fff;
  margin-top:  10px;
  margin-bottom: 5px;
}

.igef-footer-title span {
  font-weight: 800;
}

.footer-content a {
  font-family: "Open Sans", sans-serif;
  color: #eee !important;
  margin-bottom: 8px;
}

.footer-content.contact-data a {
  margin-bottom: 6px !important;
}

.footer-revista, .footer-bcct, .footer-igualdad {
  text-indent: -23px;
  padding-left: 23px; 
}

.number {
  font-family: "Open Sans", sans-serif;
}

ion-icon {
  pointer-events: none;
}

@media(min-width:768px){
  footer .last .container {
    text-align: center;
  }
}

@media(min-width:992px) {
  .footer-tel {
    font-size: 13px;
  }
}

@media(min-width:1200px) {
  .footer-tel {
    font-size: 14px;
  }
}

.footer-content .footer-tel {
  display: block;
}




/* CUSTOM */

.topbar {
  background-color: #106eea;
  min-height: 50px;
}


.highlight {
  line-height: 16px;
  margin-top: 2px;
}

.highlight a {
  padding-left: 0;
  padding-right: 0;
  margin-right: 6px;
}

.topbar-social a {
  font-family: "bootstrap-icons";
}

.topbar-social a.facebook:before {
  content: "\F344";
}
.topbar-social a.twitter:before {
  content: "\F8DB";
}
.topbar-social a.youtube:before {
  content: "\F62B";
}
.topbar-social a.instagram:before {
  content: "\F437";
}
.topbar-social a.tiktok:before {
  content: "\F6CC";
}
.topbar-social a.youtube {
  margin-top: 5px;
  font-size: 20px !important;
}

.topbar .nav-link {
  color: #fff;
  font-size: 12px;
  opacity: 0.85;
  transition: opacity 0.6s;
}

.topbar a:hover {
  opacity: 1;
}

.topbar-social a {
  font-size: 18px !important;
  margin-top: 6px;
  padding-left: 1px;
  padding-right: 1px;
  margin-left: 6px;
}

.navbar-brand {
  opacity:  0.85;
  transition: opacity 0.6s;
}

.navbar-brand:hover {
  opacity:  1;
}

.navbar-brand.logo-igum {
  filter:  brightness(10);
  margin-top: 3px;
}

.navbar a {
  font-size: 13px;
  transition: color .4s;
}

ion-icon {
  pointer-events: none;
}

.navbar-container {
  width: 992px;
}

.dropdown-toggle:after {
  display:  none; /*Really*/
}

.navbar-brand.escudo-unam {
  margin-left: 68px !important;
}

.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 14, 9, 0.7) !important;
}


@media (min-width: 360px) {
  .topbar .nav-link.social {
    margin-left: 10px !important;
  }
  .topbar {
    min-height: 40px !important;
  }
  /* 
  .topbar-social a {
    margin-top: 0;
  }
  .topbar-social a.youtube {
    margin-top: -2px;
  }
  */
}

@media (min-width: 380px) {
  .highlight {
    margin-top: 4px;
  }
  .highlight a {
    margin-right: 14px !important;
  }
  .topbar-social {
    margin-left: 60px;
  }

 /* .topbar-social a {
    margin-bottom: -6px !important;
  }*/
}

@media (min-width: 420px) {
  .topbar-social {
    margin-left: 15px;
  }
  .topbar-social a {
    margin-top: 0;
  }
  .topbar-social a.youtube {
    margin-top: -2px;
  }
}

@media (min-width: 460px) {
  .topbar-social {
    margin-left: 20px;
  }
}

/*
@media (max-width: 767px) {
  .topbar-social {
    min-width: 100%;
  }
}
*/

@media (min-width: 768px) {
  .highlight a {
    margin-right: 22px;
  }
  .topbar-social a {
    margin-right: 6px !important;
  }
}

@media (min-width: 992px) {
  .highlight a {
    margin-right: 22px !important;
  }
  .topbar-social {
    margin-right: 8px !important;
    margin-left: 120px;
  }
  .navbar-brand.escudo-unam {
    margin-left: 50px;
  }
}

@media (min-width: 1200px) {
  #topbarSocial {
    margin-left: 160px !important; 
    margin-right: 50px !important;
  }
}

@media (max-width: 379px) {
  .navbar-brand.escudo-unam {
    margin-left: 0px;
  }
}

#modalCreditos .modal-title {
  font-weight:  700;
}
#modalCreditos p {
  margin-bottom: 0;
}
.credits-content {
  margin-bottom: 25px;
}
.credits-activity {
  font-style: italic;
}
.btn-close-credits {
  background:  #106eea;
  border-color: #106eea;
}