/*
Theme Name: LETRAS
Theme URI: https://letras.unmsm.edu.pe
Author: Letras 
Description: Design Web FLCH @msau
Version: 1.0
*/

body {
  font-family: Poppins;
  line-height: 1.5;
  font-size: 18px;
}

ul.sub-menu {
  list-style: none;
}

ul {
  margin-bottom: 0;
  padding: 0;
}

a:hover {
  text-decoration: inherit;
  color: inherit;
}

img {
  max-width: 100%;
}

button,
button:focus,
input {
  outline: none;
}

textarea {
  outline: none;
}

:root {
  /* Primarios institucionales */
  --primary-dark: #143B63;
  /* Azul profundo */
  --primary-text: #3A3A3A;
  /* Gris tipografía */

  /* Secundarios */
  --secondary-1: #2457A6;
  /* Azul medio */
  --secondary-2: #69BCE2;
  /* Azul claro */
  --secondary-3: #7FA9CC;
  /* Azul grisáceo */
  --secondary-4: #B3B0CC;
  /* Lavanda suave */

  /* Acento estratégico (uso limitado) */
  --accent-gold: #A88F1D;
  /* Dorado institucional */

  /* Neutros */
  --white: #FFFFFF;
  --light-bg: #F5F7FA;
  --border-light: #E5E9F0;

  /* Espaciado base */
  --space-unit: 8px;
  --space-sm: calc(var(--space-unit) * 2);
  /* 16px */
  --space-md: calc(var(--space-unit) * 4);
  /* 32px */
  --space-lg: calc(var(--space-unit) * 6);
  /* 48px */
  --space-xl: calc(var(--space-unit) * 8);
  /* 64px */
}

table td,
table th {
  padding: 5px 10px;
  border: 1px solid #ffffff;
  text-align: left;
}

