/*
 * Base structure
 */

 html {
   font-size: 100%;
 }

body {
   font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  padding-bottom: 6em;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.vert-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-r {
  position: relative;
}

/*
 * Index Header
 */

header {
  background-color: #fff;
}

header.intro {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  margin: 0 auto;
}

header .navbar-brand {
  float: right;
}

header .navbar-brand .logo {
  font-size: 12px;
  color: #fff;
  letter-spacing: 5px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  line-height: 1.5;
  font-family: "Poppins", Arial, sans-serif;
  text-transform: uppercase;
}

header .navbar-brand .logo span {
  font-size: 11px;
  display: block;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 7px;
}

header .navbar-brand .logo i {
  color: #fec771;
  position: absolute;
  top: -18px;
  bottom: 0;
  left: 7px;
  font-size: 48px;
}

header .navbar-brand .logo:hover {
  text-decoration: none !important;
}

header .navbar-brand .logo:active, header .navbar-brand .logo:focus {
  outline: none;
  text-decoration: none;
}

header .nav-toggle {
  cursor: pointer;
  text-decoration: none;
}

header .nav-toggle.active i::before, header .nav-toggle.active i::after {
  background: #000;
}

header .nav-toggle.dark.active i::before, header .nav-toggle.dark.active i::after {
  background: #000;
}

header .nav-toggle:hover, header .nav-toggle:focus, header .nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}

header .nav-toggle i {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 5px;
  color: #000;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #000;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  border-radius: 25px;
}

header .menu-show .nav-toggle i {
  background: #000;
  color: #000;
}

header .nav-toggle i::before, .nav-toggle i::after {
  content: '';
  width: 30px;
  height: 5px;
  background: #000;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 25px;
}

