/*-------------------------------------------------------------
# FUENTE
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,700&family=Oswald:wght@200;300;400;500;600;700&display=swap");

/*-------------------------------------------------------------
# IMPORTAR HOJAS COMPLEMENTARIAS
--------------------------------------------------------------*/

@import url("colores.css");
@import url("iconos.css");
@import url("spacing.css");

/*-------------------------------------------------------------
# GENERALES
--------------------------------------------------------------*/

:root {
  --main-color: #094179;
  --color-1: #dc143c;
  --color-2: #ffa500;
  --color-3: #047152;
  --bg-dark: #2b2c2f;
  --bg-primary: var(--main-color);
  --bg-color-1: var(--color-1);
  --bg-color-2: var(--color-2);
  --bg-color-3: var(--color-3);
  --main-to-dark-color: var(--main-color);
  --dark-to-main-color: var(--bg-dark);
  --shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-black-300: 0 5px 15px rgba(0, 0, 0, 0.3);
  --black-900: rgba(0, 0, 0, 0.9);
  --black-800: rgba(0, 0, 0, 0.8);
  --black-700: rgba(0, 0, 0, 0.7);
  --black-600: rgba(0, 0, 0, 0.6);
  --black-500: rgba(0, 0, 0, 0.5);
  --black-400: rgba(0, 0, 0, 0.4);
  --black-300: rgba(0, 0, 0, 0.3);
  --black-200: rgba(0, 0, 0, 0.2);
  --black-100: rgba(0, 0, 0, 0.1);
  --black-000: #000;
  --white: #fff;
  --grey: #ddd;
  --black-alpha-100: rgba(0, 0, 0, 0.05);
  --font-man: "Manrope", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  --font-open: "Open Sans", sans-serif;
  --line-height: 1.5;
  --transition-sm: all 0.3s ease;
  --transition-md: all 0.5s ease;
  --blue-900: rgba(9, 65, 121, 0.9);
  --blue-800: rgba(9, 65, 121, 0.8);
  --blue-700: rgba(9, 65, 121, 0.7);
  --blue-600: rgba(9, 65, 121, 0.6);
  --blue-500: rgba(9, 65, 121, 0.5);
  --blue-400: rgba(9, 65, 121, 0.4);
  --blue-300: rgba(9, 65, 121, 0.3);
  --blue-400: rgba(9, 65, 121, 0.4);
  --blue-100: rgba(9, 65, 121, 0.1);
}

body {
  font-family: var(--font-man);
  color: #444444;
  line-height: var(--line-height);
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: var(--transition-sm);
}

a:hover {
  color: var(--color-2) !important;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-man);
  /*text-transform: uppercase;*/
  font-weight: 300;
}

.bg-primary {
  background-color: var(--bg-primary) !important;
}

.start-0 {
  left: 0;
}

.top-0 {
  top: 0;
}

.end-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.bg-size-cover {
  background-size: cover;
}

.bg-repeat-0 {
  background-repeat: no-repeat;
}

.bg-position-center {
  background-position: center;
}

.small,
small {
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# SECTION TITLE
--------------------------------------------------------------*/

.section-title {
  position: relative;
}

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

.section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title h2 {
  text-align: center;
  color: #515151;
  margin: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.section-title p {
  margin-bottom: 0;
  width: 60%;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

/* Animaciones */

@keyframes bounceTop_01 {
  0%,
  100% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0px);
  }
}

/* Section Title Ver 2 */

.section-title2 h2 {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  font-family: var(--font-man);
}

.section-title2 h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--main-color);
  margin: 4px 10px;
}

.section-title2 p {
  margin: 0;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-oswald);
  color: #222;
}

.section-title2 span {
  font-size: 1.1rem;
}

