/**

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

section {
  padding: 60px 0;
}

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

a {
  color: #4C4848;
  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, .back-to-top:focus {
  position: fixed;
  display: none;
  background: var(--main-color);
  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: var(--main-color) !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 #1a48ed;
  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(0, 0, 0, 0.75);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

h1.logo {
  max-width: 180px;
}

@media(min-width: 468px) {
  h1.logo {
    max-width: inherit;
  }
}

#header .logo {
  font-size: 14px;
  margin: 0;
  padding: 0;
  line-height: 01;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 16px;
}

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

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  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: 22px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.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: #2a2a2a;
}

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

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 4px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 13px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 2px solid #1a48ed;
}

.get-started-btn:hover {
  background: #1a48ed;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

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

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

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  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: #2a2a2a;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #1a48ed;
  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(17, 17, 17, 0.6);
  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;
}

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


/*--------------------------------------------------------------
# Slide Hero Section
--------------------------------------------------------------*/
#hero-s {
  width: 100%;
  height: 80vh;
  background-color: rgba(31, 38, 39, 0.8);
  overflow: hidden;
  position: relative;
  padding: 0;
}

#hero-s .carousel-item {
  width: 100%;
  height: 80vh;
  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.7);
  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: 48px;
  font-weight: 700;
}

#hero-s p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px 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;
}

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



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

.section-bg {
  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;
 }



/*--------------------------------------------------------------
# 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: #1a48ed;
  bottom: 0;
  left: calc(50% - 20px);
}

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

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

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

/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #000;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
  color: #1a48ed;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #1a48ed;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/
#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

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

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

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #1a48ed;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#about .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #1a48ed;
}

#about .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
  color: #1a48ed;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
  text-align: center;
}

/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #1a48ed;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #1a48ed;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1a48ed;
  border: 2px solid #1a48ed;
}



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



/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faqa {
  padding: 0;
}

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

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

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

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

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

.faqa .accordion-list {
  padding: 0 10px 0 10px;
}

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

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

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

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


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

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

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

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

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

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

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

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

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

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



/*--------------------------------------------------------------
# Faq reglamentos 
--------------------------------------------------------------*/
.faqr {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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







/*--------------------------------------------------------------
# consejos
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Baner Imagen (Secciones)
--------------------------------------------------------------*/
.ban {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../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;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing-area {
  background: rgba(0, 0, 0, 0.0) none repeat scroll 0 0;
}

.pri_table_list {
  border: 0px;
  text-align: center;
  transition: all 0.4s ease 0s;
 
}

.pri_table_list h3 span {
  font-size: 16px;
}

.pri_table_list ol li {
  border-bottom: 1px solid #ccc;
  color: #666;
  padding: 12px 15px;
  position: relative;
  text-align: left;
}

.pri_table_list li.check.cross::after {
  content: "\f00d";
  font-family: fontawesome;
  font-size: 14px;
  position: absolute;
  right: 50px;
  top: 12px;
  color: indianred;
}

.pri_table_list li.check::after {
  content: "\f00c";
  font-family: fontawesome;
  font-size: 14px;
  position: absolute;
  right: 50px;
  top: 12px;
  color: #3EC1D5;
}

.pri_table_list button {
  background: #444 none repeat scroll 0 0;
  border: 1px solid #444;
  color: #fff;
  margin-bottom: 25px;
  padding: 10px 35px;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
  border-radius: 30px;
}

.pri_table_list > h3 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 25px;
  padding: 30px 0 20px;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
}

.pri_table_list ol {
  list-style: outside none none;
  margin: 0;
  padding: 0 0 25px;
}

.pri_table_list.active {
  transition: all 0.4s ease 0s;
  position: relative;
  overflow: hidden;
}

.saleon {
  background: #3EC1D5 none repeat scroll 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  left: -26px;
  padding: 2px 25px;
  position: absolute;
  text-transform: uppercase;
  top: 16px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}

.pri_table_list > button:hover {
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
}

.active > h3 {
  background: #f5f5f5 none repeat scroll 0 0;
  color: #333;
  transition: all 0.4s ease 0s;
}

.active > button {
  background: #3EC1D5 none repeat scroll 0 0;
  border: 1px solid #3EC1D5;
  color: #fff;
  transition: 0.4s;
}

.active > button:hover {
  background: #333 none repeat scroll 0 0;
  border: 1px solid #333;
  color: #fff;
  transition: 0.4s;
}



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 10px;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #656262;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #ff5821;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #313030;
  text-align: left;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ff5821;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #ff5821;
  display: inline-block;
  padding: 6px 35px 8px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4);
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #ff7e54;
}

.pricing .featured h3 {
  color: #fff;
  background: #ff5821;
  box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4);
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ff5821;
  color: #fff;
}




/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.servicess {
  padding-bottom: 30px;
}

.servicess .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.servicess .icon {
  display: flex;
  justify-content: center;
}

.servicess .icon i {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #1a48ed;
  font-size: 40px;
  overflow: hidden;
  padding-top: 20px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.servicess .icon-box:hover .icon i {
  box-shadow: 0px 0 30px rgba(66, 139, 202, 0.5);
}

.servicess .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.servicess .title a {
  color: #444;
  transition: 0.3s;
}

.servicess .title a:hover {
  color: #1a48ed;
}

.servicess .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #1a48ed;
  bottom: 0;
  left: calc(50% - 25px);
}

.servicess .description {
  line-height: 24px;
  font-size: 14px;
}




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: var(--main-color) !important;
}

footer a.chevron-right-icon:before {
  color: var(--main-color);
  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: var(--main-color);
  border-radius: 50%;
  color: #fff;
  padding: 9px;
  margin-right: 8px !important;
  transition: all 1s !important;
}

footer .social a:focus {
  background-color: var(--main-color);
  color: #fff;
}

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

footer .contact-data a:before {
  font-family: "bootstrap-icons";
  color: var(--main-color);
  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: "\F5EF";
}
footer .social a.instagram-icon:before {
  content: "\F437";
}
footer .social a.tiktok-icon:before {
  content: "\F6CC";
}
footer .social a.youtube-icon:before {
  content: "\F62B";
}
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: var(--main-color) !important;
  text-align: center;
}

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

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

.footer-title {
  border-bottom: 2px solid var(--main-color);
  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;
}

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