:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root {
  --background-color: #ffffff;
  --rosa-color: #cd42a5;
  --default-color: #444444;
  --heading-color: #303437;
  --accent-color: #0097a6;
  --accent-color-r: 68;
  --accent-color-g: 151;
  --accent-color-b: 168;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #444444;
  --nav-hover-color: #0097a6;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #0097a6;
}

.light-background {
  --background-color: #f7fbfe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1d222d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #31394c;
  --contrast-color: #ffffff;
}

.travel-background {
  --background-color: #005659;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #31394c;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}


/* General  */

body {
  color: var(--default-color);
  background-color: var(--accent-color);
  font-family: var(--default-font);

}

.content{
	font-size:18px;
	}
.content2{
	font-size:17px;
	}
table td{
	font-size:16px;
	}
	table tr th{
	font-size:0.94em;
		}
a {
  color: #008d9b;
/* color: var(--accent-color);  0097a6*/
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--rosa-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0 0 6px 0;
  transition: all 0.5s;
  z-index: 997;

}
.header-container {
  padding-top: 6px;
}
.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 25px;
}

.header .header-social-links a {
  color:rgba(64,64,64,0.85);
  padding-left: 3px;
  display: inline-block;
  transition: 0.3s;
  font-size: 15px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}
.header img{
margin-left:50px;
	}
@media (max-width: 991px) {
.header img{
margin-left:12px;
	}
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 8px 14px rgba(0, 0, 0, 0.35);
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.top-bar {
  background-color: #005659;
  padding: 6px 0;
  width: 100%;

}

.top-bar .top-menu li {
  margin-left: 15px;
}

.top-bar .top-menu li:first-child {
  margin-left: 0;
}

.top-bar .top-menu a {
  color: #fff;
  padding-right:10px;
  font-size: 15px;
}

.top-bar .top-menu a:hover {
	color:#b7f8ff;
}

/* Oculta la barra superior en vista móvil */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 14px;
    margin-left: 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

    .navmenu > ul > li:hover > a,
    .navmenu > ul > li.active > a,
    .navmenu > ul > li.active:focus > a {
        color: var(--contrast-color);
        background-color: var(--nav-hover-color);
    }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    margin: 0;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

    .navmenu ul li ul {
        display: none; /* Oculta todos los submenús por defecto */
    }

    /* Este estilo asegura que los submenús de los elementos activos solo se muestran cuando se hace clic */
    .navmenu ul li.dropdown.active ul {
        display: block; /* Muestra el dropdown del elemento activo */
    }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--accent-color-r), var(--accent-color-g), var(--accent-color-b),0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }


    .navmenu li:hover>a,
    .navmenu .active>a,
    .navmenu .active:focus
    {
        color: var(--nav-dropdown-hover-color);
    }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid rgba(64,64,64,0.10);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }


  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(247, 251, 254, 1);
  }



  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size:15px;

  padding: 50px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 20px;
}

.footer h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.20);
  font-size: 18px;
  color: rgba(255,255,255,0.70);
  margin-right: 12px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color:#fff;
}

.footer ul a{
	color: #fff;
	transition: 0.3s;


	}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul a:hover{
	color: var(--accent-color);
	}
.footer .phone a{
	color: var(--accent-color);
	transition: 0.3s;
	font-size:15px;
		}

.footer .phone li{

margin-bottom:8px;

}
.footer .phone a:hover{
color: #fff;

}

.footer .pie {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.footer .pie p {
  margin-bottom: 0;
}
.footer .domain a:hover {
  color:#fff;
}

.footer .privacidad {
  margin-top: 5px;
}
.footer .privacidad a:hover {
  color:#fff;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;

}

.scroll-top i {
  font-size: 13px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--accent-color-r), var(--accent-color-g), var(--accent-color-b),0.80);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(64,64,64,0.30);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 84px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: rgba(64,64,64,0.40);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--rosa-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}


.hero .carousel {
  width: 100%;
  min-height: 440px;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}


@media (max-width: 575.98px) {
  .hero .carousel {
    min-height: 490px; /* Valor para pantallas extra pequeñas */
  }
}


