/*
Theme Name: ITLA
Theme URI: 
Author: Jovanny Almonte
Author URI: 
Description: Instituto tecnologíco de las americas
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: tecnologia, programacion. diseño, redes, telecomunicaciones, cnc, robotica
Text Domain: itla
*/


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #fdfdfd;
}

:root {
  --color-blue: #0087ff;
  --color-blue-dark: #003670;
  --color-blue-light: #80b3ff;
  --color-red: #dc052d;
  --color-pink: #ff6568;
  --color-green: #2ecc71;
  --color-gray: rgb(109, 109, 109);
  --color-gray-light: #f3f3f3;
  --color-orange: #ffba00;
  --color-purple: #9370f0;
}

/* Colors start */

.bg-blue {
  background-color: var(--color-blue-dark);
}

.bg-blue-light {
  background-color: var(--color-blue-light);
}

.bg-red {
  background-color: var(--color-red);
}

.bg-green {
  background-color: var(--color-green);
}

.bg-gray {
  background-color: var(--color-gray);
}

.bg-gray-light {
  background-color: var(--color-gray-light);
}

.bg-orange {
  background-color: var(--color-orange);
}

.text-blue {
  color: var(--color-blue-dark);
  font-weight: 700;
  padding: 1rem 0;
}

.text-blue-light {
  color: var(--color-blue-light);
}

.text-red {
  color: var(--color-red);
  padding: 1rem 0;
}

.text-green {
  color: var(--color-green);
}

.text-gray {
  color: var(--color-gray);
}

.text-gray-light {
  color: var(--color-gray-light);
}

.text-orange {
  color: var(--color-orange);
}

.border-blue {
  border-color: var(--color-blue-dark);
}

.border-blue-light {
  border-color: var(--color-blue-light);
}

.border-red {
  border-color: var(--color-red);
}

.border-green {
  border-color: var(--color-green);
}

.border-gray {
  border-color: var(--color-gray);
}

.border-gray-light {
  border-color: var(--color-gray-light);
}

.border-orange {
  border-color: var(--color-orange);
}

/* Colors end */

/* Buttons start */

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  margin: 4px;
  cursor: pointer;
  /* background-color: white; */
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-grande {
  padding: 18px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  margin: 4px;
  cursor: pointer;
  background-color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn:hover {
  filter: brightness(90%);
}

.btn-blue {
  background-color: var(--color-blue-dark);
  color: white;
}

.btn-blue:hover{
  background-color: var(--color-blue) !important;
}

.btn-outline-blue {
  color: var(--color-blue-dark);
  border: 1px solid var(--color-blue-dark);
}

.btn-red {
  background-color: var(--color-red);
  color: white;
}

.btn-outline-red {
  color: var(--color-red);
  border: 1px solid var(--color-red);
}

.btn-outline-red:hover{
  background-color: var(--color-red) !important;
  color: white !important;
}

.btn-green {
  background-color: var(--color-green);
  color: white;
}

.btn-outline-green {
  color: var(--color-green);
  border: 1px solid var(--color-green);
}

.btn-outline-green:hover{
  background-color: var(--color-green);;
  color: white;
}

.btn-white {
  background-color: white;
  color: var(--color-blue-dark);
}

.btn-outline-white {
  color: white;
  border: 1px solid white;
}

.btn-black {
  background-color: black;
  color: white;
}

.btn-outline-black {
  color: black;
  border: 1px solid black;
}

.btn-link {
  color: var(--color-blue-light);
}

.text-green {
  color: var(--color-green);
}

/* Buttons end */

/* Popup start */
.pop-up {
  border: 2px solid var(--color-gray-light);
  border-radius: 5px;
  width: 400px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.15);
  background-color: white;
}

.pop-up_title {
  background-color: var(--color-gray-light);
  border-radius: 5px 5px 0 0;
  padding: 10px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;

  margin-bottom: 10px;
  box-shadow: 0px 2px 3px #00000033;
}

.pop-up_title button {
  border: 2px solid var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
}

.pop-up_title .ri-close-line {
  font-size: 20px;
  cursor: pointer;
  color: var(--color-red);
}

.pop-up_title h1,
h2,
h3,
h4,
p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px
}

.pop-up_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.pop-up_content .title-md {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pop-up_content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--color-gray);
}

.pop-up_footer {
  border-top: 1px solid var(--color-blue-light);
  margin: 20px;
  padding: 20px;
  text-align: center;
}

.pop-up_footer a {
  text-align: center;
  color: #5698fa;
}

.pop-up_logo {
  max-width: 220px;
}

.pop-up_icon {
  font-size: 64px;
}

.pop-up_container {
  display: none;
}

/* Animate popup */
.pop-up_container.active {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.pop-up_container.active .pop-up {
  animation: pop-up 0.25s ease-in-out;
}

@keyframes pop-up {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Popup end */

/* Banners start */
.banner {
  display: flex;
}

.banner_content.bg-blue-ligth {
  background-color: #eff7ff;
}

.banner_content {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 150px;
  color: var(--color-blue-dark);
  gap: 20px;
  background-color: white;
}

.banner.banner_info .banner_content {
  width: 50%;
}

.banner.banner_info img {
  width: 50%;
}

.banner_content h2 {
  font-size: 46px;
  font-weight: 600;
  margin: 0;
}

.banner_content p {
  font-size: 18px;
  font-weight: 400;
}

.banner_image {
  width: 40%;
}

.banner .search-bar {
  max-width: unset;
  width: 100%;
  height: 40px;
}

.banner .search-bar input {
  height: 50px;
}

.banner .search-bar button {
  height: 50px;
  width: 50px;
}

input#header-search{
  color: #001429 !important;
}

.counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.counter>div>h3 {
  font-size: 56px;
  font-weight: 200 !important;
}

.counter>div:nth-child(1)>h3 {
  color: var(--color-green);
}

.counter>div:nth-child(3)>h3 {
  color: var(--color-blue-light);
}

.counter>div:nth-child(5)>h3 {
  color: var(--color-orange);
}

.banner_search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  gap: 20px;
  color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2);
}

.banner_search h2 {
  font-size: 40px;
}

.banner_search h3 {
  font-size: 36px;
}

.banner_search .search-bar {
  width: 40%;
  position: relative;
}

.banner_search_action {
  text-align: right;
  width: 40%;
}

.banner_search_action a {
  color: white;
  border-bottom: 2px solid white;
}

.banner_menu {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 30px;
}

.banner_menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-blue-dark);
  font-weight: 500;
  font-size: 14px;
}

.banner_menu a i {
  font-size: 28px;
  color: var(--color-gray);
}

/* Banners end */

/* Typography start */
.text-black {
  color: black;
}

.font-medium {
  font-weight: 400 !important;
}

/* Typography end */

/* Alerts start */
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
  justify-content: space-between;
}

.alert button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.alert.error {
  background-color: var(--color-red);
  color: white;
}

.alert button {
  color: white;
}

.alert span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert span>i {
  font-weight: 700;
  padding: 2px;
  font-size: 24px;
}

.alert.error span>i,
.alert.success span>i {
  border: 3px solid white;
  border-radius: 50%;
  font-size: 16px;
}

.alert.warning {
  background-color: var(--color-orange);
  color: white;
}

.alert.success {
  background-color: var(--color-green);
  color: white;
}

.alert.info {
  background-color: var(--color-blue);
  color: white;
}

.alert {
  max-width: 100%;
  width: 500px;
  transition: 0.3s;
}

.alert:hover {
  box-shadow: 0px 3px 10px rgb(0 0 0 / 15%);
}

.alert.alert_large {
  max-width: 100%;
  width: 700px;
}

.alert.alert_small {
  max-width: 100%;
  width: 300px;
}

.extense-alert {
  border-left: 10px solid;
  padding: 30px 20px;
  box-shadow: 0px 3px 10px rgb(0 0 0 / 15%);
  width: 550px;
  color: var(--color-gray);
  font-size: 18px;
  transition: 0.3s;
}

.extense-alert:hover {
  box-shadow: 0px 3px 10px rgb(0 0 0 / 25%);
}

.extense-alert.red {
  border-color: var(--color-red);
}

.extense-alert.yellow {
  border-color: var(--color-orange);
}

.extense-alert.green {
  border-color: var(--color-green);
}