@media (max-width: 500px) {
  .section-title2 p {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}

/*-------------------------------------------------------------
# BOTÓN SUBIR
--------------------------------------------------------------*/

.ir-arriba {
  padding: 5px 8px;
  display: inline-block;
  background: var(--main-color);
  color: var(--white);
  font-weight: 700;
  position: fixed;
  font-size: 1.3rem;
  bottom: 20px;
  right: 20px;
  display: none;
  cursor: pointer;
  z-index: 100;
}

/*-------------------------------------------------------------
# BOTONES
--------------------------------------------------------------*/

.btn-light {
  background: none;
  border: 1px solid #d9d9d9;
  padding: 8px 20px;
  min-width: 100px;
  color: #515151;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: #f9fafb;
  border: 1px solid #d9d9d9;
  color: var(--main-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

/*-------------------------------------------------------------
# NAVBAR
--------------------------------------------------------------*/

.navbar {
  padding: 0;
  transition: var(--transition-md);
}

.navbar.scroll_top {
  background-color: rgba(9, 65, 121, 1) !important;
  padding: 8px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-toggler i.bi {
  font-size: 2.5rem;
  color: var(--white);
  transition: var(--transition-sm);
}

.navbar .navbar-toggler i:hover.bi-filter-left {
  color: var(--color-2);
}

.navbar-brand {
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-oswald);
  transition: var(--transition-sm);
}

.navbar-brand:hover {
  color: var(--color-2);
}

.navbar-nav .nav-link {
  color: var(--white);
  font-size: 1.1rem;
}

.navbar-nav {
  display: flex;
  justify-content: end;
}

@media (max-width: 992px) {
  div#navbarNavDropdown {
    background: var(--main-color);
    padding: 10px 20px;
  }

  div#navbarNavDropdown .navbar-nav .nav-link {
    color: var(--white);
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .navbar-toggler {
    border: none !important;
  }

  .boton-cerrar {
    background: transparent;
    color: white;
    border: none;
    font-size: 1.3rem;
  }
}

/* Menú lateral izquierdo */

#button-menu {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
  z-index: 1000;
}

@media screen and (min-width: 992px) {
  #button-menu {
    display: none;
  }
}

.navegacion {
  position: absolute;
  top: 0px;
  left: 0;
  width: 0%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
}

.navegacion ul {
  width: 320px;
  height: 100%;
  background: #fff;
  list-style: none;
  position: absolute;
  top: 0;
  left: -320px;
  transition: left 0.2s ease-in-out;
  overflow-y: auto;
}

.navegacion ul .menu {
  padding: 0 !important;
}

.navegacion .menu li.title-menu {
  padding: 15px;
  background: #094179;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
}

.navegacion .menu a {
  display: block;
  padding: 8px 20px 8px 25px;
  border-bottom: 1px solid #c6d0da;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.navegacion .menu a:hover {
  color: orange;
}

.navegacion .menu .item-submenu > a::after {
  font-family: "Bootstrap-icons";
  font-size: 1rem;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\F285";
  float: right;
  color: #094179;
}

.navegacion .menu .item-submenu > ul {
  overflow-y: auto;
  padding: 0;
}

/* Submenu ============*/

.navegacion .submenu li.title-menu {
  background: var(--main-color);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.navegacion .submenu li.go-back {
  padding: 10px 20px;
  background: #094179;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.navegacion .submenu li.go-back::before {
  font-family: "Bootstrap-icons";
  font-size: 0.9rem;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\F284";
  margin-right: 10px;
}

/* Submenu 2 ============*/

.navegacion .submenu-1 li.title-menu {
  background: var(--main-color);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navegacion .submenu-1 li.go-back {
  padding: 10px 20px;
  background: #094179;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.navegacion .submenu-1 li.go-back::before {
  font-family: "Bootstrap-icons";
  font-size: 0.9rem;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\F284";
  margin-right: 10px;
}

/*Media queries*/
@media screen and (max-width: 320px) {
  .navegacion ul {
    width: 100%;
  }
}

/*-------------------------------------------------------------
# HERO SECTION
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 80vh;
  position: relative;
}

#hero:before {
  content: "";
  background: var(--black-500);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

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

#hero .logo i:hover {
  color: var(--white);
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
    text-align: center;
  }
}

#hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-oswald);
}

#hero h2 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-oswald);
}

#hero h1 span,
#hero h2 span,
#hero p span {
  color: var(--color-2) !important;
}

#hero p {
  color: #eee;
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: var(--font-man);
}

#hero i.bi {
  margin-top: 40px;
  color: var(--white);
  font-size: 2rem;
  animation: bounceTop_01 3s ease infinite;
  display: block;
  transition: var(--transition-sm);
  cursor: pointer;
}

#hero i.icon-ccsslogo,
#hero img {
  font-size: 7rem;
  color: var(--white);
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

#hero i:hover {
  color: var(--color-2);
}

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

@media (max-width: 768px) {
  #hero h1 {
    font-size: 3rem;
    line-height: 1.1;
  }

  #hero p {
    font-size: 1.6rem;
    line-height: 1.1;
  }
}

@media (max-width: 568px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 3rem;
  }

  #hero p {
    font-size: 1.3rem;
  }
}

/*-------------------------------------------------------------
# OFFCANVAS
--------------------------------------------------------------*/

.offcanvas .offcanvas-header i {
  font-size: 5rem;
}

/*-------------------------------------------------------------
# BREADCRUMS
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 20px 0;
  box-shadow: 0 5px 10px -10px var(--black-600);
}

.barra-opciones i {
  font-size: 25px;
  color: var(--main-color);
  transition: var(--transition-sm);
}

.barra-opciones i:hover {
  color: var(--color-2);
}

/*-------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/

#footer .footer-bottom {
  background-color: var(--main-color);
  padding: 25px 0;
}

#footer .footer-bottom .copyright-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0;
}

#footer .footer-bottom a {
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  text-decoration: none;
}

#footer .footer-bottom a:hover {
  text-decoration: underline;
}

/* Footer 2 */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #37423b;
  font-size: 14px;
  background: #f9faf9;
  box-shadow: 0px 4px 10px var(--black-300);
}

#footer .credits {
  padding-top: 5px;
  font-size: 0.9rem;
}