.table td,
.table th {
  padding: 7px;
  font-size: 14px;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

a {
  color: inherit;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 30px;
}

.titulo-sigleblog {
  margin-bottom: 30px;
}

.blog-post-container {

  margin-bottom: 50px;

}

.padding-widget {

  padding-top: 30px;

}

.margin-t100 {
  margin-top: 100px;
}

.margin-t40 {
  margin-top: 40px;
}

.margin-t30 {
  margin-top: 30px;
}

.margin-t50 {
  margin-top: 50px;
}

.margin-b50 {
  margin-bottom: 50px
}

.margin-b100 {
  margin-bottom: 100px
}

.margin-b25 {
  margin-bottom: 25px;
}

.display-none {
  display: none;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.no-position {
  position: inherit;
}

.bg-2 {
  background: var(--main4) !important;
}

.bg-3 {
  background: var(--main3) !important;
}

.relative {
  position: relative;
}



/*===================/
COLUM H
/*==================/
=======================*/
.cl-10 {
  width: 10%;
}

.cl-20 {
  width: 20%;
}

.cl-30 {
  width: 30%;
}

.cl-40 {
  width: 40%;
}

.cl-50 {
  width: 50%;
}

.cl-60 {
  width: 60%;
}

.cl-70 {
  width: 70%;
}

.cl-80 {
  width: 80%;
}

.cl-90 {
  width: 90%;
}

.cl-100 {
  width: 100%;
}



/*===================/
CUSTOM ROWS
/*==================/
=======================*/

.middle {
  align-items: center;
}

.row-cl {
  display: flex;
  flex-wrap: wrap;
}

.row-sb {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.row-sa {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.row-se {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.row-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/*===================/
HEADER
/*==================/
=======================*/
/*
.main-header {
    position: absolute;
    width: 100%;
    z-index: 9;
    padding: 10px 0;
}
*/
.main-header {
  position: relative;
  width: 100%;
  z-index: 9;
  padding: 10px 0;
  background: #144791;
}

.box-menu>div>ul>li>ul a:hover {
  color: var(--main3);
}

.box-menu>div>ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.box-menu>div>ul>li>ul {
  position: absolute;
  left: -20px;
  top: 57px;
  padding: 20px 0px 0;
  padding-top: 10px;
  background: white;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transition: all .3s ease-in-out 0s;
  transition-delay: 0.2s;
  border-radius: 0px;
  box-shadow: 0 18px 35px rgb(50 50 93 / 10%), 0 8px 15px rgb(0 0 0 / 7%);
}

.container {
  max-width: 1180px;
  margin: auto;
  padding-bottom: 50px;
}

.box_logo img {
  width: 200px;
}



.box-menu>div>ul>li {
  margin-left: 25px;
}

.box-menu>div>ul>li a {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.bt_menu a {
  background: #f48b19;
  padding: 13px 12px !important;
  border-radius: 5px;
}



.box-menu>div>ul>li.menu-item-has-children {
  position: relative;
}

.box-menu>div>ul>li.menu-item-has-children:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
}

.box-menu>div>ul>li>ul a {
  display: block;
  width: 150px;
  padding: 4px 0;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

/*ojo*/
.navigation-menu ul ul li {
  min-width: 12em;
  padding: 0;
  width: 100%;
}


.navigation-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: #144791;
  color: white;
  z-index: 999;
  transform: translateX(50%) scale(0.5);
  opacity: 0;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.navigation-menu.open_menu {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(0%) scale(1);
  opacity: 1;
  visibility: visible;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: #0000009e;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.show_menu .overlay {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}

.navigation-menu a {
  color: white;
}

/*/Menu hamburguesa/*/

.main-head.stick {
  position: fixed;
  background: var(--main);
  z-index: 99;
  box-shadow: 0px 0px 18px #00000000;
}

.stick .box-new {
  display: none;
}

.open_menu .overlay {
  visibility: visible;
  opacity: 1;
  transition: 0.4s ease;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.main-head.stick {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.stick .head_1 img {
  width: 150px;
  padding: 5px 0;
}

ul.bt_menu {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
}

ul.bt_menu li {
  list-style: none;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 7px rgba(0, 0, 0, .5);
  transition: .9s;
}

ul.bt_menu li:nth-of-type(1) {
  top: 20%;
}

ul.bt_menu li:nth-of-type(2) {
  top: 50%;
  width: 70%;
}

ul.bt_menu li:nth-of-type(3) {
  top: 80%;
}

ul.bt_menu.active li:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg) rotateY(180deg);
}

ul.bt_menu.active li:nth-of-type(2) {
  left: -300%;
  opacity: 0;
}

ul.bt_menu.active li:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) rotateY(180deg);
}

ul.bt_menu li:last-child {
  width: 100%;
  height: auto;
  transform: none;
  top: 100%;
  font-size: 10px;
  text-align: center;
  transition: .9s;
}

ul.bt_menu li:last-child::before,
ul.bt_menu li:last-child::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: .9s;
}

ul.bt_menu li:last-child::before {
  content: '';
  color: #fff;
  transform: rotateY(0);
  transition-delay: .5s;

}

ul.bt_menu li:last-child::after {
  content: '';
  color: #ffffff;
  transform: rotateY(90deg);
  transition-delay: 0s;
}

ul.bt_menu.active li:last-child::before {
  transform: rotateY(90deg);
  transition-delay: 0s;
}

ul.bt_menu.active li:last-child::after {
  transform: rotateY(0deg);
  transition-delay: .5s;
}

.box-hamburger {
  position: relative;
  margin-left: 20px;
  border-left: 1px solid #ffffff3d;
  padding-left: 20px;
}


.open_menu ul.nav-box {
  visibility: visible;
  opacity: 1;
  transition: 0.3s ease;

}

.box-ham {
  margin-left: 30px;
}

.header_2 {
  display: flex;

}

/*/Megamenu/*/
.box-menu>div>ul>li.mega-menu>ul {
  min-width: 60%;
  padding: 30px 10px;
  height: 420px;
  display: flex;
  background: white;
  left: 20%;
  list-style: none;
  justify-content: space-evenly;
  top: 80px;
  border-radius: 0 0 5px 5px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transition: all .3s ease-in-out 0s;
  border-radius: 0px;
  box-shadow: 0 18px 35px rgb(244 139 25 / 10%), 0 8px 15px rgb(0 0 0 / 7%);
}

.box-menu>div>ul>li>ul li.current-menu-item a {}

.box-menu>div>ul>li.mega-menu:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transition-delay: 0.2s;
}

.box-menu>div>ul>li.mega-menu {
  position: inherit;
}

.box-menu>div>ul>li.mega-menu>ul>li:last-child {
  border: 0;
}

.stick .box-menu>div>ul>li.mega-menu>ul {

  top: 66px;

}

.box-menu>div>ul>li.mega-menu>ul>li a:hover {
  color: #f48b19;
}

.box-menu>div>ul>li.mega-menu>ul>li>a:hover {
  color: inherit;
}


.box-menu>div>ul>li.mega-menu>ul:after {
  content: '';
  content: '';
  background-color: transparent;
  border-right: 13px solid transparent;
  position: absolute;
  border-left: 13px solid transparent;
  border-bottom: 13px solid #fff;
  border-top: 13px solid transparent;
  top: -23px;
  right: 53%;
}

.box-menu>div>ul>li.mega-menu>ul>li a {
  color: inherit;
  line-height: 1.2;
  padding: 0;
  margin-bottom: 15px;
  font-size: 15px;
}

.box-menu>div>ul>li.mega-menu>ul>li>a {
  font-weight: 600;
  width: 100%;
  display: block;
  margin-bottom: 5px;
  text-decoration: inherit;
  cursor: inherit;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
}

.box-menu>div>ul>li.mega-menu>ul>li {
  width: 30%;
  padding: 0 10px;
  border-right: 1px solid #e1e1e1;
}

.box-menu>div>ul>li>a {
  padding: 40px 0;
}

span.badg {
  position: absolute;
  bottom: 0;
  background: var(--main4);
  border-radius: 3px;
  font-size: 12px;
  padding: 0 10px;
  color: white;
  text-transform: uppercase;
  left: 0;
  font-weight: 600;
}

/*===================/
PAGE DEFAULT
/*==================/
=======================*/

.bl_head-page {
  background: var(--main);
}

.titulo-page {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: white;
  margin: auto;
  padding-bottom: 30px;
}

.titulo-page h1 {
  color: white;
  padding-top: 50px;
  font-size: 40px;
  max-width: 700px;
  display: block;
}

.titulo-page h5 {
  color: var(--main4);
  border-bottom: 2px solid;
}

.titulo-page p {
  max-width: 700px;
  font-size: 14px;
  color: #ffffffd9;
  margin-top: 10px;
}

.main-header .row-sb {
  border-bottom: 1px solid #ffffff33;
  align-items: center;
  padding-bottom: 15px;
}

/*//////////////////////////
T. HOME
///////////////////////////*/


section.bl_slider {
  background: var(--main);
  min-height: 500px;
}

.bl_slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.bl_slider .owl-nav button {
  position: absolute;
  text-align: center;
}

.bl_slider .owl-nav .owl-prev {
  left: 50px;
}

.bl_slider .owl-nav .owl-next {
  right: 50px;
}

.bl_slider .owl-nav button i {
  width: 50px;
  height: 50px;
  color: #0047ba;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-radius: 50%;
  background: #ffffff29;
}

.bl_slider .owl-dots {
  display: flex;
  justify-content: center;
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}


.bl_slider .owl-dots button.owl-dot {
  background: #ffffff;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin: 0 5px;
}

.bl_slider .owl-dots button.owl-dot.active {
  background: var(--main4);
  transition: 0.4s ease;
  transform: scale(1.4);
}

.bl_slider .owl-nav button i:hover {
  background: white;
  transition: 0.4s;
}

.row-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 530px;
  max-height: 530px;
  padding-top: 100px;
}

.slider_texto {
  width: 50%;
  color: white;
  padding: 0 0 0 6%;
}

.slider_img {
  width: 30%;
  height: auto;
  /* align-self: end;*/
}

.slider_texto h1 {
  font-size: 50px;
  font-weight: 500;
}

a.bt_2 {
  color: white;
  background: var(--main4);
  padding: 15px 40px;
  border-radius: 5px;
  display: inline-block;
}

.slider_texto p {
  margin: 10px 0 30px;
  font-size: 20px;
}

.item-slider.red {
  background: linear-gradient(45deg, #d82c3200, #d82c32);
}

/*/Bloque Idiomas carousel/*/

.idiomas-carousel {
  display: flex;
  justify-content: center;
}

.box_flag img {
  width: 110px;
  margin: auto;
  transition: .3s ease-in;
  border-radius: 50%;
  box-shadow: 0px 0px 11px #00000017;
}

.box_flag {
  text-align: center;
  padding: 15px 0;

}

.bl_languages {
  padding: 20px 0 10px;
}

.box_flag:hover img {
  transition: .3s ease-out;
  transform: scale(1.1);
}

.box_flag:hover h6 {
  font-weight: 600;
  color: #212529;
}

.owl-idiomas {
  padding-left: 30px;
}

.box_flag h6 {
  margin-top: 15px;
  font-size: 16px;
  color: #7d7d7d;
  font-weight: 400;
}

.box-menu>div>ul>li a i {
  font-size: 12px;
}

.owl-idiomas .owl-nav {
  position: absolute;
  top: 30%;
  width: 100%;
}

.owl-idiomas .owl-nav button {
  position: absolute;
  text-align: center;
}

.owl-idiomas .owl-nav .owl-prev {
  left: -20px;
}

.owl-idiomas .owl-nav .owl-next {
  right: 10px;
}

.owl-idiomas .owl-nav button i {
  font-size: 30px;
  width: 0px;
  height: 100%;
  color: #000000;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.titulo-section h2 {
  line-height: 1.2;
  padding-right: 50px;
}

/*/bloque informes/*/

.box_info {
  background: var(--main4);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 0 40px;
  overflow: hidden;
}

.box_info img {
  max-height: 200px;
  transform: scale(1);
  transition: .3s ease-out;
}

.box_info h5 {
  font-size: 28px;
  padding-top: 20px;
  color: white;
  min-height: 130px;
  line-height: 1.2;
}

.bl_idiomas {
  padding: 70px 0;
}

.box_info.bg-1 {
  background: var(--main2);
}

.box_info.bg-3 {
  background: var(--main3);
}

.box_info:hover img {
  max-height: 200px;
  transform: scale(1.1);
  transition: .3s ease-out;
}

.box_info.bg-1:hover {
  background: #144791;
  transition: .2s ease-in;
}

.box_info.bg-3:hover {
  background: #F48B19;
  transition: .2s ease-in;
}

.box_info:hover h5 {
  text-decoration: underline;
  transition: .2s ease-in;
}

/*/Bloque Novedades/*/

.bl_novedades {
  background: var(--main);
  color: white;
  position: relative;
  margin: 100px 0;
}

.box-nov-img img {
  position: absolute;
  max-width: 290px;
  top: -70px;
}

.content_text {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
}

.box-nov-img {
  position: relative;
}

.content_text p {
  padding: 20px 0 10px;
}

/*/Maestrias/*/

.box-maestria {
  height: 380px;
  transition: all 0.4s;
}

.slider-maestrias .center .box-maestria {
  transform: scale(1.3);
  transition: 0.4s;
}

.box-maestria img {
  opacity: 0.3;
}

.slider-maestrias .item {
  padding: 50px 0;
}

.bl_maestrias {
  padding: 70px 0;
}

.text-center {
  text-align: center;
}

.slider-maestrias {
  margin-top: 50px;
}

.owl-item.active.center {
  position: relative;
  z-index: 6;
}

.center .box-maestria img {
  opacity: 1;
  transition: all 0.4s;
}









/*===================/
/*===================/
T. NOSOTROS
/*==================/
=======================*/

ul.list-number li {
  padding-bottom: 31px;
  padding-left: 80px;
  position: relative;
}

ul.list-number {
  list-style: none;
}


ul.list-number li span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--main4);
  position: absolute;
  left: 0;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  font-weight: 600;
  color: black;
}




/*===================/
/*===================/
MODULO TRAMITES
/*==================/
=======================*/



.box-tramite ul {
  list-style: none;
}

.box-tramite {
  box-shadow: 0 0px 20px -10px rgb(0 0 0 / 30%);
  margin-bottom: 30px;
  min-height: 200px;
  padding: 20px;
  border-radius: 6px;
}

section.bl_tramites {
  padding: 60px 0;
}

ul.listado a {
  position: relative;
  padding-left: 20px;
}

ul.listado a:after {
  content: "\f0f6";
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
}

ul.listado>li {
  padding: 7px 0;
}

.tramite_title h4 {
  font-size: 22px;
  margin-bottom: 20px;
}


/*===================/
/*===================/
CUSTOM ELEMENTOR
/*==================/
=======================*/
tbody tr:nth-child(odd) {
  background: #f3f3f3;
}

.table .thead-dark th {
  color: #fff;
  background-color: #f48b19;
  border-color: #f48b19;
}

.elementor-tabs-wrapper {
  background: #dfdfdf;
  padding: 20px 20px;
  display: flex;
  justify-content: space-around;
  border-radius: 10px;
}

.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title {
  background: #b3b3b399;
  padding: 10px 40px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 15px;
}

.elementor-widget-tabs .elementor-tab-title {
  color: #626262;
}

.elementor-widget-tabs .elementor-tab-desktop-title.elementor-active {
  background: var(--main3) !important;
  color: white;
}

/*===================/
/*===================/
BUTTON EFFECT
/*==================/
=======================*/

a.bt_effect {
  position: relative;
}

.bt_effect:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.bt_effect.b4:hover {
  background: var(--main4);
}

.bt_effect:active {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  color: white;
}

.bt_effect {
  transition: all .5s;
}

.bt_effect::after {
  content: "";
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100px;
  display: inline-block;
  z-index: -1;
  transition: all .5s;
}

.bt_effect:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}