header .menu-show .nav-toggle i::before, .menu-show .nav-toggle i::after {
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  header .nav-toggle i::before, header .nav-toggle i::after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

header .nav-toggle.dark i {
  position: relative;
  color: #fff;
  background: #fff;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

header .nav-toggle.dark i::before, header .nav-toggle.dark i::after {
  background: #fff;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  header .nav-toggle.dark i::before, header .nav-toggle.dark i::after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

header .nav-toggle i::before {
  top: -10px;
}

header .nav-toggle i::after {
  bottom: -10px;
}

header .nav-toggle:hover i::before {
  top: -13px;
}

header .nav-toggle:hover i::after {
  bottom: -13px;
}

header .nav-toggle.active i {
  background: transparent;
}

header .nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

header .nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

header .nav-toggle {
  float: left;
  z-index: 20;
  position: relative;
  top: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 0;
}

@media (max-width: 767.98px) {
  .nav-toggle {
    right: 10px;
  }
}

.social ul {
  padding: 0;
  margin: 0;
  display: none;
}

.social ul li {
  list-style: none;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.social ul li:last-child {
  margin-right: 0px;
}

.social ul li a {
  display: inline-block;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  text-align: center;
  transition: 0.3s;
}

.social ul li a:hover {
  color: #fff;
  background-color: #000;
  margin-top: -3px;
}

/*
 * Main Nav
 */

#main-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2002;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.175, 0.175, 0.175);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.175, 0.175, 0.175);
  -ms-transition: all 0.3s cubic-bezier(0.175, 0.175, 0.175, 0.175);
  -o-transition: all 0.3s cubic-bezier(0.175, 0.175, 0.175, 0.175);
  transition: all 0.3s cubic-bezier(0.175, 0.175, 0.175, 0.175);
  /*transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  overflow-y: scroll;
}

#main-nav .table {
  display: table;
  width: 100%;
  height: 100%;
}

#main-nav .table .img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
}

#main-nav .table .img:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: '';
  background: #fff;
}

#main-nav .table .table-cell {
  display: table-cell;
  vertical-align: middle;
}

#main-nav .nav-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 20px;
  height: 30px;
  width: 30px;
  line-height: 0;
  padding: 0 !important;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#main-nav .nav-toggle:hover {
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  #main-nav .nav-toggle {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

#main-nav .nav-toggle i {
  top: 18px !important;
  left: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
  text-indent: 0;
}

#main-nav .nav-toggle.show {
  visibility: visible;
  opacity: 1;
  z-index: 30;
}

#main-nav .nav-toggle:hover i::before, #main-nav .nav-toggle:hover i::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
}

.menu-show #main-nav {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

#main-nav .logo {
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  line-height: 1.5;
  font-family: "Poppins", Arial, sans-serif;
}

#main-nav .logo span {
  font-size: 14px;
  display: block;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 8px;
}

#main-nav ul {
  padding: 0;
  margin: 0;
  display: block;
  counter-reset: item;
}

@media (max-width: 767.98px) {
  #main-nav ul {
    padding: 0px 0 0 0;
  }
}

#main-nav .cerolabs-menu ul {
  counter-reset: item -1;
}


#main-nav .cerolabs-menu ul > li {
  font-family: "Poppins", serif;
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
  counter-increment: item;
  align-items: baseline;
  gap: 10px;
  transition: 0.2s;
}

#main-nav .cerolabs-menu ul > li a:hover {
  padding-left: 10px;
  color: #6f6f6f;
}

#main-nav .cerolabs-menu ul > li:first-child::before {
  content: "";
}

#main-nav .cerolabs-menu ul > li::before {
  content: "0" counter(item) ". ";
  display: inline-block;
  font-weight: 300;
  text-align: right;
  width: 3.0ch;
}

#main-nav .cerolabs-menu ul > li a {
  font-weight: 800;
  display: inline-block;
  color: #000;
  padding: 5px 0;
  text-decoration: none;
  line-height: 60%;
  transition: 0.2s;
}

#main-nav .cerolabs-menu ul > li a span {
  display: inline-block;
  font-weight: 300;
  line-height: 100%;
}

#main-nav .cerolabs-menu ul > li a span small {
  position: absolute;
  bottom: 7px;
  left: -30px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#main-nav .cerolabs-menu ul > li a:hover, #main-nav  .cerolabs-menuul > li a:active, #main-nav .cerolabs-menu ul > li a:focus {
  outline: none;
  text-decoration: none;
}

#main-nav .cerolabs-menu ul > li a:hover span:before, #main-nav .cerolabs-menu ul > li a:active span:before, #main-nav .cerolabs-menu ul > li a:focus span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

#main-nav .cerolabs-menu ul > li.active a span {
  color: #f8b500;
}

#main-nav .cerolabs-menu ul > li.active a span:before {
  background: #fec771;
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

#main-nav .cerolabs-menu ul li .collapse-link a {
  display: inline-block;
  font-weight: 300;
  line-height: 100%;
}

#main-nav .cerolabs-menu ul li .collapse-link a:hover {
  padding-left: 5px;
}

#main-nav .cerolabs-menu ul li ul {
  counter-reset: none;
  padding-left: 12ch;
}

#main-nav .cerolabs-menu ul li ul li {
  margin-bottom: 5px;
  list-style: disc;
}

#main-nav .cerolabs-menu ul li ul li::before {
  content: none;
}

.bg-fullheight {
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/mapa-santiago-01.png);
}


.bg-main-nav {
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/mapa-santiago-02.png);
}


.collapse-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#main-nav .collapse-toggle svg {
  margin: 0 0 5px 0;
  transition: transform 0.3s ease;
  width: 10px;
  vertical-align: middle;
}

#main-nav .collapse-toggle.collapsed svg {
  transform: rotate(0deg);
}

#main-nav .collapse-toggle:not(.collapsed) svg {
  transform: rotate(90deg);
}

.cerolabs-social  ul {
  padding: 0;
  margin: 0;
  display: none;
}

.cerolabs-social  ul li {
  list-style: none;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.cerolabs-social  ul li:last-child {
  margin-right: 0px;
}

.cerolabs-social  ul li a {
  display: inline-block;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  text-align: center;
  transition: 0.3s;
}

.cerolabs-social ul li a:hover {
  color: #fff;
  background-color: #000;
  margin-top: -3px;
}

.side-menu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.bottom-logo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 3;
}

.posts {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 3;

}
.posts a {
  color: #fff;
  text-decoration: none;
  background: #000;
  border: 2px solid #000;
  padding: 5px 10px;
}
.posts a:hover {
  background: #fff;
  color: #000 !important;
  text-decoration: none;
}


/*
 * Pages
 */

 .central {
   background-position: right bottom;
   background-size: auto;
   background-repeat: no-repeat;
   background-image: url(../img/mapa-santiago-03.png);
 }

 .central .breadcrumb {
  margin-bottom: 1.5rem;
 }

.central .breadcrumb li {
   font-family: "Roboto Condensed", sans-serif;
  font-size: 0.9rem;
  color: #757575;
}

.central .breadcrumb li a {
  color: #757575;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}

.central .breadcrumb li a:hover {
  color: #000;
}

.central h1 {
  font-family: "Poppins", serif;
  font-weight: 300;
  color: #000;
  line-height: 100%;
  margin-bottom: 0;
}

.central .lower-title p {
  font-family: "Poppins", serif;
  font-weight: 300;
  color: #000;
}

.central .info p {
  font-weight: 700;
}

.central .title p {
  font-family: "Poppins", serif;
  font-weight: 300;
  color: #000;
}

.central .sub-title p {
  font-weight: 800;
}

.central p {
  margin-bottom: 25px;
  line-height: 150%;
}

.central p:last-child {
  margin-bottom: 0px;
}

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

.inside-menu li {
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.inside-menu li:last-child {
  margin-right: 0px;
}

.inside-menu li img {
  min-height: 40px;
}

.carousel {
  background: transparent;
}

.carousel-cell {
  width: 100%;
  margin-right: 10px;
  /* center images in cells with flexbox */
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel.is-fullscreen .carousel-cell {
  height: 100%;
}

.carousel-cell-image {
  display: block;
  max-height: 100%;
}

.carousel.is-fullscreen .carousel-cell-image {
  max-width: 100%;
}

.front-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.front-menu ul > li {
  list-style: none;
  display: inline-block;
  float: left;
  margin-right: 20px;
  text-align: center;
  list-style: none;
}

.front-menu ul > li:last-child {
  margin-right: 0px;
}

.front-menu ul > li a {
  font-family: "Poppins", serif;
  display: inline-block;
  font-weight: 500;
  color: #000;
  padding: 5px 0;
  text-decoration: none;
  transition: 0.2s;
  font-size: calc(0.8rem + 1vw);
}

.front-menu ul > li a span {
  font-weight: 300;
}

.front-menu ul > li a:hover {
  color: #000;
  margin-top: -10px;
}

.front-menu-footer ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.front-menu-footer ul > li {
  list-style: none;
  display: inline-block;
  float: left;
  margin-right: 20px;
  text-align: center;
  list-style: none;
}

.front-menu-footer ul > li:last-child {
  margin-right: 0px;
}

.front-menu-footer ul > li a {
  font-family: "Poppins", serif;
  display: inline-block;
  font-weight: 500;
  color: #fff;
  padding: 5px 0;
  text-decoration: none;
  transition: 0.2s;
  font-size: calc(0.45rem + 1vw);
}

.front-menu-footer ul > li a span {
  font-weight: 300;
}

.front-menu-footer ul > li a:hover {
  color: #000;
}

/*
 * Footer
 */

/***************************************************
 * Generated by SVG Artista on 12/17/2024, 1:54:37 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 891.5905151367188px;
    stroke-dasharray: 891.5905151367188px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 891.5905151367188px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 891.5905151367188px;
    stroke-dasharray: 891.5905151367188px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 891.5905151367188px;
  }
}

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.cero-logo-1 {
  -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
    animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
    animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 884.7310180664062px;
    stroke-dasharray: 884.7310180664062px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 884.7310180664062px;
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 884.7310180664062px;
    stroke-dasharray: 884.7310180664062px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 884.7310180664062px;
  }
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.cero-logo-2 {
  -webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
    animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
  animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
    animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 584.7378540039062px;
    stroke-dasharray: 584.7378540039062px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 584.7378540039062px;
  }
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 584.7378540039062px;
    stroke-dasharray: 584.7378540039062px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 584.7378540039062px;
  }
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.cero-logo-3 {
  -webkit-animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
    animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
    animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 944.5208740234375px;
    stroke-dasharray: 944.5208740234375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 944.5208740234375px;
  }
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 944.5208740234375px;
    stroke-dasharray: 944.5208740234375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 944.5208740234375px;
  }
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.cero-logo-4 {
  -webkit-animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
    animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
  animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
    animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 1104.7158203125px;
    stroke-dasharray: 1104.7158203125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1104.7158203125px;
  }
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 1104.7158203125px;
    stroke-dasharray: 1104.7158203125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1104.7158203125px;
  }
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.cero-logo-5 {
  -webkit-animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
    animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
  animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
    animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 747.0596313476562px;
    stroke-dasharray: 747.0596313476562px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 747.0596313476562px;
  }
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 747.0596313476562px;
    stroke-dasharray: 747.0596313476562px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 747.0596313476562px;
  }
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.cero-logo-6 {
  -webkit-animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
    animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
  animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
    animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 181.13648986816406px;
    stroke-dasharray: 181.13648986816406px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 181.13648986816406px;
  }
}

@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 181.13648986816406px;
    stroke-dasharray: 181.13648986816406px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 181.13648986816406px;
  }
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.cero-logo-7 {
  -webkit-animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both,
    animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
  animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both,
    animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 424.26971435546875px;
    stroke-dasharray: 424.26971435546875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 424.26971435546875px;
  }
}

@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 424.26971435546875px;
    stroke-dasharray: 424.26971435546875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 424.26971435546875px;
  }
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.cero-logo-8 {
  -webkit-animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both,
    animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both,
    animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 760.4335327148438px;
    stroke-dasharray: 760.4335327148438px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 760.4335327148438px;
  }
}

@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 760.4335327148438px;
    stroke-dasharray: 760.4335327148438px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 760.4335327148438px;
  }
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.cero-logo-9 {
  -webkit-animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both,
    animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
  animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both,
    animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

/* Estilo inicial del div */
#hide-menu {
  opacity: 0;
  transition: opacity 2.5s;
}

/* Clase para mostrar el div */
#hide-menu.show {
  opacity: 1;
}


.btn {
  color: #fff;
    background-color: #000;
    border: 2px solid #000;
    padding: 5px 10px;
  border-radius: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.btn:hover {
    background-color: #fff;
    color: #000 !important;
    text-decoration: none;
    border: 2px solid #000;
   transform: translateX(5px);

}
.btn::after {
    content: '→';
    display: inline-block;
    margin-left: 10px;
}
.card {
  background : #f0f0f0;
  border: none;
  border-radius: 0;
}

a {
  color: #000;
    text-decoration: none;
}
a:hover {
  /*background-color: #000 !important;*/
    color: #a00 !important;
}

li {
    list-style: none;
    position: relative;
    padding-left: 10px;
}

li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #333;
}


h1 {
  padding-bottom: 1em;
}
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: left;
    padding: 10px 0;
}
.footer p {
  margin: 8px 0 0 12px;
}

.footer .container {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 200px;
    margin-right: 20px;
  color: #fff;
      filter: invert(100%);

}

.footer-text {
    flex: 1;
}

.footer a {
    color: #fff;
}
.breadcrumbs a::after {
    content: '>';
    margin-left: 5px;
}

.breadcrumbs a:last-child::after {
    content: '';
}

.comentario {
  border-top: 1px solid #ccc;
  margin-bottom: 1em;
}

textarea.form-control {
  border: 1px solid #444;
    border-radius: 0;
  font-size: 1.5em;
  background-color: #eee;
}
label {
  margin: 1em 0;
}

input.form-control {
  border: 1px solid #444;
    border-radius: 0;
  font-size: 1em;
  background-color: #eee;
  margin-bottom: 1em;
}

.sitename {
  font-weight: 900;
  color: #444;
}