#footer .credits a {
  color: var(--main-color);
  transition: 0.3s;
}

#footer .credits a:hover {
  color: var(--color-2);
}

#footer .social-links a {
  font-size: 16px;
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  line-height: 1;
  padding: 7px 0;
  margin-right: 3px;
  border-radius: 5px;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  /* background: var(--color-2); */
  color: #fff;
  text-decoration: none;
}

/* DATATABLE */
/******************CSS Datatable**************************/

.table {
  width: 100% !important;
}
table td {
  word-wrap: break-word;
  max-width: 400px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  z-index: 2;
  color: #fff !important;
  cursor: default;
  background: #0c2a60 !important;
  border-color: #0c2a60 !important;
  border-radius: 50% !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #ffffff !important;
  background: #ea6a11 !important;
  border-color: #e0671b !important;
  border-radius: 50% !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  color: #ffffff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .previous,
.dataTables_wrapper .dataTables_paginate .next {
  border: 1px solid #0c2a60;
  border-radius: 20px !important;
}
.dataTables_wrapper .dataTables_paginate .previous:hover,
.dataTables_wrapper .dataTables_paginate .next:hover {
  color: white !important;
  border: 1px solid #ea6a11;
  border-radius: 20px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  border: 1px solid #ececec;
  border-radius: 20px !important;
}

div.dataTables_wrapper div.dataTables_filter label {
  color: #1a47a1;
}

div.dataTables_wrapper div.dataTables_filter input {
  border-radius: 20px;
}

table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #fff;
}

table.dataTable.no-footer {
  border-bottom: 1px solid #fff;
}
.dataTables_filter {
  margin-bottom: 10px !important;
}

input {
  -webkit-appearance: none;
  background: #fcfcfc;
  padding: 0.46428571em;
  border-radius: 6px;
  border: 1px solid #ececec;
  height: 2.78571429em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

/* Pasar datatable de filas a tarjetas */
@media (max-width: 30rem) {
  .datosTabla table {
    width: 100%;
    font-size: 0.9rem;
  }

  .datosTabla table tr {
    display: flex;
    flex-direction: column;
    border: 1px solid gray;
    padding: 0rem;
    margin-bottom: 1rem;
    border-radius: 3px;
  }

  .datosTabla table td {
    max-width: 100% !important;
  }

  .datosTabla table td[data-label] {
    display: flex;
  }

  .datosTabla table td[data-label]::before {
    content: attr(data-label);
    width: 230px;
    color: #81929b;
    font-weight: 700;
    padding-left: 1em;
  }

  .datosTabla table thead {
    display: none;
  }

  .datosTabla table td:first-child {
    border-bottom: 2px solid #058;
  }

  .datosTabla table td:last-child {
    border-bottom: none;
  }

  .siglas {
    display: none;
  }

  .hidden {
    display: none;
  }

  .centro {
    padding-left: 1.3rem !important;
    font-weight: 700;
  }
}


/* Mansory */
/******************Mansory**************************/

.ms-gallery {
  columns: 5 320px;
  column-gap: 1.5em;
  margin-bottom: 100px;
}

.ms-gallery-items {
  max-width: 100%;
  margin-bottom: 1em;
  break-inside: avoid;
  display: block;
 /* outline: 2px solid #fff;
  border-radius: 20px; */
}