.extense-alert.blue {
  border-color: var(--color-blue);
}

/* Atoms start */
.separator-horizontal {
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-light);
  margin: 20px 0;
}

.separator-vertical {
  width: 1px;
  height: 100%;
  background-color: var(--color-gray);
  margin: 0 20px;
}

.separator-horizontal.border-ligth-blue {
  background-color: var(--color-blue-light);
}

.tooltip {
  width: fit-content;
  position: relative;
}

.tooltip>span {
  display: flex;
  flex-direction: column;
}

.tooltip::after {
  z-index: 99;
  font-family: "remixicon" !important;
  content: "\ee58";
  color: var(--color-red);
  font-size: 22px;
}

.tooltip .tooltip_content {
  display: none;
  flex-direction: column;
  width: 300px;
  box-shadow: 2px 2px 10px #00000024;
  padding: 20px;
  position: absolute;
  border: 1px solid var(--color-gray);
  border-radius: 5px;
  left: 0;
  top: 40px;
  transition: 0.3s;
  background-color: white;
  z-index: 100;
}

.tooltip.right .tooltip_content {
  left: unset;
  right: -10px;
}

.tooltip:hover .tooltip_content {
  display: flex;
}

.tooltip .tooltip_content .tooltip_title {
  font-size: 16px;
  color: var(--color-blue-dark);
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.tooltip .tooltip_content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gray);
}

.tooltip .tooltip_content::before {
  content: " ";
  border-left: 1px solid var(--color-gray);
  border-top: 1px solid var(--color-gray);
  width: 15px;
  height: 15px;
  position: absolute;
  top: -8px;
  left: 15px;
  transform: rotate(45deg);
  background-color: white;
}

.tooltip.right .tooltip_content::before {
  left: unset;
  right: 15px;
}

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 4px;
}

.step.main {
  background-color: var(--color-blue-dark);
  color: white;
}

.step.inactive {
  background-color: var(--color-gray-light);
  color: var(--color-gray);
}

.step.check {
  background-color: var(--color-green);
  color: white;
}

.step.check::after {
  font-family: "remixicon" !important;
  content: "\EB7B";
}

.step.edit {
  background-color: var(--color-blue);
  color: white;
}

.step.edit::after {
  font-family: "remixicon" !important;
  content: "\EC85";
}

.step.waiting {
  background-color: var(--color-orange);
  color: white;
}

.step.waiting::after {
  font-family: "remixicon" !important;
  content: "\F20F";
  font-size: 20px;
}

.step.paused {
  background-color: var(--color-red);
  color: white;
}

.step.paused::after {
  font-family: "remixicon" !important;
  content: "\EE59";
  font-size: 20px;
}

.step.stanby {
  background-color: var(--color-purple);
  color: white;
}

.step.stanby::after {
  font-family: "remixicon" !important;
  content: "\EA81";
}

.badget {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  font-weight: bold;
  border-radius: 14px;
  margin: 4px;
  width: fit-content;
  min-width: 120px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.badget.active {
  background-color: var(--color-orange);
  color: white;
}

.badget.inactive {
  background-color: white;
  border: 2px solid var(--color-red);
  color: #313131;
}

.badget.option {
  border: 2px solid rgb(226, 226, 226);
}

.badget.option>input {
  display: none;
}

.badget.option:has(input:checked)::after {
  content: "\EB99";
  font-family: "remixicon" !important;
  font-size: 10px;
  color: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 50%;
  padding: 2px;
  position: absolute;
  right: 4px;
}

.icon-badge {
  position: relative;
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: var(--color-blue-dark);
}

.icon-badge>span {
  background-color: red;
  border: 2px solid white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 4px;
  position: absolute;
  right: -8px;
  top: -8px;
}

.icon-badge.message::after {
  font-family: "remixicon" !important;
  content: "\EEF6";
}

.icon-badge.notification::after {
  font-family: "remixicon" !important;
  content: "\EF92";
}

.logo-card {
  border: 1px solid var(--color-gray);
  border-radius: 5px;
  max-width: 400px;
}

.logo-card>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}

.logo-card>div>img {
  height: 80px;
}

.logo-card>div>p {
  color: var(--color-gray);
}

.logo-card .logo-card_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background-color: gray;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0% 4px 4px;
}

.acordeon .acordeon_content {
  display: none;
}

.acordeon input[type="checkbox"] {
  display: none;
}

.acordeon:has(input:checked) .acordeon_content {
  display: block;
}

.acordeon .acordeon_title {
  background-color: var(--color-blue-dark);
  width: 100%;
  display: block;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  padding: 8px;
  color: white;
  font-weight: 600;
  align-items: center;
  cursor: pointer;
}

.acordeon .acordeon_title::after {
  font-family: "remixicon" !important;
  content: "\EA4E";
  font-size: 20px;
  color: white;
}

.acordeon:has(input:checked) .acordeon_title::after {
  font-family: "remixicon" !important;
  content: "\EA78";
  font-size: 20px;
  color: white;
}

.acordeon .acordeon_content {
  padding: 16px;
  background-color: #f6faff;
  border: 1px solid #c6ddff;
  color: #313131;
}

.acordeon.short {
  max-width: 500px;
}

.progress-container {
  position: relative;
  width: 300px;
  height: 16px;
  border-radius: 20px;
  background-color: #e6e6e6;
  z-index: 0;
}

.progress-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
  border: 0;
  height: 16px;
  border-radius: 20px;
  background-color: var(--color-blue);
  z-index: 10;
  color: white;
  font-size: 12px;
}

.progress-bar[value="100"] {
  background-color: var(--color-green);
}

.progress-bar[value="0"] {
  background-color: #e6e6e6;
  color: var(--color-gray);
  padding: 0 24px;
}

/* Atoms end */

/* Headers start */
.topbar.light {
  background-color: white;
  color: #313131;
}

.topbar.light .logo-text {
  color: var(--color-blue-dark);
}

/*****************



Despues de aquí son cosas de Tomás  



*****************/

.nortic-A1 {
  content: url(./images/sellos_A1_grey.svg);
  filter: opacity(0.3);
}

.nortic-A1.obtained {
  content: url(./images/sellos_A1.svg);
  filter: opacity(1);
}

.nortic-A1.expired {
  content: url(./images/sellos_A1_grey.svg);
  filter: opacity(1);
}

.nortic-A2 {
  content: url(./images/sellos_A2_grey.svg);
  filter: opacity(0.3);
}

.nortic-A2.obtained {
  content: url(./images/sellos_A2.svg);
  filter: opacity(1);
}

.nortic-A2.expired {
  content: url(./images/sellos_A2_grey.svg);
  filter: opacity(1);
}

.nortic-A3 {
  content: url(./images/sellos_A3_grey.svg);
  filter: opacity(0.3);
}

.nortic-A3.obtained {
  content: url(./images/sellos_A3.svg);
  filter: opacity(1);
}

.nortic-A3.expired {
  content: url(./images/sellos_A3_grey.svg);
  filter: opacity(1);
}

.nortic-A4 {
  content: url(./images/sellos_A4_grey.svg);
  filter: opacity(0.3);
}

.nortic-A4.obtained {
  content: url(./images/sellos_A4.svg);
  filter: opacity(1);
}

.nortic-A4.expired {
  content: url(./images/sellos_A5_grey.svg);
  filter: opacity(1);
}

.nortic-A5 {
  content: url(./images/sellos_A5_grey.svg);
  filter: opacity(0.3);
}

.nortic-A5.obtained {
  content: url(./images/sellos_A5.svg);
  filter: opacity(1);
}

.nortic-A5.expired {
  content: url(./images/sellos_A5_grey.svg);
  filter: opacity(1);
}

.nortic-A6 {
  content: url(./images/sellos_A6_grey.svg);
  filter: opacity(0.3);
}

.nortic-A6.obtained {
  content: url(./images/sellos_A6.svg);
  filter: opacity(1);
}

.nortic-A6.expired {
  content: url(./images/sellos_A6_grey.svg);
  filter: opacity(1);
}

.nortic-A7 {
  content: url(./images/sellos_A7_grey.svg);
  filter: opacity(0.3);
}

.nortic-A7.obtained {
  content: url(./images/sellos_A7.svg);
  filter: opacity(1);
}