.bt_effect.b4:hover {
  background: var(--main4);
}

.bt_effect.b4::after {
  background: #fdba329c;
}

/*===================/
/*===================/
LANDING IDIOMA
/*==================/
=======================*/
a.bt_2 i {
  margin-right: 20px;
  padding: 0px 0;
}

.info-idioma {
  min-height: 400px;
  /*background-size: 45%;*/
  background-size: 45% 83%;
  /*background-size: cover;*/
  background-position: bottom left;
  background-repeat: no-repeat;
  justify-content: flex-end;
  display: flex;
  padding-top: 20px;

}



.l_desc {
  width: 30%;
  color: white;
  padding-right: 50px;
}

.l_box {
  width: 30%;

}

.l_desc h1 {
  font-size: 60px;
  font-weight: 600;
}

.l_desc h6 span {
  color: var(--main4);
  border-bottom: 2px solid;
}

.l_desc h6 {
  font-weight: 500;
  font-size: 20px;
  margin: 5px 0 20px;
}

.l_desc p {
  line-height: 1.5;
}

.col-form .your-name input:focus {
  background: transparent;
}


ul.menu-navigation {
  padding: 0;
  display: flex;
  justify-content: center;
  background: #f48b19;
  list-style: none;
}

ul.menu-navigation li a {
  padding: 10px 10px;
  display: block;
  font-weight: 500;
  color: white;
  margin: 0 15px;
}


/*/Modulo modalidad/*/

.bl_modalidad {
  padding: 100px 0;
  background: #f2f2f2;
}

.module-text>h2 {
  margin-bottom: 20px;
}

.box-tabla_1 {
  background: white;
}

.box-tabla_1 thead {
  background: var(--main);
  color: white;
}

.form-hero h4 {
  color: #ffffff94;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 0 10px;
}

/*/Modulo requisitos/*/

.box_requisitos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.icon-r {
  background: var(--main2);
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  margin-right: 20px;
  color: white;
}

.desc-r p {
  margin: 0;
}

.desc-r {
  width: 220px;
}

.module-text h2 {
  margin-bottom: 30px;
}

/*/Modulo Libro/*/


/*======================/
===================/
BREAD TEMPLATE 
/*==================/
=======================*/
.breadbrumb {
  padding-top: 100px;
  align-self: self-start;
}

.breadbrumb_blog {
  padding-top: 50px;
  align-self: self-start;
  padding-bottom: 40px;
}

.breadbrumb_blog>div {
  display: flex;
  font-size: 5px;
}

.breadbrumb>div {
  display: flex;
  font-size: 10px;
}

.breadbrumb h6 {
  font-size: 11px;
  color: #ffffff9e;
  padding: 0 10px 0 10px;
  position: relative;
}

.breadbrumb h6:after {
  content: "\f105";
  font-family: 'FontAwesome';
  position: absolute;
  right: 0;
  font-size: 9px;
  top: 1px;
}

.breadbrumb h6:last-child:after {
  display: none;
}


/*======================/
===================/
CALENDARIO TEMPLATE 
/*==================/
=======================*/

#calendar {
  width: 100%;
  display: table;
}

#calendar a {
  color: #8e352e;
  text-decoration: none;
}

#calendar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  flex-wrap: wrap;
  display: flex;
}

#calendar li {
  display: block;
  width: 14.342%;
  padding: 25px 15px 0;
  box-sizing: border-box;
  border: 1px solid #e3e3e3;
  margin-right: -1px;
  position: relative;
}

#calendar ul.weekdays {
  height: 40px;
  background: #052a64;
}

#calendar ul.weekdays li {
  text-align: center;
  text-transform: uppercase;
  line-height: 20px;
  border: none !important;
  padding: 10px 6px;
  color: #fff;
  font-size: 13px;
}

#calendar .days li {
  height: 130px;
}

#calendar .days_ li {
  height: 180px;
}

#calendar .days__ li {
  height: 160px;
}

#calendar .days___ li {
  height: 180px;
}

/*
#calendario .days li {
  height: 180px;
}*/

#calendar .days li:hover {
  background: #f3f3f3;
}

.date {
  text-align: center;
  margin-bottom: 5px;
  padding: 2px;
  background: hsl(40deg 98% 59%);
  color: rgb(0 0 0);
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 10px;
}

#calendar .event {
  display: block;
  font-size: 13px;
  border-radius: 4px;
  padding: 25px 15px 10px;
  margin-bottom: 0px;
  line-height: 16px;
  background: #f3f3f3;
  border: 1px solid transparent;
  color: #000000;
  text-decoration: none;
}

.event-desc {
  color: rgb(126 126 126);
  margin: 7px 0 7px 0;
  text-decoration: none;
}

#calendar .other-month {
  background: #ffffff;
  /*fondo modificar*/
  color: #666;
}

#calendar .other-monthmatricula {
  background: #f48b19;
  /*fondo modificar*/
  color: #666;
}

#calendar .feriado .event {
  /*fondo modificar*/
  background: #ffeced;
  color: black;
}

#calendar .other-monthgreen {
  background: #f48b19;
  /*fondo modificar*/
  color: #666;
}

#calendar .other-monthblue {
  /*fondo modificar*/
}

#calendar .other-monthorange {
  background: #eb9a05;
  /*fondo modificar*/
  color: #666;
}

/* ============================
                Mobile Responsiveness
   ============================*/
@media (max-width: 768px) {

  #calendar .weekdays,
  #calendar .other-month {
    display: none;
  }

  #calendar li {
    height: auto;
    border: 2px solid #ededed;
    width: 100%;
    padding: 10px;
    margin-bottom: -1px;
  }

  #calendar .date {
    float: none;
  }
}

section.bl_calendar {
  padding: 60px 0;
}

.event-time {
  text-transform: capitalize;
  font-weight: 500;
}

.event-time_verde {
  text-transform: capitalize;
  font-weight: 500;
  background-color: #28a745;
  color: white;
  border-bottom: solid 2px #e5dfdf;

}

.event-time_crema {
  text-transform: capitalize;
  font-weight: 500;
  background-color: #ffdd00c2;
  border-bottom: solid 2px #e5dfdf;
}