@media (min-width: 576px) and (max-width: 767.98px) {
  .hero .carousel {
    min-height: 600px; /* Valor para pantallas pequeñas */
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  .hero .carousel {
    min-height: 710px; /* Valor para pantallas medianas */
  }
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

}

.hero .bg-gradiente1{
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e5e5e5" /><polygon points="0,0 100,0 100,50" fill="%230097a6" /><polygon points="0,50 100,0 100,100" fill="%2300b4c6" /></svg>');
background-size: cover;
}
.hero .bg-gradiente2 {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e5e5e5" /><path d="M 0 0 Q 30 50 0 100 T 100 100 V 0 Z" fill="%2300aabb" /><path d="M 0 0 Q 50 50 100 0 T 100 100 V 0 Z" fill="%230097a6" /></svg>');
background-size: cover;
}

.hero .bg-gradiente3 {
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e5e5e5" /><path d="M 0 0 C 50 20, 50 80, 100 0 L 100 100 L 0 100 Z" fill="%230097a6" /><path d="M 0 100 C 50 80, 50 20, 100 100 L 100 100 L 0 100 Z" fill="%230097a6" /></svg>');
background-size: cover;
}



.hero .bg-gradiente4 {
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e5e5e5" /><path d="M 0 0 Q 50 50, 0 100 T 100 100 V 0 Z" fill="%2300aabb" /><path d="M 0 100 Q 50 50, 100 100 T 100 100 V 0 Z" fill="%230097a6" /></svg>');
background-size: cover;
}

@media (max-width: 768px) {
  .hero .carousel-item {
    background-size: 200%; /* Ajusta el tamaño para pantallas pequeñas */
	 background-position: top right;
  }
}

.hero .carousel-item:before {
  content: "";
  background: rgba(0,0,0,0);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
   position: absolute;
  inset: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;

}



.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;

}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


.hero {
  width: 100%;


  position: relative;
  padding:  0;
  display: flex;
  align-items: center;
}

.hero h3 {
  margin: 0;
  font-size: 46px;
  font-weight: 700;

  animation: fadeInDown 1s both;
}


.hero p {
  color: rgba(64,64,64,0.70);
  margin: 5px 0 30px 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  animation: fadeInDown 1s both 0.2s;
}


.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: rgba(var(--accent-color-r), var(--accent-color-g), var(--accent-color-b),0.85);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--contrast-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: rgba(var(--accent-color-r), var(--accent-color-g), var(--accent-color-b),0.85);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


@media (max-width: 640px) {
  .hero h3 {
    font-size: 28px;

  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .hero h3 {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


.services .service-item {
  background-color: var(--surface-color);
  padding: 20px;
  margin-top: 36px;
  transition: ease-in-out 0.3s;
  border: 1px solid #DCDCDC;
  text-align: center;
  position: relative;

}

.services .service-item .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px auto; /* Centra y agrega espacio inferior */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);


}

.services .service-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.services .service-item h3 {
	font-family: var(--default-font);
  font-weight: 700;
  margin: 22px 0 8px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;

}

.services .service-item:hover .icon img {
  transform: scale(1.1);
}




.services .service-item:hover {
	border: 1px solid rgba(var(--accent-color-r), var(--accent-color-g), var(--accent-color-b),0.85);

}

.services .service-item:hover h3 {
  color: var(--accent-color);
}




/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid rgba(64,64,64,0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color:rgba(64,64,64,0.80);
  background-color: rgba(64,64,64,0.04);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: rgba(var(--accent-color-r), var(--accent-color-g), var(--accent-color-b),0.05);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid rgba(64,64,64,0.10);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.bo{
	border:2px solid #B100AB;


	}

	.bo2{
	border:2px solid #594CFB;


	}

/********	banners section *************/


.banners .swiper-wrapper {
  height: auto;
}

.banners .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.banners .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(64,64,64,0.15);
  opacity: 1;
}

.banners .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 22px;
  padding-top:14px;
}