.nortic-A7.expired {
  content: url(./images/sellos_A7_grey.svg);
  filter: opacity(1);
}

.nortic-B1 {
  content: url(./images/sellos_B1_grey.svg);
  filter: opacity(0.3);
}

.nortic-B1.obtained {
  content: url(./images/sellos_B1.svg);
  filter: opacity(1);
}

.nortic-B1.expired {
  content: url(./images/sellos_B1_grey.svg);
  filter: opacity(1);
}

.nortic-E1 {
  content: url(./images/sellos_E1_grey.svg);
  filter: opacity(0.3);
}

.nortic-E1.obtained {
  content: url(./images/sellos_E1.svg);
  filter: opacity(1);
}

.nortic-E1.expired {
  content: url(./images/sellos_E1_grey.svg);
  filter: opacity(1);
}

.aenor {
  content: url(./images/AENOR.svg);
}

.iqnet {
  content: url(./images/certified_IQNet.svg);
}

/**************** Footer Dark ****************/

.footer-dark .footer-top {
  background-color: #003670;
  padding: 43px 0 43px;
}

.footer-dark .footer-top .logo-cont {
  height: 100%;
  position: relative;
}

.footer-dark .footer-top .logo-cont::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  right: 90px;
  top: 0;
  background-color: #d8d8d8;
}

.footer-dark .footer-top .footer-title {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
}

.footer-dark .footer-top .footer-menu-list li a {
  color: #fff;
  line-height: 20px;
  font-size: 14px;
}

.footer-dark .footer-top .footer-menu-list li a:hover {
  opacity: 0.8;
}

.footer-dark .footer-top .footer-menu-list li:not(:last-child) {
  margin-bottom: 12px;
}

.footer-dark .footer-top .footer-menu-list li span {
  color: #fff;
  line-height: 20px;
  font-size: 14px;
}

.footer-dark .footer-bottom-cont {
  padding: 30px 0;
  color: #003670;
  display: flex;
  justify-content: space-between;
}

.footer-dark .footer-bottom-cont .date,
.footer-dark .footer-bottom-cont .logo {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.footer-dark .footer-bottom-cont .logo {
  display: inline-flex;
  align-items: center;
}

.footer-dark .footer-bottom-cont .logo img {
  margin-left: 8px;
}

.footer-dark .footer-bottom-right {
  display: flex;
  align-items: center;
}

.footer-dark .footer-bottom-right .follow-text {
  margin-right: 8px;
  font-size: 14px;
  font-weight: 600;
}

.footer-dark .footer-bottom-right .follow-icons {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 16px;
}

.footer-dark .footer-bottom-right .follow-icons a {
  color: #003670;
}

@media screen and (max-width: 768px) {

  .crumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); /* Degradado desde transparente a negro */
    z-index: 1; /* Asegura que el degradado esté debajo del texto */
}

.crumb > * {
    position: relative;
    z-index: 2; /* Asegura que el texto se muestre encima del degradado */
}

  .footer-dark .footer-top .row>div {
    margin-top: 30px;
  }

  .footer-dark .footer-bottom-cont {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
}


@media screen and (max-width: 1200px) {
  .footer-dark .footer-top .logo-cont img {
    max-width: 180px;
  }

  .footer-dark .footer-top .logo-cont::after {
    right: 0 !important;
  }
}

.footer-nortic {
  align-items: center;
  border-bottom: 1px solid #cccccc;
  padding: 30px 0;
}

/* .footer-nortic .nortic-seals img{
  filter: grayscale(1) brightness(1.75);
}

.footer-nortic .nortic-seals img.expired{
  filter: brightness(0) saturate(100%) invert(84%) sepia(0%) saturate(16%) hue-rotate(178deg) brightness(93%) contrast(90%);;
}

.footer-nortic .nortic-seals img.obtained{
  filter: grayscale(0) brightness(1);
} */

/***************** Footter Light *****************/

.footer-light .footer-top {
  background-color: white;
  padding: 43px 0 83px;
  border-bottom: 1px solid #d3d3d3;
}

.footer-light .footer-top .logo-cont {
  height: 100%;
  position: relative;
}

.footer-light .footer-top .logo-cont::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  right: 90px;
  top: 0;
  background-color: #d3d3d3;
}

.footer-light .footer-top .footer-title {
  text-transform: uppercase;
  color: #003876;
  margin-bottom: 32px;
}

.footer-light .footer-top .footer-menu-list li a {
  color: #003876;
  line-height: 20px;
  font-size: 14px;
}

.footer-light .footer-top .footer-menu-list li a:hover {
  opacity: 0.8;
}

.footer-light .footer-top .footer-menu-list li:not(:last-child) {
  margin-bottom: 12px;
}

.footer-light .footer-top .footer-menu-list li span {
  color: #003876;
  line-height: 20px;
  font-size: 14px;
}

.footer-light .footer-bottom {
  background-color: #003670;
}

.footer-light .footer-bottom-cont {
  padding: 30px 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.footer-light .footer-bottom-cont .date,
.footer-light .footer-bottom-cont .logo {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.footer-light .footer-bottom-cont .logo {
  display: inline-flex;
  align-items: center;
}

.footer-light .footer-bottom-cont .logo img {
  margin-left: 8px;
}

.footer-light .footer-bottom-right {
  display: flex;
  /* align-items: center; */
}

.footer-light .footer-bottom-right .follow-text {
  margin-right: 8px;
  font-size: 14px;
  font-weight: 600;
}

.footer-light .footer-bottom-right .follow-icons {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 16px;
}

.footer-light .footer-bottom-right .follow-icons a {
  color: white;
}

.footer-nortic .certifications {}

@media screen and (max-width: 768px) {
  .footer-light .footer-top .row>div {
    margin-top: 30px;
  }

  .footer-light .footer-bottom-cont {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
}

@media screen and (max-width: 1200px) {
  .footer-light .footer-top .logo-cont img {
    max-width: 180px;
  }

  .footer-light .footer-top .logo-cont::after {
    right: 0 !important;
  }
}

@media (min-width: 481px) {}

@media (min-width: 769px) {
  .footer-nortic a {
    /* display: none; */
  }
}

/***************** Tarjetas Hover *****************/

.card.top::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background-color: #dc052d;
  width: 100%;
  height: 3px;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.card.green::before {
  background-color: #5cc653;
}

.card.orange::before {
  background-color: #ff941f;
}

.card.blue::before {
  background-color: #003670;
}

.card.lightblue::before {
  background-color: #00cbff;
}

.card-image::before {
  content: " ";
  background-color: #dc052d;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
}

.card.green .card-category-top,
.card.green .card-category {
  background-color: #5cc653;
}

.card.orange .card-category-top,
.card.orange .card-category {
  background-color: #ff941f;
}

.card.lightblue .card-category-top,
.card.lightblue .card-category {
  background-color: #00cbff;
}

.card.blue .card-category-top,
.card.blue .card-category {
  background-color: #003670;
}

.card {
  color: #002f6c;
  position: relative;
}

.card h3 {
  font-size: 21px;
}

.card-title {
  font-weight: bold;
}

.card .card-text {
  margin-bottom: 15px;
}

.card .card-link {
  text-decoration: underline;
  color: #0087ff;
}

.card-category {
  color: white;
  padding: 8px;
  border-radius: 50px;
  text-align: center;
}

.card-category-top {
  position: absolute;
  padding: 8px;
  border-radius: 50px;
  left: 50%;
  transform: translate(-50%, -49%);
  margin: 0 auto;
  color: white;
}

.card-header {
  background-color: white;
}

.card-footer {
  font-weight: bold;
  padding: 15px;
  background-color: white;
}

.card-subtitle {
  margin-bottom: 10px;
}

.card.card-dark {
  background-color: #003670;
  color: white;
}

.card-dark::before,
.card-light::before {
  content: "";
  display: none;
}

/***************** Componente Galería *****************/

/***************** Slider *****************/

.slider {
  border-radius: 12px;
  border: 1px solid #003670;
  width: 25%;
  text-align: center;
  color: #003670;
  padding: 160px 40px;
  transition: 300ms;
  min-height: 454px;
  max-height: 454px;
  cursor: pointer;
}

.slider:nth-child(2) {
  margin: 0 26px;
}

.slide-icon {
  font-size: 24px;
  margin-bottom: 20px;
}

.slide-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.slide-text {
  font-size: 16px;
  display: none;
  line-height: 26px;
  position: relative;
}

.slider.active {
  background-color: #003670;
  padding: 160px 48px 96px;
  color: #fff;
  width: 50%;
  text-align: left;
  box-shadow: 15px 15px 30px #001429 24;
}

.slider.active .slide-text {
  opacity: 0.7;
  display: block;
  animation: slideUp 700ms cubic-bezier(0.47, 0, 0.75, 0.72) 75ms normal backwards;
}

@keyframes slideUp {
  0% {
    bottom: -50px;
    opacity: 0;
  }

  50% {
    bottom: 0px;
    opacity: 1;
  }

  to {
    bottom: 0px;
    opacity: 1;
  }
}

.slider-control {
  position: absolute;
  display: flex;
  bottom: -50px;
  transform: translateX(-50%);
  left: 50%;
}

.slider-control span {
  width: 10px;
  height: 10px;
  background-color: #003670;
  border-radius: 50px;
  margin: 0 8px;
  opacity: 0.7;
  cursor: pointer;
}

.slider-control span.active {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .slid {
    flex-direction: column;
    gap: 15px;
  }

  .slider {
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 30px 20px !important;
    min-height: auto;
  }
}

.carousel-indicators [data-bs-target] {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #c7c7c7;
}

.carousel-indicators [data-bs-target].active {
  background-color: #397ff5;
}

.quote-box {
  background-color: #f8f8f8;
  padding: 20px;
  padding-bottom: 50px;
}

.quote-box .quote-img {
  border-radius: 50%;
  border: 3px solid #0064d2;
  height: 80px;
  width: 80px;
}

.quote-header {
  margin: 10px;
}

.quote-title {
  font-weight: bold;
}

.quote-subtitle {
  margin-top: 10px;
}

img.quotes {
  content: url(./images/quotes.png);
  width: 15px;
  height: 15px;
  margin: 0 10px 0 0;
}

.quote-body {
  padding: 20px;
}

.card.quote {
  border-radius: 0;
  border: none;
  background-color: #f8f8f8;
}

/**************** Entrada y salida de tecto ****************/

*:not(.input-group) input[type="text"],
select,
.form-select,
textarea {
  border-radius: 3px !important;
}

input[type="text"]:not([disabled]):hover,
select:not([disabled]):not(:focus):hover {
  background-color: #eff7ff;
  border-color: #9fd0fd;
}

.was-validated input[type="text"]:invalid,
.was-validated select:invalid {
  background-color: #ffeeed;
  border-color: #ee2a24;
  /*background-image: none;*/
}

#text_count {
  margin-top: 10px;
  color: #929292;
}

option:hover {
  background-color: #e5f1fc;
}

/**************** Datepicker ****************/

.datepicker {
  display: none;
}

.datepicker.active {
  display: block;
}

.datepicker-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-top: 4px;
}

.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}