.event-time_azul {
  text-transform: capitalize;
  font-weight: 500;
  background-color: #00bbffc2;
  color: white;
  border-bottom: solid 2px #e5dfdf;
}

div#calendar-wrap h1 {
  margin-bottom: 50px;
}

#calendar .feriado .date {
  background: var(--main3);
  color: white;
}

li.day.feriado {
  background: var(--main10);
  color: white;
}

.matricula .date {
  background: var(--main);
  color: white;
}


/*======================/
===================/
FAQ
/*==================/
=======================*/
.pregunta-titulo h3 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 13px;
}

.box-pregunta {
  margin-bottom: 40px;
}

.card-faq h5:after {
  content: "\f067";
  font-family: 'FontAwesome';
  position: absolute;
  right: 30px;
  font-size: 12px;
}

.matriculaSemana02 {
  background: var(--main8);
  color: white;
}

.matriculaSemana01 {
  background: var(--main7);
  color: white;
}

.matriculafinsemana {
  background: var(--main6);
  color: white;
}

.active.card-faq h5:after {
  content: "\f068";
}

.inicioClases {
  background: var(--main9);
  color: white;
}

.card-faq h5:hover {
  transition: all 0.2s ease;
  background: #e8e8e8;
}


.section-faq_1 {
  background: #f5f5f5;
}

.box-faq {
  background: #ffffff;
  border-radius: 4px;
  padding: 0;
}

.box-faq h3 {
  font-size: 20px;
  text-align: center;
}

.card-faq h5 {
  font-size: 16px;
  margin-top: 0px;
  cursor: pointer;
  padding: 7px 10px;
  border-bottom: 1px solid #e6e6e68c;
  margin-bottom: 10px;
  position: relative;
}

.card-body-faq.active {
  display: block;
}

.card-body-faq {
  display: none;
  font-size: 14px;
}

.card-faq.active .card-body-faq {
  display: block;
  max-height: fit-content;
}

.module_text h3 {
  margin-bottom: 10px;
}


img.book-ilu {
  padding-top: 60px;
}

section.bl_book {
  padding: 100px 0;
  background: var(--main4);
}

.td-book {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
  padding: 10px 20px;
  border-bottom: 1px solid #e1e1e1;
}

span.level {
  flex: 2;
}

span.name-book {
  flex: 3;
}

span.down-book {
  flex: 1;
}

span.down-book a {
  background: var(--main2);
  padding: 5px 20px;
  color: white;
  border-radius: 5px;
}

/*/Modulo Horario/*/

.bl_horario {
  padding: 80px 0;
}

section.bl_horario table thead {
  background: var(--main2);
}

section.bl_horario table {
  font-size: 14px;
}






/*/Modulo costo/*/

.desc-pagos {
  margin-top: 40px;
}

.desc-pagos img {
  width: 175px;
}

.tabla-flex {
  font-size: 14px;
  margin-bottom: 25px;
  background: #f6f6f6;
}

.head_tabla {
  display: flex;
  border-bottom: 1px solid;
  font-weight: 600;
  text-align: center;
  font-size: 20px;
}

.row_tabla {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #535353;
  text-align: center;
}

.row_tabla span,
.head_tabla span {
  width: 25%;
  padding: 15px 5px;
}

.bl_costo {
  margin-top: 130px;
}

.row_tabla span:first-child,
.head_tabla span:first-child {
  background: var(--main4);
  width: 33%;
  text-align: left;
  font-weight: 500;
  padding-left: 20px;
}

.head_tabla span {
  padding-top: 30px;
}

.tabla-flex .row_tabla:nth-child(2n+1) span {}

.tabla-flex .row_tabla:last-child {
  border: 0;
  font-size: 14px
    /* font-size: 20px;
    font-weight: 600;*/
}

/*/Modulo Steps/*/
.bl_steps {
  padding: 0px 0;
  background: #fff;
}

a.bt_steep {
  color: white;
  padding: 7px 20px;
  border-radius: 5px;
  display: inline-block;
}

/*/Modulo habilidades/*/

.row-habilidades {
  display: flex;
  flex-wrap: wrap;
}

.box_habilidades {
  width: 50%;
  text-align: center;
  margin-bottom: 20px;
}

.box_habilidades img {
  max-height: 130px;
  text-align: center;
}

.text-habilidades {
  padding-top: 60px;
}

.box_habilidades h5 {
  margin-top: 10px;
  font-size: 16px;
}

.bl_habilidad {
  padding: 50px 0;
}


/*/Modulo sidebar/*/
.sidebar-menu {
  background: #fff;
  padding: 30px 20px;
  height: 100%;
  border-right: 1px solid #e1e1e1;
}

.sidebar-menu ul {
  list-style: none;
}

.sidebar-menu li {
  list-style: none;
}

.sidebar-menu ul>li.menu-item-has-children>a {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  font-size: 20px;
  color: #000;
  border-bottom: 1px solid;
  cursor: inherit;
  line-height: 1.2;
  padding-bottom: 10px;
}

.sidebar-menu ul>li.menu-item-has-children.current-menu-parent>a {}

.sidebar-menu ul>li>a {
  color: #838383;
  position: relative;
  font-size: 15px;
}

.sidebar-menu .menu-item-has-children {
  margin-bottom: 20px;
}

.sidebar-menu ul>li.current-menu-item>a {
  color: black;
  text-decoration: underline;

}


ul.sub-menu>li {
  border-bottom: 1px solid #e1e1e114;
  padding: 4px 0;
}



/*/Navegacion toggle/*/

.navigation-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.box-menu_m {
  padding: 30px 60px;
}

.title_m {
  margin: 30px 0 0px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-menu_m ul>li>a {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 7px;
  display: inline-block;
}

.box-menu_m hr {
  border-color: #ffffff29;
  margin: 7px 0 20px;
}

.box-tel-m {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-top: 10px;
}

.box-tel-m svg {
  width: 30px;
  margin-right: 20px;
}

span.bt_close:hover {
  color: var(--main2);
}

span.bt_close {
  font-size: 40px;
  line-height: 1;
  padding: 0px 10px;
  cursor: pointer;
}

.box-menu_m ul>li>a:hover {
  color: var(--main2);
}

.navigation-menu ul>li {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}


.open_menu.navigation-menu ul>li {

  transform: translateY(0px);
  transition: 0.3s;
}

.open_menu.navigation-menu ul>li:nth-child(1) {
  opacity: 1;
  transition-delay: .5s;
}

.open_menu.navigation-menu ul>li:nth-child(2) {
  opacity: 1;
  transition-delay: .55s;
}

.open_menu.navigation-menu ul>li:nth-child(3) {
  opacity: 1;
  transition-delay: .58s;
}

.open_menu.navigation-menu ul>li:nth-child(4) {
  opacity: 1;
  transition-delay: .60s;
}

.open_menu.navigation-menu ul>li:nth-child(5) {
  opacity: 1;
  transition-delay: .62s;
}

.open_menu.navigation-menu ul>li:nth-child(6) {
  opacity: 1;
  transition-delay: .64s;
}

/*/Header stick/*/


.main-header.stick {
  position: fixed;
  background: var(--main);
  z-index: 99;
  box-shadow: 0px 0px 18px #00000000;
  padding: 9px 0;
}

.open_menu .overlay {
  visibility: visible;
  opacity: 1;
  transition: 0.4s ease;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.main-header.stick {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


.stick.main-header .row-sb {
  border: 0;
  padding-bottom: 0;
}

.stick .box_logo img {
  width: 180px;
}



/*======================/
===================/
CURSOS PROGRAMADOS
/*==================/
=======================*/
thead.thead-dark {
  background: var(--main3);
  color: white;
}

.tabla-curso-programado {
  font-size: 14px;
}

table td,
table th {
  font-weight: 500;
}

/*======================/
===================/
TIMELINE STYLE
/*==================/
=======================*/
.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto 0;
  position: relative;
}

.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 90%
}

.timeline__event:nth-child(2n+1) {}

.timeline__event:nth-child(2n+1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}

.timeline__event:nth-child(2n+1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}

.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
  content: "";
}