.blog-posts .post-title, .blog-posts .post-title2 {
  font-size: 19px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-top:16px;
  margin-bottom: 0px;
}

.blog-posts .post-title2 {
  font-size: 17px;

}

.blog-posts .meta i {
  font-size: 15px;
  color: rgba(64,64,64,0.60);
}

.blog-posts .meta span {
  font-size: 14px;
  color: rgba(64,64,64,0.80);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: rgba(64,64,64,0.40);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title, .blog-posts article:hover .post-title2,.index-news:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}


.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

.blog-posts .swiper-wrapper {
  height: auto;
}
.blog-posts .swiper-slide {
  height: auto;
}

@media (min-width: 1200px) {
.blog-posts .news {
	padding-bottom:24px;
}
}


.blog-posts .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.blog-posts .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(64,64,64,0.20);
  opacity: 1;
}

.blog-posts .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@font-face {
  font-family: 'fonticonB';
  src:  url('../fonts/fonticonB.eot?1.43');
  src:  url('../fonts/fonticonB.eot?1.43#iefix') format('embedded-opentype'),
    url('../fonts/fonticonB.ttf?1.43') format('truetype'),
    url('../fonts/fonticonB.woff?1.43') format('woff'),
    url('../fonts/fonticonB.svg?1.43#fonticon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'fonticonB' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-poa:before {
  content: "\e90e";
}
.icon-presupuesto:before {
  content: "\e90f";
}
.icon-conac:before {
  content: "\e904";
}
.icon-consejo:before {
  content: "\e905";
}
.icon-cuenta:before {
  content: "\e906";
}
.icon-dictamen:before {
  content: "\e907";
}
.icon-gaceta:before {
  content: "\e908";
}
.icon-ldf:before {
  content: "\e909";
}
.icon-leyes:before {
  content: "\e90b";
}
.icon-ley-ingresos:before {
  content: "\e90c";
}
.icon-ley-transparencia:before {
  content: "\e90d";
}
.icon-rft:before {
  content: "\e93f";
}
.icon-pc:before {
  content: "\e900";
}
.icon-pdf:before {
  content: "\e901";
}
.icon-tiktok:before {
  content: "\e91f";
}
.icon-twitter:before {
  content: "\e902";
}
.icon-antecedentespenales:before {
  content: "\e800";
}
.icon-declaracion_intereses:before {
  content: "\e801";
}
.icon-declaracion_patr1:before {
  content: "\e802";
}
.icon-declaracion_patr2:before {
  content: "\e803";
}
.icon-sat1:before {
  content: "\e804";
}
.icon-sat2:before {
  content: "\e805";
}
.icon-toxicologico1:before {
  content: "\e806";
}
.icon-toxicologico2:before {
  content: "\e807";
}
.icon-antecedentespenales2:before {
  content: "\e808";
}
.icon-building1:before {
  content: "\e700";
}
.icon-building2:before {
  content: "\e701";
}
.icon-building3:before {
  content: "\e702";
}
.icon-pc1:before {
  content: "\e703";
}
.icon-visitadores:before {
  content: "\e903";
}
.icon-Ley_ingresos:before {
  content: "\e90a";
}
.icon-esfe:before {
  content: "\e910";
}
.icon-icon-conac:before {
  content: "\e911";
}
.icon-googleplay:before {
  content: "\e913";
}
.icon-pueblo:before {
  content: "\e914";
}
.icon-play:before {
  content: "\e915";
}
.icon-office:before {
  content: "\e916";
}
.icon-minus:before {
  content: "\e92d";
}
.icon-plus:before {
  content: "\e92e";
}
.icon-books:before {
  content: "\e920";
}
.icon-cog:before {
  content: "\e994";
}
.icon-cogs:before {
  content: "\e995";
}
.icon-facebook:before {
  content: "\ea90";
}
.icon-whatsapp1:before {
  content: "\ea93";
}
.icon-appleinc:before {
  content: "\eabe";
}
.icon-tripadvisor:before {
  content: "\e91b";
}
.icon-people_alt:before {
  content: "\e91c";
}
.icon-grouppeople:before {
  content: "\e91e";
}
.icon-hail:before {
  content: "\e921";
}
.icon-santuarios:before {
  content: "\e924";
}
.icon-alternativo:before {
  content: "\e926";
}
.icon-camp:before {
  content: "\e927";
}
.icon-pueblos:before {
  content: "\e928";
}
.icon-misiones:before {
  content: "\e929";
}
.icon-uniE90B:before {
  content: "\e92a";
}
.icon-award:before {
  content: "\e92c";
}
.icon-user-tie:before {
  content: "\e976";
}
.icon-web:before {
  content: "\e9c9";
}
.icon-refresh:before {
  content: "\f021";
}
.icon-book3:before {
  content: "\f02d";
}
.icon-image:before {
  content: "\f03e";
}
.icon-check-square-o:before {
  content: "\f046";
}
.icon-check-circle:before {
  content: "\f058";
}
.icon-angle-left:before {
  content: "\f104";
}
.icon-angle-right:before {
  content: "\f105";
}
.icon-angle-down:before {
  content: "\f107";
}
.icon-youtube:before {
  content: "\f167";
}
.icon-youtube1:before {
  content: "\f168";
}
.icon-bed:before {
  content: "\f236";
}
.icon-wheelchair-alt:before {
  content: "\f29b";
}
.icon-utensils:before {
  content: "\f2e7";
}
.icon-hiking:before {
  content: "\f6ec";
}
.icon-folder-open-o:before {
  content: "\e922";
}
.icon-folder-o:before {
  content: "\e923";
}
.icon-calendar:before {
  content: "\e92b";
}
.icon-cross1:before {
  content: "\e941";
}
.icon-arrow-up1:before {
  content: "\e91a";
}
.icon-close:before {
  content: "\e940";
}
.icon-menu1:before {
  content: "\e930";
}
.icon-arrow-up:before {
  content: "\e91d";
}
.icon-clock:before {
  content: "\e919";
}
.icon-map-pin:before {
  content: "\e917";
}
.icon-phone:before {
  content: "\e918";
}
.icon-menu2:before {
  content: "\e931";
}
.icon-clear:before {
  content: "\e946";
}
.icon-menu3:before {
  content: "\e932";
}
.icon-arrow_forward_ios:before {
  content: "\e925";
}
.icon-arrow_back_ios:before {
  content: "\e92f";
}
.icon-folder-open:before {
  content: "\e933";
}
.icon-envelop:before {
  content: "\e945";
}
.icon-location2:before {
  content: "\e948";
}
.icon-download3:before {
  content: "\e9c7";
}
.icon-eye:before {
  content: "\e9ce";
}
.icon-eye-blocked:before {
  content: "\e9d1";
}
.icon-star-full:before {
  content: "\e9d9";
}
.icon-instagram:before {
  content: "\ea92";
}
.icon-file-pdf:before {
  content: "\eadf";
}
.icon-file-word:before {
  content: "\eae1";
}
.icon-file-excel:before {
  content: "\eae2";
}




/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 40px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: rgba(1,113,126,0.50);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}



/*--------------------------------------------------------------
# Transparencia Section
--------------------------------------------------------------*/
.transparencia .service-item {
  padding: 10px 10px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  width:100%;
}

.transparencia .service-item .icon {
  margin-bottom: 10px;
}

.transparencia .service-item .icon i {
  color: var(--accent-color);
  font-size: 58px;
  transition: 0.3s;
}

.transparencia .service-item .icon img {
  width: 58px;
  height: 58px;
  object-fit: contain; /* O 'cover', dependiendo del comportamiento deseado */
  transition: 0.3s; /* Para aplicar el mismo efecto de transición */
}

.transparencia .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.transparencia .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.transparencia .service-item p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.transparencia .service-item:hover {
  transform: translateY(-5px);
  background-color: var(--surface-color);
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}

.transparencia .service-item:hover h4 a {
  color: var(--accent-color);
}

.pt-45{
	padding-top:32px;
	}

.li-aclaratoria a{
	background-color:#f0e8e8 !important;

	}