.datepicker-picker {
  display: inline-block;
  border-radius: 0.25rem;
  background-color: #fff;
}

.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.datepicker-picker span {
  display: block;
  flex: 1;
  border: 0;
  border-radius: 0.25rem;
  cursor: default;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker-main {
  padding: 2px;
}

.datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
}

.datepicker-grid,
.datepicker-view .days-of-week,
.datepicker-view,
.datepicker-controls {
  display: flex;
  min-height: 30px;
}

.datepicker-grid {
  flex-wrap: wrap;
}

.datepicker-view .days .datepicker-cell,
.datepicker-view .dow {
  flex-basis: 14.2857142857%;
}

.datepicker-view.datepicker-grid .datepicker-cell {
  flex-basis: 25%;
}

.datepicker-cell,
.datepicker-view .week {
  height: 2.25rem;
  line-height: 2.25rem;
}

.datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}

.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
  margin: 15px 0;
}

.datepicker-controls .btn {
  border-color: #f8f9fa;
  background-color: #fff;
  border: none;
}

.datepicker-controls .btn:hover {
  border-color: #dae0e5;
  background-color: #e2e6ea;
  color: #000;
}

.datepicker-controls .btn:focus {
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
  background-color: #e2e6ea;
  color: #000;
}

.datepicker-controls .btn:disabled {
  border-color: #f8f9fa;
  background-color: #f8f9fa;
  color: #000;
}

.datepicker-controls .btn:not(:disabled):active {
  border-color: #d3d9df;
  background-color: #dae0e5;
  color: #000;
}

.datepicker-controls .btn:not(:disabled):active:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}

.datepicker-header .datepicker-controls .btn {
  border-color: transparent;
  font-weight: bold;
}

.datepicker-footer .datepicker-controls .btn {
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 0.2rem;
  width: 100%;
  font-size: 0.875rem;
}

.datepicker-controls .view-switch {
  flex: auto;
  border: none;
  background-color: #fff;
  color: #204064;
  font-weight: bold;
  font-size: 18px;
}

.datepicker-controls .prev-btn,
.datepicker-controls .next-btn {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  width: 2.25rem;
  border: none;
  color: #204064;
  background-color: #fff;
  font-size: 25px;
}

.datepicker-controls .prev-btn.disabled,
.datepicker-controls .next-btn.disabled {
  visibility: hidden;
}

.datepicker-view .dow {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #707070;
}

.datepicker-view .week {
  width: 2.25rem;
  color: #dee2e6;
  font-size: 0.875rem;
}

@media (max-width: 22.5rem) {
  .datepicker-view .week {
    width: 1.96875rem;
  }
}

.datepicker-grid {
  width: 15.75rem;
}

@media (max-width: 22.5rem) {
  .calendar-weeks+.days .datepicker-grid {
    width: 13.78125rem;
  }
}

.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}

.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background-color: #0087ff;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
}

.datepicker-cell.disabled {
  color: #adb5bd;
}

.datepicker-cell.prev:not(.disabled),
.datepicker-cell.next:not(.disabled) {
  color: #e4e4e4;
}

.datepicker-cell.prev.selected,
.datepicker-cell.next.selected {
  color: #e6e6e6;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: #f8f9fa;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #f1f3f5;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e2e6ea;
}

.datepicker-cell.today:not(.selected) {
  color: #000;
  background-color: #e2e6ea;
  border-radius: 50%;
}

.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #000;
}

.datepicker-cell.today.focused:not(.selected) {
  color: #000;
  background-color: #e2e6ea;
  border-radius: 50%;
}

.datepicker-cell.range-end:not(.selected),
.datepicker-cell.range-start:not(.selected) {
  background-color: #6c757d;
  color: #fff;
}

.datepicker-cell.range-end.focused:not(.selected),
.datepicker-cell.range-start.focused:not(.selected) {
  background-color: #666f76;
}

.datepicker-cell.range-start {
  border-radius: 0.25rem 0 0 0.25rem;
}

.datepicker-cell.range-end {
  border-radius: 0 0.25rem 0.25rem 0;
}

.datepicker-cell.range {
  border-radius: 0;
  background-color: #e9ecef;
}

.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #e2e6ea;
}

.datepicker-cell.range.disabled {
  color: #cbd3da;
}

.datepicker-cell.range.focused {
  background-color: #dadfe4;
}

.datepicker-view.datepicker-grid .datepicker-cell {
  height: 4rem;
  line-height: 4rem;
}

.datepicker-input.in-edit {
  border-color: #6da8fe;
}

.datepicker-input.in-edit:focus,
.datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(109, 168, 254, 0.2);
}

/*** Time Picker */

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select.form-select {
  display: none;
  /*hide original SELECT element: */
}

/* Point the arrow upwards when the select box is open (active): */
.form-select.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div {
  padding: 15px;
  border-bottom: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-left: 1px solid #ced4da;
  border-collapse: collapse;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: #e5f1fc;
}

.input-group-number-buttons {
  display: flex;
  flex-direction: column;
}

.input-group-number-buttons button {
  padding: 0;
  border: 1px solid;
  border-collapse: collapse;
  border-radius: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #e2e2e2;
  height: 100%;
  color: #b1b1b1;
  cursor: pointer;
  line-height: 0;
  margin: 0;
}

.input-group-number-buttons button:nth-of-type(1) {
  border-bottom-left-radius: 0;
  margin-bottom: -1px;
}