.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
  content: "";
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
}

.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.timeline__event__content {
  padding: 20px;
  box-shadow: 0 0px 20px -10px rgb(0 0 0 / 48%);
  background: #fff;
  width: calc(40vw - 84px);
  border-radius: 0 6px 6px 0;
}

.timeline__event__date {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--main2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border-radius: 6px 0 0 6px;
  max-width: 190px;
}

.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7a7a73b;
  padding: 20px;
  align-self: center;
  font-weight: 800;
  margin: 0 20px;
  border-radius: 100%;
  width: 40px;
  padding: 40px;
  height: 40px;
  position: relative;
  font-size: 80px;
}

.timeline__event__icon i {
  font-size: 32px;
}

.timeline__event__icon:before {
  content: "";
}

.timeline__event__icon:after {
  content: "";
}

.timeline__event__description {
  flex-basis: 60%;
}

.timeline__event--type2:after {
  background: #f48b19;
}

.color:nth-child(1) .timeline__event__date,
.color:nth-child(1) a.bt {
  background: var(--main);
}

.color:nth-child(2) .timeline__event__date,
.color:nth-child(2) a.bt {
  background: var(--main2);
}

.color:nth-child(3) .timeline__event__date,
.color:nth-child(3) a.bt {
  background: var(--main3);
}

.color:nth-child(4) .timeline__event__date,
.color:nth-child(4) a.bt {
  background: var(--main44);
}

.color:nth-child(5) .timeline__event__date,
.color:nth-child(5) a.bt {
  background: var(--main);
}

.color:nth-child(6) .timeline__event__date,
.color:nth-child(6) a.bt {
  background: var(--main2);
}

.color:nth-child(7) .timeline__event__date,
.color:nth-child(7) a.bt {
  background: var(--main3);
}

.color:nth-child(8) .timeline__event__date,
.color:nth-child(8) a.bt {
  background: var(--main4);
}

.tabla-2 thead {
  background: #fdba32;
}

.tabla-2 h5 {
  font-size: 15px;
}

.tabla-2 td[colspan="5"] {
  background: var(--main4);
  text-align: center;
}

table.tabla-2 td,
table.tabla-2 th {
  padding: 11px 20px;
}

.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before,
.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
  background: #87bbfe;
}

.timeline__event--type2 .timeline__event__icon {}

.timeline__event--type2 .timeline__event__icon:before,
.timeline__event--type2 .timeline__event__icon:after {
  background: var(--main4);
}

.timeline__event--type2 .timeline__event__title {
  color: black;
}

.timeline__event--type3:after {
  background: #24b47e;
}

.timeline__event--type3 .timeline__event__date {}

.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before,
.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
  background: var(--main3);
}

.timeline__event--type3 .timeline__event__icon {}

.timeline__event--type3 .timeline__event__icon:before,
.timeline__event--type3 .timeline__event__icon:after {
  background: var(--main3);
}

.timeline__event--type3 .timeline__event__title {
  color: black;
}

.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

@media (max-width: 786px) {
  .timeline__event {

    width: 90%;
  }

  .timeline__event {
    flex-direction: column;
    align-self: center;
  }

  .timeline__event__content {
    width: 100%;
  }

  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .timeline__event__icon:before,
  .timeline__event__icon:after {
    display: none;
  }

  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }

  .timeline__event:nth-child(2n+1) {
    flex-direction: column;
    align-self: center;
  }

  .timeline__event:nth-child(2n+1) .timeline__event__date,
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
    max-width: 100%;
    text-align: center;
  }

  .timeline__event:nth-child(2n+1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}

@-webkit-keyframes fillLeft {
  100% {
    right: 100%;
  }
}

@keyframes fillLeft {
  100% {
    right: 100%;
  }
}

@-webkit-keyframes fillTop {
  100% {
    top: 100%;
  }
}

@keyframes fillTop {
  100% {
    top: 100%;
  }
}

@-webkit-keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}

@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}

/*======================/
===================/
WHATSAPP BUTTON ANIMATION LIB 1
/*==================/
=======================*/

.wsp_fixed {
  display: flex;
  width: 38px;
  height: 38px;
  position: fixed;
  right: 35px;
  bottom: 35px;
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  .wsp_fixed {
    right: 20px;
    bottom: 130px;
  }
}

@media screen and (max-width: 960px) {
  .wsp_fixed {
    bottom: 170px;
  }
}

@media screen and (max-width: 767px) {
  .wsp_fixed {
    bottom: 150px;
  }
}

.wsp_icon {}

.wsp_icon img {}

.wsp_gota1 {
  display: block;
  width: 55px;
  height: 55px;
  background: rgba(92, 207, 63, 0.29);
  border-radius: 50%;
  -webkit-animation: gota 1s infinite ease;
  -moz-animation: gota 1s infinite ease;
  -o-animation: gota 1s infinite ease;
  -ms-animation: gota 1s infinite ease;
  animation: gota 1s infinite ease;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 1024px) {
  .wsp_gota1 {
    width: 55px;
    height: 55px;
  }
}

.wsp_gota2 {
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(92, 207, 63, 0.2);
  border-radius: 50%;
  -webkit-animation: gota 1s infinite ease;
  -moz-animation: gota 1s infinite ease;
  -o-animation: gota 1s infinite ease;
  -ms-animation: gota 1s infinite ease;
  animation: gota 1s infinite ease;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 1024px) {
  .wsp_gota2 {
    width: 65px;
    height: 65px;
  }
}

@-moz-keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }

  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }

  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }

  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

@-webkit-keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }

  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }

  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }

  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

@-o-keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }

  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }

  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }

  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

@keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }

  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }

  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }

  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

@media screen and (max-width: 1024px) {
  .wsp_fixed {
    right: 30px;
    bottom: 30px;
  }
}

@media screen and (max-width: 960px) {
  .wsp_fixed {
    bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .wsp_fixed {
    bottom: 30px;
  }
}

.wsp_icon {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.wsp_icon img {
  max-width: 40px;
  height: auto;
  display: block;
}

.wsp_gota1 {
  display: block;
  width: 55px;
  height: 55px;
  background: rgb(63 207 194 / 14%);
  border-radius: 50%;
  -webkit-animation: gota 1s infinite ease;
  -moz-animation: gota 1s infinite ease;
  -o-animation: gota 1s infinite ease;
  -ms-animation: gota 1s infinite ease;
  animation: gota 1s infinite ease;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 1024px) {
  .wsp_gota1 {
    width: 55px;
    height: 55px;
  }
}

.wsp_gota2 {
  display: block;
  width: 80px;
  height: 80px;
  background: rgb(63 207 174 / 20%);
  border-radius: 50%;
  -webkit-animation: gota 1s infinite ease;
  -moz-animation: gota 1s infinite ease;
  -o-animation: gota 1s infinite ease;
  -ms-animation: gota 1s infinite ease;
  animation: gota 1s infinite ease;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 1024px) {
  .wsp_gota2 {
    width: 65px;
    height: 65px;
  }
}

@-moz-keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }

  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }

  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }

  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

@-webkit-keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }

  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }

  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }

  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

@-o-keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }

  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }

  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }

  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

@keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }

  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }

  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }

  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }

  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

/*--------------------------------*/
/*/ERROR 404
/*------------------------------*/
.error-404 {
  background: var(--main);
  color: white;
  text-align: center;
}