.input-group-number-buttons button:nth-of-type(2) {
  border-top-left-radius: 0;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-radius: 3px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input.multiple {
  height: fit-content;
}

.multiple-select-container {
  align-items: center;
}

.multiple-select-container #multipleSelectButton {
  background-color: #2ecc71;
  width: 45px;
  border-radius: 50% !important;
  aspect-ratio: 1/1;
  z-index: 5;
  border: none;
  padding: inherit;
  justify-content: center;
  font-size: 19px;
  font-weight: normal;
}

.multiple-select-container input {
  height: fit-content;
  margin-right: -15px;
}

/* button nav .nav-link{
  background-color: none !important;
} */
.nav-pills .nav-link:hover{
  background-color: none  !important;
}

@media screen and (min-width: 768px) {
  footer .footer-nortic a {
    display: none;
  }

  .carreras .hover-image{
    flex: none !important;
    /* max-width: 100% !important; */
  }

  /* .col-md-2 {
        flex: none !important;
        max-width: 100% !important;
    } */

    /* a{
      font-size: 1.5rem !important;
      color: #fff !important;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6) !important;
    } */

    .container__box a {
      text-shadow:none !important
    }
    
    /* .menu-item a{
      color: #002f6c !important;
      text-shadow:none !important
    } */

    .slogan p{
      font-size: 2rem !important;
      color: #fff !important;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 1) !important;
    }

    .btn-carrera{
      color: #00386d !important;
      text-shadow: none !important;
    }

    .btn-carrera:hover{
      color: #fff !important;
      background-color: #002f6c !important;
    }

    /* .fadeInLeftBig{
      margin-top: 2rem !important;
    } */

    .fadeInLeftBig .btn-outline-secondary{
      width: 100% !important;
      text-shadow: none !important;
    }

    .fadeInLeftBig .btn-outline-secondary:hover{
      color: #00386d !important;
      text-shadow: none !important;
    }
}




.footer-light {
  border-top: 1px solid #d3d3d3;
}

.footer-title {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  
  .header-light{
  display: flex;
  flex-direction: column-reverse;
  }

  .pr-7{
    width: 100% !important;
  }

  .logo-icon{
    display: none;
  }
	.site-main{
		margin-top: 0 !important;
	}
	
	
}

.page-title{
  margin-left: 4rem !important;}

/* .page-tittle .somos{
  text-transform: capitalize;
} */

.somos{
  font-size: 14px !important;
 }
	
  .bg_valor{
    width: 100% !important;
  }

  .flex_valor{
    margin: 0 !important;
  }
  .oCalidad{
    padding: 2rem !important;
  }
  .navbar-brand{
    display: block !important;
  }

  .box{
    margin: 0.25rem 0 !important;
  }

  .section-heading{
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .footer-nortic a {
    display: flex;
    justify-content: space-between;
    color: #003876;
    font-weight: 500;
    margin-bottom: 20px;
    text-decoration: none;
  }

  footer .footer-nortic {
    padding: 0;
  }

  footer .footer-nortic a {
    padding: 22px 0;
    margin-bottom: 0;
  }

  footer .footer-nortic .certifications {
    margin-bottom: 20px;
  }

  .footer-bottom {
    height: 150px !important;
  }

  .footer-light .footer-bottom-cont {
    padding: 14px 0;
  }

  .footer-light .footer-top .footer-menu-list li span,
  .footer-light .footer-top .footer-menu-list li a {
    font-size: 12px;
    line-height: 15px;
  }

  .footer-nortic {
    border-bottom: none;
  }

  .footer-light .footer-top .footer-title {
    margin-bottom: 10px;
  }

  .footer-light .footer-top {
    padding: 0 0 26px;
    height: 380px;
  }

  .footer-light .footer-top .footer-menu-list li:not(:last-child) {
    margin-bottom: 6px;
  }

  .footer-light .footer-top .logo-cont::after {
    content: none;
  }

/* CSS Personalizados */

#menu-menu-principal{
  display: flex !important;
  flex-wrap: wrap !important;
}

.section-heading .text-white{
		font-size: 2.5rem !important;
	}

p {
  margin-bottom: 1rem !important;
  line-height: 22px !important;
}

ul li {
/*   margin-bottom: 1rem !important; */
  line-height: 22px !important;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
  font-size: 16px;
}


.line {
  width: 100px;
  height: 3px;
  border-radius: 3px;
  background-color: #f23224;
  margin-top: 10px;
}

.somos, .accordion-set-title{
  font-size: 24px;
  color: #023877;
  font-weight: 700;
  margin-bottom: 0;
}

.somos1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.bround {
  width: 20rem;
  height: auto;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.151);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.bround .h3-d{
  color: #fff !important;
}


.fw-bold{
  color: var(--color-blue-dark);
}
.valores {
  background-image: url('http://itla.edu.do/wp-content/uploads/2025/02/IMG_6094.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem;

  color: #fff;
}

.dropdown-item{
  color: #585858 !important;
}

.dropdown-item:hover{
  color: var(--color-red) !important;
}

.fontFlex {
  display: flex;
  margin-right: 1rem;
}

.fontFlex i {
  margin-right: 1rem;
}

.oCalidad {
  background-color: #fff;
  padding: 5rem;
  border-radius: 1rem;
  color: #001429;
}

.d-flex {
  display: flex !important;
  align-items: center !important;

}


.crumb {
  position: relative;
    background-image: url('http://itla.edu.do/wp-content/uploads/2025/02/bg.png');
    background-size: cover;
    min-height: 220px;
    background-color: #0a407b5e;
    display: flex;
    align-items: center;
}

/* Capa de desenfoque en el lado derecho */
.header-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('http://itla.edu.do/wp-content/uploads/2025/02/bg.png');
    background-size: cover;
    background-position: right;
    filter: blur(15px); /* Aplicar desenfoque gaussiano */
    z-index: -1;
}

.breadcrumb-tittle,
.breadcrumb {
  display: flex;
  justify-content: flex-end;
}

.breadcrumb-tittle {
  font-size: xx-large;
  line-height: 40px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,9)
}

.breadcrumb-item.active,.breadcrumb-item.active::before {
  color: #fff !important;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 9);
}

.hero {
  background-color: #003670;
}

.list-details ul.list-check li {
  line-height: 1.4;
  font-size: 15px;
  font-weight: 400;
  padding-bottom: .7rem;
}

.list-details ul li{
  list-style-type: circle;
}

.list-check li{
  list-style-type: circle;
    margin: .5rem 0 .5rem 3rem;
}

.text-white{
/*   color: rgb(189 189 189) !important; */
	color:#fff;
}

/* .bgGradient {
  background: linear-gradient(to center right-bottom -180deg, #fff, #023877);
} */

.d-flex{
  display: flex !important;
  align-items: center !important;
  justify-content: center;
}

/* .bgGradient{
  padding: 1rem;
  background: linear-gradient(318deg, #023877, transparent);
  border-radius: 1rem;
} */

/* .bgGradient-2{
  border-radius: 1rem;
  background: linear-gradient(318deg, #023877, transparent);
} */

/* .bg-blur{
  display: flex;
  justify-content: center;
  background-color: #3d3d3d;
  padding: 2rem 3rem;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0px 0px 4rem #222;
  backdrop-filter: blur(1rem);
} */

.blockquote{
  text-align: right;
  
}
.blockquote-footer{
  color: #95b4cf !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.itemside{
  display: flex;
}

.list-group .list-group-item{
  /* margin: 0.25rem 0;
  box-shadow: 0 4px 8px 0 #0dcaf070;
  background: rgba(255, 255, 255, .25) !important; */
}

.listDoc {
  color: #7b7b7b;
}

.btn-list{
  color: #437ed4 !important;
}
.bg-container{ 
  background-color: #00387605;
  box-shadow: rgb(0 0 0 / 25%) 0px 4px 8px 0px;
  border-radius: 1rem;
  padding: 1rem;
}

.bgRector{
  box-shadow: 0 4px 8px 0 #0dcaf070;
  background: rgba(255, 255, 255, .25) !important;
  border-radius: 2rem;
}

.list-group li:hover {
  background-color: #0036700d;
}

.mc-list-font{
  font-size: 1rem;
  margin-bottom: 20px;
  color: rgb(3, 46, 89);
  border-radius: 4px;
}

.btn-color{
  background-color: #0036700d;
  color: #003670;
}

.btn-color:hover{
  background-color: #E52229;
}

.nav-tabs{
  text-transform: uppercase !important;
}

.nav-tabs .nav-link.active{
  background-color: rgba(0, 56, 118, 0.02);
  color: #003670 !important;
  font-weight: 700;
  box-shadow: 0 4px 8px 0 #00367085;
  background: rgba(255, 255, 255, .25) !important;
}

.tab-pane{
  overflow: auto;
}

.tab-pane fade active show{
  border-radius: 1rem;
  opacity: 1.8;
}

.pagination .page-item.active .page-link{
  background-color: #003670 !important;
  font-weight: 700;
}

.pagination .page-item .page-link:hover{
  background-color: #003670 !important;
  color: #fff;
  font-weight: 700;
}

.tab-pane, .acordion {
  display: block;
  box-shadow: 0 4px 8px 0 #00367085;
  background: rgb(255 255 255 / 83%) !important;
}

.img-25{
  width: 25%;
  border-radius: 50%;
}
/* body{
  background-image: url(http://nuevoiltaedudo.local.local/wp-content/uploads/2025/02/IMG_6094.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
} */

.align-items-start, .tabla_datos, .card .no-hover, .list-group-{
  background: rgba(255, 255, 255, .25) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  backdrop-filter: blur(30px) !important;
  border: 1.5px solid rgba(209, 213, 219, 0.3) !important;
}

/* .box-container{
  background-color: #f8f9fa1c !important;
} */

/* body{
  background-color: #a5bec3;
} */

.section-slogan {
  position: relative;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
    url('http://nuevoitlaedudo.local/wp-content/uploads/2025/02/ITLA-TOP.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 13rem;
  display: flex;
  align-items: center;
}

.section-slogan::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;/* Azul con opacidad del 50% */
  z-index: 1; 
 }
 

.section-slogan > * {
  position: relative;
  z-index: 2;
}

.animate__zoomInDown{
  color: #fff !important;
}

.text-lite-blue{
  color: #1874B5!important
}

h1, h2, h3, h4, h5, h6{
  line-height: 1.3;
  font-weight: 700 !important;
}

p, li {
  color: #575757;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}

.services-wrap .services-list, .bg_valor, acordion {
  width: 95%;
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 20px 30px 20px 20px;
  background: #fff;
  color: #1c79bb;
  border-radius: 4px;
  position: relative;
  display: block;
  -webkit-box-shadow: 0 4px 8px 0 #0dcaf070;
  -moz-box-shadow: 0 4px 8px 0 #0dcaf070;
  box-shadow: 0 4px 8px 0 #0dcaf070;
  background: rgba(255, 255, 255, .25) !important;
}

.bg_valor{
  width: 31.333333%;
}

.flex_valor{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: space-around;
}


.services-wrap .services-list:hover {
    background: #249cf2 !important;
    color: #fff!important;
}

.services-wrap .services-list:hover .btn-custom {
  background: #3bdbff;
}

.services-wrap .services-list .btn-custom i {
  color: #ffffff;
}

.services-wrap .services-list .btn-custom {
  position: absolute;
  top: 50%;
  right: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #237BC0;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-container, .align-items-start{
  margin-bottom: 3rem !important;
  background-color:#f0f8ff3b !important;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  box-shadow: 0 3px 5px 0 #47474770;
  backdrop-filter: saturate(180%) blur(10px);

}

.d-center{
  display:flex;
  justify-content: center;
}

.align-items-start{
  background-image: url('http://nuevoitlaedudo.local/wp-content/uploads/2025/03/guia-paso-a-paso.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.align-items-start, .tabla_datos, .card_rector {
  box-shadow: 0 3px 5px 0 #00367085;
}

.align-items-start::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('http://itla.edu.do/wp-content/uploads/2025/03/guia-paso-a-paso.png');
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  transform: scaleX(-1); 
  z-index: -1; 
  opacity: 0.20;
  margin-left: 3.25rem;
  margin-top: 2.75rem;
}


.bg-structure{
  background-image: url('http://itla.edu.do/wp-content/uploads/2025/03/estructura-itla.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  margin-right: 3rem;
}

.bg-calidad{
  background-image: url('http://itla.edu.do/wp-content/uploads/2025/03/standard-quality-control-collage-scaled.jpg');
}

.pr-7{
  padding-right: 7rem !important;
}

.p-l2{
  padding-left: 2rem !important;
}

/* Asegura que las pestañas tengan un tamaño adecuado */
.tab-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.tab-pane p{
  display: block; /* Hacer que el contenido sea de bloque */
  width: 100%;
  padding: 15px;
  box-sizing: border-box; /* Asegura que el padding no afecte al ancho total */
  overflow: hidden; /* Evitar desbordes */
}

.tab-pane ul li{
  padding: 0.5rem 0.75rem;
  list-style-type: circle;
  margin-left: 1rem;
}

.tab-pane a{
	color:#1c79bb;
}

/* Asegura que las pestañas no se deformen y mantengan su tamaño */
.nav-pills .nav-link {
  width: 100%;
  text-align: center;
}

.nav-pills {
  flex-shrink: 0; /* Evita que se encoja al cambiar de tab */
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  border-left: 4px solid #dc3545;
  background-color: transparent !important;
  color: #dc3545;
  border-radius: 0%;
}


.nav-link, .accordion-button{
  /* font-weight: 600; */
  color: #003670;
}

.nav-link:hover{
  color: #dc3545;
}

.nav-link.show, .current_page_item {
  color: #dc3545 !important;
}


h3{
  margin: 1rem !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  color: var(--color-red);
}


/* table thead tr th{
  background-color: #0072bd !important;
  color: #ffffff !important;
  border-radius: 0.50rem 0.50rem 0 0;
}

.tab-pane{
  background-color: #0072bd;
  color: #fff !important;
}
.tab-pane p, a{
  color: #fff;
} */


.archivos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.archivo img {
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
}

.archivo {
  width: 150px;
  text-align: center;
}

.sticky-element {
  position: -webkit-sticky; /* Para navegadores basados en WebKit (Safari, Chrome) */
  position: sticky; /* Propiedad estándar para navegadores modernos */
  top: 0; /* La distancia desde la parte superior de la pantalla cuando el elemento se hace sticky */
  z-index: 1000; /* Asegúrate de que se quede por encima de otros elementos */
}

.pa-4{
  padding-right: 4rem !important;
}

/* .page-title{
  margin-left: 3rem;
} */

.wp-block-video video{
  border-radius: 1rem;
}

.acordion{
  padding: 2rem;
}

.divisor{
  height: 1px;
  color: #002f6c;
}


/* .dropdown-menu {
  display: none;
  position: absolute;
  z-index: 1000;
  top: 100%;
  left: 0;
  right: 0;
}

.dropdown:hover .dropdown-menu {
  display: block; 
} */

.dropdown-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.menu-dropdown{
  padding: 0.5rem 0;
  margin-left: 0.5rem;
} 

.sub-menu {
  padding-left: 20px;
}


 .topbar .logo-icon {
  height: 30px !important;
}

.accordion-set-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.accordion .card-header {
  cursor: pointer;
}

.accordion .card-body {
  padding: 15px;
}



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

.accordion-set-title{
  padding: 2rem 0 1rem 0;
  }

.card-pad{
  padding: 1rem;
}


/* Estilo de los botones de compartir */
.share-buttons button {
  background-color: #007bff !important;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.share-buttons button:hover {
  background-color: #0056b3;
}

.btn-rounded:hover{
  background-color: var(--color-blue);
  color: #fff;
}

.d-new .content-new {
  display: block;
}

.content-new{
  position: relative;
}

.new {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
}

.new span {
  border-top: 40px solid #e52229;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  height: 0;
  width: 140px;
}

.new label {
  color: #fff;
  font-weight: 600;
  position: absolute;
  top: .7rem;
}


/* Definir la animación de latido */
@keyframes pulsar {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1); /* Escala un poco más */
  }
  100% {
      transform: scale(1);
  }
}

/* Aplicar el latido a la etiqueta con clase 'wow' */
.new .wow {
  animation: pulsar 1s ease-in-out infinite; /* Animación suave de 1 segundo y repetición infinita */
}