.box-page {
  min-height: 500px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/*-----------------------------------------------------------------------------------*/
/*/FORMULARIO HERO 
/*-----------------------------------------------------------------------------------*/

.capa_form {
  position: relative;
  z-index: 1;
}

.form-hero {
  background: #ffffff36;
  max-width: 290px;
  border-radius: 15px;
  position: relative;
}


.wpcf7-not-valid-tip {
  color: #ffeb3b;
  font-weight: normal;
  display: block;
  position: absolute;
  font-size: 10px;
  top: 20px;
  left: 10px;
  padding: 0 5px;
  border-radius: 5px;
  line-height: 1;
}

.col-form input.wpcf7-not-valid {
  border-color: #ffeb3b;
}

.form-hero:before {
  content: '';
  position: absolute;
  left: -2%;
  top: -2%;
  width: 104%;
  height: 104%;
  background: #ffffff38;
  z-index: -1;
  border-radius: 15px;
}

.container-form {
  padding: 15px 15px 10px;
}


.col-form input {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 9px 15px;
  background: transparent;
  font-size: 15px;
}

.col-form-text textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 9px 15px;
  background: transparent;
  font-size: 15px;
}

.container-form textarea {
  min-height: 100px;
  max-height: 100px;
  /*max-width: 100%;
  min-width: 135%;*/
}

.wpcf7 .wpcf7-submit {
  margin-top: 0 !important;

}

.col-form {
  position: relative;
  margin-bottom: 15px;
}

.col-form-text {
  position: relative;
  margin-bottom: 15px;
}

.col-form label small {
  position: absolute;
  bottom: 30%;
  left: 10px;
  background: #366ec9;
  line-height: 1;
  transition: all 0.4s;
  padding: 0 5px;
  color: white;
}

.col-form-text label small {
  position: absolute;
  bottom: 45%;
  left: 10px;
  background: #366ec9;
  line-height: 1;
  transition: all 0.4s;
  padding: 0 5px;
  color: white;
}


.col-form label {
  margin-bottom: 0;
  padding: 0;
}

.col-form-text label {
  margin-bottom: 0;
  padding: 0;
}

.col-form br {
  display: none;
}

.col-form-text br {
  display: none;
}

.col-form label.has-value small {
  transform: translateY(-22px);
  z-index: 2;
  transition: all 0.4s;
  font-size: 10px;
  color: #fff;
}

.col-form-text label.has-value small {
  transform: translateY(-50px);
  z-index: 2;
  transition: all 0.4s;
  font-size: 10px;
  color: #fff;
}

.col-form .has-value input {
  border-color: #fff;
  transition: all 0.4s;
  color: white;
}

.col-form-text .has-value textarea {
  border-color: #fff;
  transition: all 0.4s;
  color: white;
}

.wpcf7-response-output {
  display: none;
}