.btn-share p{
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-share:hover p{
  color: #ffffff !important;
}

/* .btn-share:hover{
  background-color: #023877 !important;
  color: #ffffff !important;
} */

.btn-facebook, .btn-twitter, .btn-whatsapp, .btn-instagram{
  background-color: var(--color-blue-dark) !important;
} 

.modal-backdrop {
  display: none !important;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Personalizar los botones de las redes sociales */
.modal-body .share-buttons button {
  margin: 5px;
  padding: 10px;
  font-size: 24px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.modal-body .share-buttons button:hover {
  transform: scale(1.1);
  background-color: var(--color-blue-light) !important;
}

.share-buttons{
  display: flex;
  justify-content: space-around; 
}

.btn .social-icons:hover{
  background-color: #02d5ff;
}

.btn-outline-blue:hover{
  color: #fff;
  background-color: #002f6c;
}

/* TARJETA DE CARRERAS TECNOLOGICAS */

.card-product {
  max-width: 20rem;
  border-radius: 1rem 1rem 0 0 ;
  position: relative;
  transition: box-shadow 0.4s ease, transform 0.4s ease !important;
  box-shadow: 0 4px 8px 0 #003670a8;
  background: rgb(255 255 255 / 83%) !important;
}

.card-product img{

  border-radius: 1rem 1rem 0 0;
  background-image: linear-gradient(45deg, #003876, transparent);
}

.card-product:hover {
  box-shadow: 0 0 15px #00cbff, 0 0 30px #003876; 
  transform: scale(1.05); 
}

.img-wrap img {
  max-width: 300px;
  max-height: 200px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hover-imagetext-1{
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1) !important;
  padding-bottom: .5rem !important;
}


/* Colores específicos para cada red social */
.modal-body .share-buttons .btn-facebook {
  background-color: #3b5998;
  color: white;
}

.modal-body .share-buttons .btn-twitter {
  background-color: #1da1f2;
  color: white;
}

.modal-body .share-buttons .btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.modal-body .share-buttons .btn-instagram {
  background-color: #e4405f;
  color: white;
}

.subcarpetas-list {
  display: none;
}

.archivos-list {
  display: none;
}

.wp-block-heading{
  color: var(--color-blue-dark);
}

h5{
  color: var(--color-blue-dark) !important;
}

h3{
  color: var(--color-blue-dark) !important;
}

.blockquote-footer{
  color: #003876 !important;
}

iframe{
  border-radius: 1rem;
}

.video-youtube iframe{
  box-shadow: 0 4px 15px 0 #003670db;
  /* background: rgb(255 255 255 / 83%) !important; */
}

.wp-block-heading{
  padding: 1rem 0 !important;
}

.wp-block-list{
  font-size: 15px;
  font-weight: 400;
  padding-bottom: .4rem;
}

.servicios-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.servicio {
  width: 30%;
  margin-bottom: 20px;
}

.infobox {
  border: 2px solid #ddd;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.infobox:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.infobox-icon img {
  max-width: 60px;
  margin-bottom: 15px;
}

.infobox-content .title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.infobox-on-hover-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  transition: transform 0.3s ease;
}

.infobox:hover .infobox-on-hover-icon {
  transform: translateX(5px);
}

.icon-arrow-right {
  font-size: 20px;
  color: #0073e6;
}

.current-page{
  color: #E52229;
}

/* .menu {
  display: none;
}


@media (min-width: 768px) {
  .menu {
    display: block !important;
  }

  .menu-toggle {
    display: none;
  }
}


.menu.active {
  display: block;
} */


/* NUEVAS CARRERAS */

/* .bg-gray{
  background-color: #f3f3f3;
}

.wow{
  opacity: 1; 
  animation-delay: 100ms;
  animation-name: fadeInLeftBig;
}

.cid-ryh3RiJqTw{
  position: relative;
  height: 300px;
  overflow: hidden;
}

.cid-ryh3RiJqTw::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  left: 0;
  top:0;
  pointer-events: none;
  z-index: 2;
  transition: all .3s ease 0s;
}

.cid-ryh3RiJqTw img{
  object-fit: cover;

  height: 100%;
  transition: all .3s ease 0s;
}

.card-img img{
  width: 100%;
}

.text-box{
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;  
 left: 0;
 padding: 1.5rem; 
 display: flex;
 opacity: 1;
 transition: all .2s ease-out;
}

.bg-blue-1{
  background: #0074c7a1 !important;
}

.text-detail{
  width: 100%;
  height: 100%;
  color: #fff;  
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1.5rem;
  border: 2px solid #fff;
  display: flex;
  opacity: 1;
  transition: all .2s ease-out;
  margin: 0 auto;
  background-color: #0038768f;
}

.text-detail .text-2{
  display: none;
}

.cid-ryh3RiJqTw .hover-image:hover .card img{
  transform: scale(1.1);
}


.cid-ryh3RiJqTw .hover-image:hover .card .text-box{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1.5rem;
  display: flex;
  opacity: 1;
}

.cid-ryh3RiJqTw .hover-image:hover .card .text-box{
width: 70%;
height: 30%;
color: #fff;
text-align: center;
font-weight: 600;
padding: 0;
border: 2px solid #fff;
opacity: 1;
-webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-o-transition:  all 200ms ease-in;
transition: all 200ms ease-in;
margin: 0 auto;

}

.cid-ryh3RiJqTw .card .text-detail .text-1{
  display: block;
  transition: all 200ms ease-in;
}


.cid-ryh3RiJqTw a .text-1{
  display: block;
  transition: all .2s ease-in;
}

.cid-ryh3RiJqTw .card .text-detail .text-2{
  display: none;
  transition: all 200ms ease-in;
}

.cid-ryh3RiJqTw .card .text-detail:hover{
  background-color: #fff;
}

.cid-ryh3RiJqTw .card .text-detail:hover .text-2{
  color: #00cbff;
}

.ryh3RiJqTw .hover-image:hover .card .text-detail .text-2{
  display: flex;
  width: 100%;
  height: 100%;
}

.cid-ryh3RiJqTw .card .text-detail .text-1,
.cid-ryh3RiJqTw .card .text-detail .text-2{
  color: #fff !important;
}

.btn-carrera{
  background-color: #003670;
  color: #fff;
}

.btn-carrera:hover{
  background-color: #0087ff;
  color: #fff;
}

.cid-ryh3RiJqTw .card .text-box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 1.5rem;
    display: flex
;
    opacity: 1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.bg-blue-1 {
    background: #0074c7a1;
}
.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center !important;
}

.cid-ryh3RiJqTw .card .text-detail {
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    padding: 1.5rem;
    border: 2px solid #fff;
    display: flex
;
    opacity: 1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    margin: 0 auto;
}

a.text-1{
	color:#fff !important;
} */

/* .bg-gray-1{
  background-color: #dee2e6;
} */

/* Contenedor de la imagen */
.card-img {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

/* Imagen dentro de la card, cubriendo todo */
.card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Efecto zoom al pasar el cursor */
.hover-image:hover .card-img img {
  transform: scale(1.1);
}

/* Contenedor principal de la tarjeta */
.hover-image {
  position: relative;
}

/* Contenedor de la tarjeta */
.card {
  position: relative;
  overflow: hidden;
}

/* Contenedor del texto */
.text-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-box:hover{
  background: linear-gradient(to bottom, rgb(0 54 112 / 78%), rgb(0 0 0 / 0%));
}

/* Estilos base del detalle de texto */
.text-detail {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
  padding: 1.5rem;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Al hacer hover en la tarjeta, achicar el contorno */
.hover-image:hover .text-detail {
  width: 70%;
  height: 30%;
  padding: 0.5rem;
}

/* Texto nombre carrera visible por defecto */
.text-1 {
  display: block;
  transition: all 0.3s ease;
}

/* Ocultar nombre carrera en hover */
.hover-image:hover .text-1 {
  display: none;
}

/* "Ver detalles" oculto por defecto */
.text-2 {
  display: none;
  color: #fff;
  transition: all 0.3s ease;
}

/* Mostrar "Ver detalles" en hover */
.hover-image:hover .text-2 {
  display: block;
}

/* Al pasar el mouse sobre el recuadro de texto, cambiar fondo y color */
.text-detail:hover {
  background-color: #003670b5;
  color: #00a0fe;
}

/* Cambiar color de "Ver detalles" al pasar el mouse sobre text-detail */
.text-detail:hover .text-2 {
  color: #00a0fe;
}

/* FIN DE NUEVAS CARRERAS */

/* CARTA COMPROMISO */
.btn-outline-secondary{
    border: solid;
    color: #fff !important;
}
.section-heading .btn-outline-secondary:hover {
   background-color: #fff;
   color: var(--color-blue-dark);
}

.jarallax-img{
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -100;
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%);
}

.we-changing{
	position: relative;
    z-index: 0;
}
/* FIN CARTA COMPROMISO */

.navbar-nav li{
  padding: 0 .5rem;
}

.navbar-brand{
  display: none;
}

.nav-link.dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 5px solid #00386d;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transition: transform 0.3s ease;
  position: relative;
}


.nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

#mainMenu.show {
  display: block !important;
}

main{
/*     margin-top: 100px; */
    padding-bottom: 50px;
}

main h1{
    text-transform: uppercase;
    text-align: center;
    font-size: 24px;
    
}

.container__box{
    max-width: 1100px;
    margin: auto;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box {
  width: 218px;
  height: 200px;
  background: #fff;
  margin: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 300ms ease;
  position: relative;
  box-shadow: 0 4px 8px 0 #0dcaf070;
}

.box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 30px -15px rgba(0, 0, 0, 0.5);
  background: #0099E9;
  z-index: 1;
}

.box i {
  font-size: 60px;
  color: #0099E9;
}

.box:hover i {
  color: #fff;
}

/* Título (reemplazo de h5) */
.box-title {
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 14px;
  color: #585858;
  transition: opacity 300ms ease;
}

/* Subtítulo (reemplazo de h4) */
.box-subtitle {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  position: absolute;
  bottom: 50px;
  filter: blur(5px);
  opacity: 1;
  transition: all 600ms ease;
}

.box:hover .box-title {
  color: #fff;
  opacity: 0;
}

.box:hover .box-subtitle {
  font-size: 14px;
  opacity: 1;
  filter: blur(0px);
  color: #fff;
}



.box-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 500;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}

.dropdown-item:hover{
	color: var(--color-red);
	background-color:var(--color-gray-light);
}

/* VIDEO RESPONSIVO YOUTUBE */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* MAPA RESPONSIVO GOOGLEMAPS */
.map-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.stamp-box {
  position: relative;
  display: inline-block;
}

.stamp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  z-index: 10;
}