.col-form .wpcf7-submit.submit {
  background: var(--main3);
  color: white;
  padding: 10px 40px;
  border-radius: 15px;
  position: relative;
  display: inline-block;
  font-size: 14px;
  border: 0;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wpcf7-submit.submit:hover {
  transition: 0.4s ease;
  background: var(--main3);
  transform: scale(1.03);
}

.col-form select {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 9px 15px;
  background: transparent;
  font-size: 80%;
  color: #ffffff;
}

.text-acept {
  padding-left: 30px;
  display: block;
  font-size: 12px;
  color: #fff;
}

.text-acept a {
  border-bottom: 1px solid;
  font-weight: 600;
}

.col-form .your-name input {
  text-transform: capitalize;
}

.col-form-text .your-name textarea {
  text-transform: capitalize;
}

.wpcf7-spinner {
  position: absolute;
}

.col-form select option {
  color: white;
}

/*===================/
/*===================/
FOOTER//////////////////
/*==================/
=======================*/

.col-footer {
  width: 20%;
}

.bl_footer {
  padding: 50px 0 30px;
  background: var(--main);
  color: white;
}

.box-foot h5 {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

ul.menu-foot {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.menu-foot li a {
  width: 70%;
  overflow-wrap: break-word;
}

ul.menu-foot li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.box-foot img {
  margin-bottom: 30px;
}

.box-foot {}

ul.menu-foot li a:hover {
  color: white;
}

ul.menu-foot li>i {
  margin-right: 20px;
  width: 50px;
  height: 50px;
  background: var(--main4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.titulo-footer {
  margin-bottom: 30px;
  position: relative;
}

.box-foot ul li>a {
  margin-bottom: 12px;
  display: inline-block;
  font-size: 14px;
  position: relative;
}

.box-foot ul li {
  list-style: none;
}

.titulo-footer:after {
  content: '';
  width: 25px;
  height: 2px;
  display: inline-block;
  position: relative;
  top: -5px;
  background: var(--main4);
  margin-left: 15px;
}

.copyright {
  font-size: 12px;
}

.bl-copy {
  border-top: 1px solid #ffffff54;
  padding-top: 24px;
  margin-top: 20px;
}

.box-foot ul li>a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 3px;
  width: 0;
  transition: width 0s ease, background .25s ease;

}

.box-foot ul li>a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 2px;
  height: 3px;
  width: 0;
  background: var(--main2);
  transition: width .25s ease;

}

.box-foot ul li>a:hover:before {
  width: 100%;
  background: #f48b19;
  transition: width .25s ease;
}

.box-foot ul li>a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

/*------------------------------------*\
    ANIMATION 1
\*------------------------------------*/

.animation-1 {
  z-index: 0;
  opacity: 0;
  -webkit-transform: translateY(200px) scaleY(1.3);
  transform: translateY(200px) scaleY(1.3);
  -webkit-transition: transform 1s cubic-bezier(.165, .84, .44, 1), opacity 1s cubic-bezier(.165, .84, .44, 1);
  transition: transform 1s cubic-bezier(.165, .84, .44, 1), opacity 1s cubic-bezier(.165, .84, .44, 1);
}


.animation-1.right {
  -webkit-transform: translateX(200px) scaleY(1.3);
  transform: translateX(200px) scaleY(1.3);
  -webkit-transition: transform 1s cubic-bezier(.165, .84, .44, 1), opacity 1s cubic-bezier(.165, .84, .44, 1);
  transition: transform 1s cubic-bezier(.165, .84, .44, 1), opacity 1s cubic-bezier(.165, .84, .44, 1);
}


.animation-1.left {
  -webkit-transform: translateX(-200px) scaleY(1.3);
  transform: translateX(-200px) scaleY(1.3);
  -webkit-transition: transform 1s cubic-bezier(.165, .84, .44, 1), opacity 1s cubic-bezier(.165, .84, .44, 1);
  transition: transform 1s cubic-bezier(.165, .84, .44, 1), opacity 1s cubic-bezier(.165, .84, .44, 1);
}

.animation-1.active {
  opacity: 1;
  -webkit-transform: translateY(0px) scaleY(1);
  transform: translateY(0px) scaleY(1);
}

.animation-1:nth-child(2) {
  transition-delay: 0.4s;
}

.animation-1:nth-child(3) {
  transition-delay: 0.6s;
}

.animation-1:nth-child(4) {
  transition-delay: 0.8s;
}




#bar {
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #7fc242;
}

#progressBar {
  width: 100%;
  background: #EDEDED;
}

/*=============================================
MOVIL (SM revisamos en 767px)
=============================================*/

@media (max-width:767px) {
  body {
    font-size: 15px;
  }

  .xs-reverse {
    flex-direction: column-reverse;
  }

  /*/Header/*/

  .box_logo img {
    width: 150px;
  }

  .box-menu_m ul>li>a {
    font-size: 21px;

  }

  .box-menu_m {
    padding: 0px 30px;
  }

  .navigation-menu {
    width: 90%;
  }



  h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
  }



  .container {
    padding: 0 20px;
  }

  /*/Landing idioma movil/*/
  .info-idioma {
    min-height: 65vh;
    background-size: 100%;
    flex-wrap: wrap;
  }

  .l_desc {
    width: 100%;
    color: white;
    text-align: center;
    padding: 0 30px 100px;
  }

  .xs-none {
    display: none;
  }

  ul.menu-navigation {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    background: #04265c;
    list-style: none;
    overflow-x: auto;
  }

  h3 {
    font-size: 25px;
    font-weight: 600;
  }

  .l_desc h1 {
    font-size: 40px;
  }

  ul.menu-navigation li {
    padding: 15px 0px;
  }

  ul.menu-navigation li a {
    background: var(--main4);
    width: max-content;
    border-radius: 15px;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 13px;
  }

  section.bl_book {
    padding: 40px 0;
  }

  img.book-ilu {
    padding-top: 0;
  }

  span.down-book a i {
    display: none;
  }

  span.down-book a {
    display: block;
  }

  section.bl_horario table {
    margin-top: 30px;
  }

  .card-faq h5 {
    padding: 20px 10px;
  }

  .bl_costo {
    margin-top: 20px;
  }

  .tabla-flex {
    font-size: 14px;
    margin-top: 50px;
  }

  .row_tabla span:first-child,
  .head_tabla span:first-child {
    background: var(--main4);
    width: 33%;
    text-align: left;
    font-weight: 500;
    padding-left: 10px;
    font-size: 11px;
  }

  .head_tabla {
    font-size: 11px;
  }

  .head_tabla span {
    padding-top: 10px;
  }

  .tabla-flex .row_tabla:last-child {
    font-size: 12px;
  }

  .col-footer {
    width: 100%;
    margin-bottom: 40px;
  }




  /*/Landing Home/*/

  .row-slider {
    flex-wrap: wrap;
    padding-top: 140px;
    align-items: inherit;

  }

  .slider_texto {
    width: 100%;
  }

  .slider_texto h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .slider_img {
    width: 60%;
    align-self: end;
    position: absolute;
    right: 0;
  }

  .content_text {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .bl_novedades {

    margin: 10px 0;
  }

  .titulo-section h2 {

    padding-right: inherit;
  }

  .owl-idiomas {
    padding: inherit;
    margin-top: 50px;
  }

  .owl-idiomas .owl-nav .owl-prev {
    left: 0;
  }

  .owl-idiomas .owl-nav .owl-next {
    right: 0;
  }

  .slider_texto p {
    font-size: inherit;
  }

  .box_info {
    min-height: 260px;
    margin-bottom: 20px;
  }

  .box_info h5 {
    font-size: 20px;
    min-height: 120px;
  }

  .box_info img {
    max-height: 150px;
  }


  .bl_slider .owl-nav {
    display: none;
  }


  /*/Page templates movil/*/

  .titulo-page h1 {
    font-size: 30px;
    max-width: 100%;

  }

  .titulo-page {
    text-align: center;
  }

  /*===================/
COLUM H
/*==================/
=======================*/
  .cl-10,
  .cl-20,
  .cl-30,
  .cl-40,
  .cl-50,
  .cl-60,
  .cl-70,
  .cl-80,
  .cl-90 {

    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }


  .elementor-tabs {
    overflow-x: auto;
  }

}

.blog-sh {
  text-align: center;
}

/*===================/
blog 
/*==================*/


.fix {
  overflow: hidden
}

.trending-area {
  margin-top: 40px;
}

.trending-area .trending-main {
  border-bottom: 1px solid #eeeeee
}

.trending-area .trending-main .trending-top .trend-top-img {
  overflow: hidden;
  position: relative
}

.trending-area .trending-main .trending-top .trend-top-img : :before {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  content: ""
}

.trending-area .trending-main .trending-top .trend-top-img img {
  width: 100%;
  border-radius: 7px
}

.trending-area .trending-main .trending-top .trend-top-img .trend-top-cap {
  position: absolute;
  bottom: 25px;
  left: 31px
}

@media (max-width: 990px) {
  .trend-top-cap {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .trending-area .trending-main .trending-top .trend-top-img .trend-top-cap {
    bottom: -2px;
    left: 5px
  }

}

.trending-area .trending-main .trending-top .trend-top-img .trend-top-cap span {
  background: #fff9c6;
  color: #000;
  padding: 9px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  margin-bottom: 19px;
  display: inline-block
}

/**.trending-area .trending-main .trending-top .trend-top-img .trend-top-cap h2 {
  font-size : 45px !important;
}*/
.trending-area .trending-main .trending-top .trend-top-img .trend-top-cap p {
  font-size: 30px
}

@media (max-width: 767px) {
  .trending-area .trending-main .trending-top .trend-top-img .trend-top-cap h2 {
    font-size: 15px
  }
}

.trending-area .trending-main .trending-top .trend-top-img .trend-top-cap h2 a {
  color: #f48b19;
  font-weight: 700;
  line-height: 1.3
}

.trending-area .trending-main .trending-bottom .single-bottom .trend-bottom-img {
  overflow: hidden
}

.trending-area .trending-main .trending-bottom .single-bottom .trend-bottom-img img {
  width: 100%;
  border-radius: 5px;
  transform: scale(1);
  transition: all 0.5s ease-out 0s
}

.trending-area .trending-main .trending-bottom .single-bottom .trend-bottom-cap span {
  color: #000;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 15px;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block
}

.trending-area .trending-main .trending-bottom .single-bottom .trend-bottom-cap h4 {
  font-size: 20px
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .trending-area .trending-main .trending-bottom .single-bottom .trend-bottom-cap h4 {
    font-size: 16px
  }
}

.trending-area .trending-main .trending-bottom .single-bottom .trend-bottom-cap h4 a {
  font-weight: 700;
  line-height: 1.4
}

.trending-area .trending-main .trending-bottom .single-bottom .trend-bottom-cap h4 a : hover {
  color: #f48b19
}

.trending-area .trending-main .trand-right-single {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee
}

.trending-area .trending-main .trand-right-single : last-child {
  border-bottom: 0
}

.trending-area .trending-main .trand-right-single .trand-right-img img {
  border-radius: 6px
}

.trending-area .trending-main .trand-right-single .trand-right-cap {
  padding-left: 18px
}

.trending-area .trending-main .trand-right-single .trand-right-cap span {
  color: #000;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  padding: 10px 15px;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block
}

.trending-area .trending-main .trand-right-single .trand-right-cap h4 {
  font-size: 18px
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .trending-area .trending-main .trand-right-single .trand-right-cap h4 {
    font-size: 15px
  }
}

.trending-area .trending-main .trand-right-single .trand-right-cap h4 a {
  font-weight: 500;
  line-height: 1.4
}

.trending-area .trending-main .trand-right-single .trand-right-cap h4 a : hover {
  color: #000
}

.trending-area .trending-main .trending-top .trend-top-img : :before {
  background: -moz-linear-gradient(top, rgba(2, 26, 71, 0) 0%, rgba(2, 26, 71, 0.6) 100%);
  background: -webkit-linear-gradient(top, rgba(2, 26, 71, 0) 0%, rgba(2, 26, 71, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(2, 26, 71, 0) 0%, rgba(2, 26, 71, 0.6) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00021a47', endColorstr='#99021a47', GradientType=0)
}

.single-bottom : hover .trend-bottom-img img {
  transform: scale(1.1)
}

.mb-30 {
  margin-bottom: 30px
}

.mb-35 {
  margin-bottom: 35px
}

.color1 {
  background: #ffe7e6;
}

a.bt_noticias {
  color: white;
  background: var(--main4);
  padding: 15px 40px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}

.boton_centrado {
  text-align: center;
}

a.bt_descargar {
  color: white;
  background: var(--main4);
  padding: 15px 30px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}

/* ===================================
   MENÚ PRINCIPAL CON TAILWIND - FIX PARA SUBMENÚS
   =================================== */

/* Estilos base para el menú desktop */
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-menu > ul > li {
    margin-left: 25px;
}

/* Posicionamiento relativo para items con hijos */
.main-menu .relative {
    position: relative;
}

/* Submenús - primer nivel */
.main-menu .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #143B63;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    z-index: 50;
    padding: 10px 0;
    display: none;
}

/* Submenús - niveles más profundos */
.main-menu .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

/* Mostrar submenú al hacer hover en el padre */
.main-menu .group:hover > .sub-menu {
    display: block;
}

/* Estilos para los enlaces */
.main-menu a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.main-menu a:hover {
    background-color: #1e4a7a;
}

/* Padding específico para diferentes niveles */
.main-menu > ul > li > a {
    padding: 40px 0;
    display: block;
}

.main-menu .sub-menu a {
    padding: 8px 20px;
    display: block;
    white-space: nowrap;
}

/* Flechas indicadoras */
.main-menu .fa-chevron-down,
.main-menu .fa-chevron-right {
    transition: transform 0.2s ease;
}

.main-menu .group:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* ===================================
   MENÚ MÓVIL
   =================================== */
.mobile-menu {
    background-color: #143B63;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu a {
    color: white;
    display: block;
    padding: 12px 20px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover {
    background-color: #1e4a7a;
    color: #A88F1D;
}

/* Submenús en móvil */
.mobile-menu .sub-menu {
    padding-left: 20px;
    display: none;
}

.mobile-menu .sub-menu.show {
    display: block;
}

/* Botón toggle para móvil */
.mobile-submenu-toggle {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 12px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-submenu-toggle:hover {
    color: #A88F1D;
}

.mobile-submenu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-submenu-toggle.active i {
    transform: rotate(180deg);
}

/* Items con hijos en móvil */
.mobile-menu .menu-item-has-children > .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   OVERRIDES PARA EVITAR CONFLICTOS
   =================================== */

/* Desactivar estilos anteriores del menú que puedan interferir */
.box-menu > div > ul > li > ul,
.box-menu > div > ul > li.mega-menu > ul,
.navigation-menu,
ul.bt_menu {
    /* Estos estilos ya no se usan con el nuevo menú */
}

/* Asegurar que los submenús se vean correctamente */
.main-menu .sub-menu {
    border-radius: 0;
    border-top: 2px solid #A88F1D;
}

.main-menu .sub-menu a {
    font-size: 14px;
    font-weight: 400;
}

/* Animación suave para hover */
.main-menu .sub-menu {
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes responsive */
@media (max-width: 767px) {
    .main-menu {
        display: none !important;
    }
    
    .mobile-menu {
        display: block;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Botón hamburguesa animado */
    #menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    #menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Para desktop */
@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}
/* Ajustes para el nuevo footer con tus clases existentes */

/* Asegurar que los enlaces del footer tengan el ancho correcto */
.menu-foot li a.\!w-auto {
    width: auto !important;
}

/* Estilos para las redes sociales en el footer */
.box-foot .flex a {
    transition: all 0.3s ease;
}

.box-foot .flex a:hover {
    background-color: var(--main2) !important;
    transform: translateY(-3px);
}

/* Ajustes responsive para el footer */
@media (max-width: 767px) {
    .col-footer {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .bl-copy .row-sb {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .bl-copy .flex {
        justify-content: center;
    }
}

/* Pequeño ajuste para el contenedor */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Para que el footer no tenga padding bottom de más */
.bl_footer {
    padding: 50px 0 30px;
}

/* ===================================
   FIX PARA SUBMENÚS DEL HEADER
   =================================== */

/* Asegurar que los submenús sean visibles en hover */
.main-menu .group:hover > .absolute {
    display: block !important;
}

/* Estilos específicos para los submenús */
.main-menu .sub-menu,
.main-menu .absolute.left-0.top-full,
.main-menu .absolute.left-full.top-0 {
    background-color: #143B63 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    min-width: 250px !important;
    z-index: 9999 !important;
}

/* Estilos para los items del submenú */
.main-menu .sub-menu li,
.main-menu .absolute li {
    position: relative;
}

.main-menu .sub-menu a,
.main-menu .absolute a {
    color: white !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    white-space: nowrap;
}

.main-menu .sub-menu a:hover,
.main-menu .absolute a:hover {
    background-color: #1e4a7a !important;
}

/* Desactivar estilos antiguos que puedan interferir */
.box-menu > div > ul > li > ul {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    position: static !important;
}

/* Flechas indicadoras */
.main-menu .group:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* Asegurar que el menú desktop sea visible */
@media (min-width: 768px) {
    .main-menu {
        display: block !important;
    }
}

/* Debug - temporal para ver los submenús */
.main-menu .group .absolute {
    display: none;
}

.main-menu .group:hover .absolute {
    display: block !important;
}

/* ===================================
   FIX URGENTE PARA SUBMENÚS - Desktop
   =================================== */

/* Forzar que los submenús se muestren en hover */
.main-menu .group:hover > .absolute {
    display: block !important;
}

/* Asegurar que los submenús tengan posición correcta */
.main-menu .absolute {
    position: absolute !important;
    background-color: #143B63 !important;
    min-width: 250px !important;
    z-index: 9999 !important;
}

/* Submenús de primer nivel */
.main-menu > ul > li > .absolute {
    left: 0 !important;
    top: 100% !important;
}

/* Submenús de segundo nivel */
.main-menu .absolute .absolute {
    left: 100% !important;
    top: 0 !important;
}

/* Estilos para los items del submenú */
.main-menu .absolute a {
    color: white !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    display: block !important;
    white-space: nowrap !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.main-menu .absolute a:hover {
    background-color: #1e4a7a !important;
}

/* Eliminar border-bottom del último item */
.main-menu .absolute li:last-child a {
    border-bottom: none !important;
}

/* Flechas indicadoras */
.main-menu .fa-chevron-down,
.main-menu .fa-chevron-right {
    transition: transform 0.3s ease !important;
}

.main-menu .group:hover > a .fa-chevron-down {
    transform: rotate(180deg) !important;
}

/* ===================================
   FIX PARA MENÚ MÓVIL
   =================================== */

/* Mostrar/ocultar submenús en móvil */
.mobile-menu .sub-menu,
.mobile-menu ul ul {
    display: none;
}

.mobile-menu .sub-menu.show,
.mobile-menu ul ul.show {
    display: block !important;
}

/* Estilos para los botones toggle */
.mobile-submenu-toggle {
    background: transparent !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    padding: 8px 15px !important;
}

.mobile-submenu-toggle i {
    transition: transform 0.3s ease !important;
}

.mobile-submenu-toggle .rotate-180,
.mobile-submenu-toggle.active i {
    transform: rotate(180deg) !important;
}

/* Items con hijos en móvil */
.mobile-menu .menu-item-has-children > div {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

/* ===================================
   DESACTIVAR ESTILOS ANTIGUOS QUE INTERFIEREN
   =================================== */

/* Desactivar estilos del menú antiguo */
.box-menu > div > ul > li > ul,
.navigation-menu,
ul.bt_menu {
    /* Estos estilos ya no deben afectar */
    all: unset;
}

/* Asegurar que el menú desktop sea visible en desktop */
@media (min-width: 768px) {
    .main-menu {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .main-menu {
        display: none !important;
    }
}

/* ===================================
   FIX PARA SUBMENÚS EN MÓVIL
   =================================== */
.mobile-menu ul ul {
    display: none;
}

.mobile-menu ul ul.show,
.mobile-menu ul ul:not(.hidden) {
    display: block !important;
}

.mobile-submenu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-submenu-toggle .rotate-180,
.mobile-submenu-toggle.active i {
    transform: rotate(180deg) !important;
}

/* ===================================
   FIX PARA SUBMENÚS EN DESKTOP
   =================================== */
.main-menu .group:hover > .absolute {
    display: block !important;
}

.main-menu .absolute {
    position: absolute !important;
    background-color: #143B63 !important;
    min-width: 250px !important;
    z-index: 9999 !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3) !important;
}

.main-menu > ul > li > .absolute {
    left: 0 !important;
    top: 100% !important;
}

.main-menu .absolute .absolute {
    left: 100% !important;
    top: 0 !important;
}

.main-menu .absolute a {
    color: white !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    display: block !important;
    white-space: nowrap !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.main-menu .absolute a:hover {
    background-color: #1e4a7a !important;
}

.main-menu .absolute li:last-child a {
    border-bottom: none !important;
}

/* ===================================
   FOOTER STYLES (si no los tienes)
   =================================== */
.footer {
    background-color: #143B63;
    color: white;
    padding: 60px 0 0;
    margin-top: 60px;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #A88F1D;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-menu,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #A88F1D;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: #A88F1D;
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #A88F1D;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #A88F1D;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #A88F1D;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}