.current-menu-item > a {
    color: #d83444  !important;
    font-weight: 700 !important;
}

.rotate-icon {
  transition: transform 0.3s ease;
}

.collapse.show + a .rotate-icon {
  transform: rotate(180deg) !important;
}

.organization-chart {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow-x: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    color: #fff !important;
}

main h1{
  text-align: start;
}

header.titulo{
  box-shadow: none;
}

/* .nav-item a[href*="itla-alumni"] {
  background-color: #1f64ad;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  animation: pulse 2s infinite;
}


@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #003670; }
  70% { box-shadow: 0 0 0 10px rgba(255,215,0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255,215,0, 0); }
} */

/* VALORACION FORM */
.valoracion-form{
  box-shadow: 0 4px 8px 0 #0dcaf070;
  background: rgba(255, 255, 255, .25) !important;
}

.solicitud_info{
  width: 100%;
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 20px 30px 20px 20px;
  background: #fff;
  color: #1c79bb;
  border-radius: 5px;
  position: relative;
  display: block;
  -webkit-box-shadow: 0 4px 8px 0 #0dcaf070;
  -moz-box-shadow: 0 4px 8px 0 #0dcaf070;
  box-shadow: 0 4px 8px 0 #0dcaf070;
  background: rgba(255, 255, 255, .25) !important;
}

.solicitud_info h2{
  margin-bottom: 1rem;
  color: #002f6c;
}
.solicitud_info{
  max-width: none;
}

.boton_info{
  font-weight: 600;
  width: 100%;
  border-radius: 5px;
  margin-top: 1rem;
  background: #003670;
  color: #fff;
}

.boton_info:hover{
  background-color: #237BC0;
}

/* Submenú dentro de un submenú */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}


/* Submenú dentro de un submenú */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Flecha de submenús anidados */
.bi-caret-right-fill {
    float: right;
    transition: transform 0.3s ease;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    background-color: none !important;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
    display: block;
}

.dropdown-submenu:hover > a .rotate-arrow,
.dropdown-submenu:focus-within > a .rotate-arrow {
    transform: rotate(90deg);
}

.wp-block-file__button{
  padding: 1rem 2.5rem !important;
  background-color: #003670 !important;
}

.slogan p{
  color: #fff !important;
}

p .text-uppercase{
  font-size: 2rem !important;
  color: #003670 !important;
}

/* EXTENSIONES */
.card-img-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0 54 112 / 78%), rgb(0 0 0 / 0%));
  z-index: 1;
  pointer-events: none;
}

.card-img-overlay {
  position: absolute;
  z-index: 2; /* Por encima del gradiente */
}

.btn.btn-light:hover{
  background-color: #dc052d !important;
  color: #fff;
}

.card-rounded{
  border-radius: 2rem;
}

/* TAMANO UNIFORME PARA IMAGENES DE NOTICIAS */

.img-wrapper {
    width: 100%;
    height: 300px; /* Ajusta este alto según tu diseño */
    overflow: hidden;
}

.uniform-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lh-18{
  line-height: 18px;
}

.text-600{
  font-weight: 600;
}

.card-body .text-end{
  display: flex;
  justify-content: end;
}

.card {
    transition: box-shadow 0.3s ease; /* Para un efecto suave */
}

.card:hover {
    box-shadow: 0 3px 5px 0 #00367085; /* Agrega sombra al pasar el cursor */
}

/* FIN DE TAMANO UNIFORME PARA IMAGENES DE NOTICIAS */

/* ACTUALIDADES */

h5 .card-title{
  line-height: 1.2rem !important; 
}

/* EMPRENDIMIENTO */
.card.desarrollo, .diseno, .promocion{
  padding: 1rem;
}

.bg-blueb{
  background: #0036708a;
  border-radius: .5rem;
}
.br-5{
  border-radius: .5rem;
}

.desarrollo{
  width: 100%;
  background-image: 
    linear-gradient(rgba(207, 206, 206, 0.744)),  /* Añade un filtro translúcido */
    url(https://itla.edu.do/wp-content/uploads/2025/07/desarrollo-de-politicas.jpg);
  background-size: cover;
  background-position: center center;
}

.diseno{
  width: 100%;
  background-image: 
    linear-gradient(rgba(207, 206, 206, 0.925)),  /* Añade un filtro translúcido */
    url(https://itla.edu.do/wp-content/uploads/2025/07/diseno-scaled.jpg);
  background-size: cover;
  background-position: center center;
}
.promocion {
  width: 100%;
  background-image: 
    linear-gradient(rgba(207, 206, 206, 0.925)),  /* Añade un filtro translúcido */
    url(https://itla.edu.do/wp-content/uploads/2025/07/propiedad-intelectual.jpg);
  background-size: cover;
  background-position: center center;
}

.bg-3d{
  background-color: #002f6c;
  border-radius: .5rem;
}

/* ESTILOS PARA GOOGLE TRASLATE */
.gglobe{
  width: 30px !important;
  height: 30px !important;

}

.btn-carnet{
  color: #fff;
  width: 100%;
  background-color: #003670;
  border-radius: 5px;
}

/* GALERIA DE BIENESTAR ESTUDIANTIL */

.flip-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.flip-card {
  background: transparent;
  width: 100%;
  max-width: 250px;         /* Todas las tarjetas del mismo ancho */
  aspect-ratio: 1 / 1;      /* Mantiene proporción cuadrada */
  perspective: 1000px;
  flex: 1 1 250px;          /* Responsive */
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  backface-visibility: hidden;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
}

.flip-back {
  background-color: #222;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.caption {
  font-size: 16px;
  text-align: center;
}

.wp-block-button__link{
  background-color: #003670 !important;
  margin: 1rem 0 !important;
}

.wp-block-button__link:hover{
  background-color: #0458b3 !important;
}