.seccion-hero {
  background-image: url("../img/home.jpg");
}

@font-face {
  font-family: "DIN-Pro-Light-300";
  src: url("../fonts/DIN-Pro-Light-300.otf");
}

@font-face {
    font-family: "DIN-Pro-400";
    src: url("../fonts/DIN-Pro-400.otf");
}

@font-face {
    font-family: "DIN-Pro-Medium-500";
    src: url("../fonts/DIN-Pro-Medium-500.otf");
}

@font-face {
  font-family: "DIN-Pro-Bold-700";
  src: url("../fonts/DIN-Pro-Bold-700.otf");
}

@font-face {
  font-family: "DIN-Pro-Black-900";
  src: url("../fonts/DIN-Pro-Black-900.otf");
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px !important; /* Puedes ajustar este valor según tus preferencias */
  scroll-behavior: smooth;
  /* background: #f9f9f9; */
}

body {
  background: #eeeff0;
}

p {
  font-size: 1.1em;
}

h2 {
  font-size: 2.2rem;
}


.hero {
  display: grid;
  grid-template-columns: 1fr;
  height: 280px;

  /* padding: 0 30% ; */
  text-align: center;
  -webkit-animation: scale-in-ver-center 0.38s ease-in alternate backwards;
	        animation: scale-in-ver-center 0.38s ease-in alternate backwards;
  align-content: center;
}

@-webkit-keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}



@-webkit-keyframes gradientAnimation {
  0%   { background-position: 0% 30%, 0 0;}
  50%  { background-position: 100% 70%, 0 0;}
  100% { background-position: 0% 30%, 0 0;}
}
@keyframes gradientAnimation {
  0%   { background-position: 0% 30%, 0 0;}
  50%  { background-position: 100% 70%, 0 0;}
  100% { background-position: 0% 30%, 0 0;}
}

@-webkit-keyframes scale-up-left {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
}
@keyframes scale-up-left {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
}

.title-hero {
  left: 50%;
  color:#fff;
  font: normal 600 2em/1 'Open Sans', sans-serif;
  text-align: center;
  /* padding-top: 12%; */
}

.sub-title-hero {
  left: 50%;
  color:#fff;
  font: normal 200 1.4em/1 'Open Sans', sans-serif;
  text-align: center;
  /* padding-top: 12%; */
}

.p-title-hero {
  left: 50%;
  color: #fff;
    font-size: 1rem;
    line-height: 1.2em;
}

.nav-header {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  background: #f2f4f8;
}

.nav-list-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.w-img {
  width: 45%;
}

.nav-link-menu {
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.nav-link-menu:hover {
  color: white;
  font-weight: 500;
}

@-webkit-keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.color-white {
  color: #fff;
}

.background-input {
  background: #f2f2f2;
  border: none;
  color: white;
}

.background-input:focus {
  background: #f2f2f2;
  border: none;
  color: white;
}

.background-input:hover {
  background: #f2f2f2;
  border: none;
}

.btn-contact-us {
  color: #005b6c;
  background: #f3f7f9;
  border-radius: 15px;
  padding: 0% 4%;
  border: 1px solid #005b6c;
}

.btn-contact-us:hover {
  color: white;
  background: #03768c;
  border-radius: 15px;
  padding: 0% 4%;
  border: 1px solid #005b6c;
  /* border-style: none; */
  text-decoration: none;
}

.grid-contact-us {
  display: grid;
  grid-template-columns: 40% 60%;
  padding: 2% 12% 2% 4%;
  background: #00687c;
  margin: 1% 0%;
}
.img-card {
    align-self: center;
    justify-self: flex-end;
    padding: 0% 10%;
}

.grid-card-session-info {
  background: #f9f9f9;
  margin-bottom: 0.5%;
  padding: 1% 8%;
}

.flex-card-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
}

.card-info-content {
  width: 310px;
  margin: 1% 1%;
  padding-bottom: 2%;
  border: none;
  border-radius: 10px;
  background: white;
}

.img-one-info {
  background: #fff url('../img/one.jpeg') center center/cover no-repeat;
  width: auto;
  height: 200px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.img-two-info {
  background: #fff url('../img/two.jpeg') center center/cover no-repeat;
  width: auto;
  height: 200px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.img-three-info {
  background: #fff url('../img/three.jpeg') center center/cover no-repeat;
  width: auto;
  height: 200px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.p-info-hour {
  padding: 6% 6% 0% 8%;
font-size: 1rem;
font-weight: bold;
}

.p-info-title {
  font-size: 1.5rem;
  padding: 0% 1% 1% 8%;
  margin: -5% 0% 1% 0%;
  color:#4a9b82;
}

.img-info-card-icon {
  padding: 0% 1% 1% 8%;
}

.img-info-card-icon img {
  width: 25px;
  margin-bottom: 4%;
}

.content-boton-info {
  text-align: center;
  padding: 3% 0 2% 0;
}

.card-info-boton {
  border: 0.15rem solid #269999;
border-radius: 15px;
padding: 1% 4%;
margin: 2% 4%;
color: #269999;
background: transparent;
text-decoration: none;
}

.card-info-boton:hover {
  border: .20em solid #269999;
  text-decoration: none;
  color: #269999;
}

.grid-card-session-info-two {
  background: #f9f9f9;
  margin-bottom: 0.5%;
  padding: 1% 10%;
}

.container-info-session-prox {
  display: flex;
  /* flex-direction: row; */
  flex-wrap: wrap;
}

.card-child-info-session.one {
  flex: 50%;
  background: #fff;
  /* height: 270px; */
}

.card-child-info-session.two {
  /* flex: 50%; */
  background: #fff url('../img/two.jpeg') center center/cover no-repeat;
  /* height: 270px; */
  /* width: auto; */
}

.session-title-p {
  color:#4a9b82;
  font-size: 1.5rem;
  padding: 4% 6% 0 4%;
  margin-bottom: 0.2%;
}

.session-hour-p {
  font-size: 1rem;
  font-weight: bold;
  padding: 0 6% 0 4%;
}

.session-p {
  padding: 0 6% 0 4%;
  text-align: justify;
}

.session-icon-a {
  padding: 0% 1% 1% 4%;
}

.session-icon-a img {
  width: 25px;
  margin-bottom: 4%;
}

.grid-card-event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 3% 4%;
  border: 1px solid #c5c5c5;
  border-radius: 10px;
  padding: 2% 4%;
}

.card-img-cartel {
  border: none;
  background: #fff url('../img/cartel.jpg') center center/contain no-repeat;
  /* width: auto; */
  /* height: 620px; */
}

.card-text-event {
  margin: 0% 16% 0% 0%;
  /* height: 620px; */
}

.grid-inside {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    'header'
    'footer';
}

.container-content-event {
  padding-bottom: 4%;
}

.footer-container-event {
}



.title-event-page {
  color:#4a9b82;
}

.title-event-page-close {
  color:#646666;
}

.ul-p-event {
  font-size: 1.5rem;
}

.p-event-data {
  text-align: justify;
}

.p-event-footer {
  font-size: 0.80rem;
}

.gallery {
  background: #fff;
}

.gallery-cell {
  width: 26%;
  height: 200px;
  margin-right: 10px;
  background: #8C8;
  counter-increment: gallery-cell;
}

/* cell number */
.gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}


@media (max-width: 575px) {

  .container-info-session-prox {
    flex-direction: column !important;
  }
  .card-child-info-session.two {
    flex: none !important;
    height: 270px !important;
    width: auto !important;
  }
  .pd-list-kit {
    display: grid !important;
    grid-template-columns: 10% 93% !important;
  }
  .size-img {
  grid-template-columns: 26% 85% !important;
  }
  .list-program-iconos-flex{
    padding: 2% 8% !important;
  }

  .cl-575 {
    display: block !important;
    margin: 0 -8% !important;
  }
  .cl-768 {
    display: none !important;
  }
  .cr-992 {
    display: none !important;
  }


  .grid-card-team-five {
    display: none !important;
  }

  .grid-card-team-five-responsive {
    display: grid !important;
  }

  .gctf-five {
    grid-template-columns:  1fr !important;
    /* padding: 1% 4% 2% 4% !important; */
    padding: 1% 20% 2% 20% !important;
  }

  .gctf-five-hide {
    grid-template-columns:  1fr !important;
    /* padding: 1% 4% 2% 4% !important; */
    padding: 1% 20% 2% 20% !important;
  }

  .gctf-three {
    grid-template-columns: 1fr !important;
  }
  .grid-card-team-three {
    grid-template-columns: 1fr !important;
    /* grid-template-areas: "gtc-three-one"
                         "gtc-three-two"
                         "gtc-three-three"
                         "gtc-three-four" !important; */

  }
  .pd-gctt {
    transform: translate(6%, -35%) !important;
    padding: 0% 2% !important;
    margin-top: 2% !important;
  }
  .gtc-three-two {
    display: none !important;
    border-left: 2px solid #14608a !important;
  }


  .gtc-three-three {
    display: none !important;
    border-left: 2px solid #14608a !important;
  }

  .gtc-three-four {
    display: none !important;
    border-left: 2px solid #14608a !important;
  }
  .grid-card-team-two {
    grid-template-areas: "gct-two-one"
                         "gct-two-two"
                         "gct-two-five"
                         "gct-two-three"
                         "gct-two-four"
                         "gct-two-six" !important;
  }
  .p-timeline-card {
    transform: translate(14%, -50%) !important;
  }
  .hero {
    grid-template-columns:  100%;
    padding: 0 4% !important;

  }
  .title-hero {
    left: 50%;
    color:#fff;
    font: normal 600 1.8em/1 'Open Sans', sans-serif;
    text-align: center;
    /* padding-top: 12%; */
  }

  .sub-title-hero {
    left: 50%;
    color:#fff;
    font: normal 200 1.2em/1 'Open Sans', sans-serif;
    text-align: center;
    /* padding-top: 12%; */
  }

  .p-title-hero {
    left: 50%;
    color: #fff;
      font-size: 1rem;
      line-height: 1em;
  }
  .nav-link-menu {
    font-size: 0.8rem;
  }
  .w-img {
    width: 40% !important;
  }

  .grid-card-responsive {
    display: grid !important;
  }
  .grid-cart {
    display: none !important;

    /* grid-template-columns: 1fr !important; */
    /* text-align: center; */
    /* align-items: center; */
    /* align-self: center; */
    /* align-content: center; */
    /* display: none !important; */

  }

  .top {
    -ms-transform: translate(-115%, -15%) !important;
    -webkit-transform: translate(-115%, -15%) !important;
    -moz-transform: translate(-115%, -15%) !important;
    -o-transform: translate(-115%, -15%) !important;
    transform: translate(-115%, -15%) !important;
    position: absolute !important;
  }

  .boton {
    -ms-transform: translate(-115%, -15%) !important;
    -webkit-transform: translate(-115%, -15%) !important;
    -moz-transform: translate(-115%, -15%) !important;
    -o-transform: translate(-115%, -15%) !important;
    transform: translate(-115%, -15%) !important;
    position: absolute !important;
  }


  .left {
    -ms-transform: translate(-115%, -15%) !important;
    -webkit-transform: translate(-115%, -15%) !important;
    -moz-transform: translate(-115%, -15%) !important;
    -o-transform: translate(-115%, -15%) !important;
    transform: translate(-115%, -15%) !important;
    position: absolute !important;
  }

  .rigth {
    -ms-transform: translate(-115%, -15%) !important;
    -webkit-transform: translate(-115%, -15%) !important;
    -moz-transform: translate(-115%, -15%) !important;
    -o-transform: translate(-115%, -15%) !important;
    transform: translate(-115%, -15%) !important;
    position: absolute !important;
  }



  .grid-cart-child-dos {
    padding-left: 30% !important;
  }
  /* .top {
    height: 150px !important;
    width: 150px !important;
    transform: translate(-46%, -28%) !important;
  }
  .boton {
    height: 150px !important;
    width: 150px !important;
    transform: translate(93%, -212%) !important;
  }
  .left {
    height: 150px !important;
    width: 150px !important;
    transform: translate(-46%, -170%) !important;
  }
  .rigth {
    height: 150px !important;
    width: 150px !important;
    transform: translate(93%, -270%) !important;
  }
  .center {
    transform: translate(-4%, -78%) !important;
  } */
  .container-circle {
    width: 250px !important;
    height: 250px !important;
  }
  .grid-cart-responsive-circles {
    display: grid !important;
  }
  .grid-cart-one-index {
    grid-template-areas:  "home-to"
                          "home-tt"
                          "home-tr"
                          "home-tf" !important;
    /* grid-template-columns: 1fr !important; */
    text-align: center;
    -webkit-animation: focus-in-expand 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both !important;
	        animation: focus-in-expand 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both !important;
  }
  .img-icon-blue {
    width: 20% !important;
  }
  .grid-cart-medium {
    grid-template-columns: 1fr !important;
  }
  .item.active {
    padding-bottom: 4% !important;
  }
  .text-footer {
    text-align: center !important;
  }
  .grid-cart-team-card {
    grid-template-columns: 1fr !important;
  }
  .uno-cctu {
    margin:2% 6% 2% 6% !important;
  }
  .dos-cctu {
    margin: 2% 6% 2% 6% !important;
  }
  .grid-card-program-child-one {
    grid-template-columns: 1fr !important;
  }
  .grid-card-program-child-two {
    grid-template-columns: 1fr !important;
  }
  .wip-one {
    padding-left: 8% !important;
    padding-top: 2% !important;
    padding-bottom: 2% !important;
  }
  .w-img-program {
    width: 40% !important;
  }
  .wip-two {
    display: none !important;
  }
  .wip-three {
    display: block !important;
    padding-left: 8% !important;
    padding-top: 2% !important;
    padding-bottom: 2% !important;
  }
  .grid-card-program {
    margin: 2% 4% !important;
  }
  .list-program {
    display: none !important;
  }
  .timeline {
    display: block !important;
  }
  .p-program {
    width: 100% !important;
  }
  .w-img-program-subs {
    width: 45% !important;
  }
  .grid-card-program-child-four {
    grid-template-columns: 1fr !important;
  }
  .list-icon-three {
    /* grid-template-columns: 1fr 1fr 1fr !important; */
    /* margin: 4% 6% 9% 8% !important; */
    grid-template-columns: 1fr !important;
    margin: 4% 2% 8% 14% !important;
    gap: 28px !important;
  }
  .list-icon-three-child {
    align-items: baseline !important;
    grid-template-columns: 30% 60% !important;
  }
  .list-icon-three-size {
    width: 50% !important;
  }
  .list-program-iconos {
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    /* gap: 0 2%; */

    grid-template-columns: 1fr !important;
    gap: 2% 2% !important;
    padding: 0 0 40% 0 !important;
  }
  .grid-card-program-child-five {
    display: none !important;
  }
  .grid-card-program-child-five-dos {
    display: block !important;
  }
  .card-content-steps {
    margin: 4% 4% 0% 4% !important;
    /*  */
  }
  .title-gct {
    display: block !important;
    text-align: center;
  }
  .title-gcu {
    display: none !important;
  }
}



.timeline_new {
  display: block;
    /* Used to position the left vertical line */
    z-index: 1;
}
.gtc-three-correct {
  /* z-index: -1 !important; */
  /* color: red; */
  display: none;
}

.timeline__line {
    /* Border */
    border-right: transparent;

    /* Positioned at the left */
    left: 0.75rem;
    position: absolute;
    top: 0px;

    /* Take full height */
    height: 100%;
}

.timeline__items {
    /* Reset styles */
    list-style-type: none;
    margin: 0 -4%;
    padding: 0px;
}

.timeline__item {
    margin-bottom: 8px;
}

.timeline__top {
    /* Center the content horizontally */
    align-items: flex-start;
    display: flex;
}

.timeline__circle {
    /* Rounded border */
    background-color: #f1f1f1;
    border: 2px solid #14608a;
    border-radius: 9999px;

    /* Size */
    height: 3.2rem;
    width: 3.2rem;
    text-align: center;
    z-index: 1;
    font-size: 1rem;
    color: #14608a;
    font-size: 1.4rem;
    font-weight: bold;
    padding-top: 1%;
}

.timeline__title {
    /* Take available width */
    flex: 1;
    margin-left: 0.5rem;
}

.timeline__desc {
    /* Make it align with the title */
    margin-left: 2rem;
}

@media (min-width: 576px) {

  .container-info-session-prox {
    flex-direction: column !important;
  }
  .card-child-info-session.two {
    flex: none !important;
    height: 270px !important;
    width: auto !important;
  }
  .pd-list-kit {
    display: grid !important;
    grid-template-columns: 8% 93% !important;
  }

  .size-img {
  grid-template-columns: 26% 75% !important;
  }
  .list-program-iconos-flex{
    padding: 2% 8% !important;
  }

  .cl-575 {
    display: block !important;
  }
  .cl-768 {
    display: none !important;
  }
  .cr-992 {
    display: none !important;
  }

  .grid-card-team-five {
    display: none !important;
  }

  .grid-card-team-five-responsive {
    display: grid !important;
  }

  .gctf-five {
    grid-template-columns:  1fr !important;
    /* padding: 1% 4% 2% 4% !important; */
    padding: 1% 20% 2% 20% !important;
  }

  .gctf-five-hide {
    grid-template-columns:  1fr !important;
    /* padding: 1% 4% 2% 4% !important; */
    padding: 1% 20% 2% 20% !important;
  }
  .gctf-three {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
  .pd-gctt {
    -ms-transform: translate(-12%, -15%) !important;
    -webkit-transform: translate(-12%, -15%) !important;
    -moz-transform: translate(-12%, -15%) !important;
    -o-transform: translate(-12%, -15%) !important;
    transform: translate(-12%, -15%) !important;
    padding: 0% 4% !important;
    margin-top: 4% !important;
  }

  .timeline_new {
    z-index: -1;
  }
  .gtc-three-correct {
    /* z-index: 1 !important; */
    display: block;
  }
  .gtc-three-two {
    display: block;
    border-top: 2px solid #14608a !important;
    /* position: relative; */
  }

  /* .gtc-three-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    border-top: 2px solid blue;
} */

  .gtc-three-three {
    display: block;
    border-top: 2px solid #14608a !important;
  }

  .gtc-three-four {
    display: block;
    /* border-top: 2px solid #14608a !important; */
  }
  .grid-card-team-three {
    grid-template-areas: "gtc-three-one gtc-three-one gtc-three-one"
                          "gtc-three-correct gtc-three-correct gtc-three-correct" !important;

  }
  .grid-card-team-two {
    grid-template-areas: "gct-two-one gct-two-one"
                         "gct-two-two gct-two-four"
                         "gct-two-three gct-two-three"
                         "gct-two-five gct-two-six" !important;
  }
  .hero {
    grid-template-columns:  100%;
    padding: 0 6% !important;

  }


  .top {
    -ms-transform: translate(-125%, -15%) !important;
    -webkit-transform: translate(-125%, -15%) !important;
    -moz-transform: translate(-125%, -15%) !important;
    -o-transform: translate(-125%, -15%) !important;
    transform: translate(-125%, -15%) !important;
    position: absolute !important;
  }

  .boton {
    -ms-transform: translate(-125%, -15%) !important;
    -webkit-transform: translate(-125%, -15%) !important;
    -moz-transform: translate(-125%, -15%) !important;
    -o-transform: translate(-125%, -15%) !important;
    transform: translate(-125%, -15%) !important;
    position: absolute !important;
  }

  .left {
    -ms-transform: translate(-125%, -15%) !important;
    -webkit-transform: translate(-125%, -15%) !important;
    -moz-transform: translate(-125%, -15%) !important;
    -o-transform: translate(-125%, -15%) !important;
    transform: translate(-125%, -15%) !important;
    position: absolute !important;
  }

  .rigth {
    -ms-transform: translate(-125%, -15%) !important;
    -webkit-transform: translate(-125%, -15%) !important;
    -moz-transform: translate(-125%, -15%) !important;
    -o-transform: translate(-125%, -15%) !important;
    transform: translate(-125%, -15%) !important;
    position: absolute !important;
  }


  .nav-link-menu {
    font-size: 0.8rem;
  }
  .w-img {
    width: 45%;
  }

  .grid-card-responsive {
    display: grid !important;
  }

  .grid-cart {
    display: none !important;
    /* grid-template-columns: 1fr !important; */
    /* padding: 2% 2% !important; */
  }
  .grid-card-child-five {
    padding: 0 44px !important;
  }
  .circle-principal {
    width: 250px !important;
    height: 250px !important;
  }

  .grid-cart-child-dos {
    padding-left: 36% !important;
  }
  .grid-cart-responsive-circles {
    display: none !important;
  }
  .grid-cart-one-index {
    /* grid-template-columns: 1fr !important; */
    padding: 1% 4% !important;
    text-align: center;
    -webkit-animation: focus-in-expand 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both !important;
	        animation: focus-in-expand 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both !important;
  }
  .img-icon-blue {
    width: 25% !important;
  }
  .grid-cart-medium {
    grid-template-columns: 1fr !important;
  }
  .item.active {
    padding-bottom: 0% !important;
  }
  .text-footer {
    text-align: center !important;
  }
  .grid-cart-team-card {
    grid-template-columns: 1fr !important;
  }
  .uno-cctu {
    margin:2% 6% 2% 6% !important;
  }
  .dos-cctu {
    margin: 2% 6% 2% 6% !important;
  }
  .grid-card-program-child-one {
    grid-template-columns: 1fr !important;
  }
  .grid-card-program-child-two {
    grid-template-columns: 1fr !important;
  }
  .wip-one {
    padding-left: 8% !important;
    padding-top: 2% !important;
    padding-bottom: 2% !important;
  }
  .w-img-program {
    width: 30% !important;
  }
  .wip-two {
    display: none !important;
  }
  .wip-three {
    display: block !important;
    padding-left: 8% !important;
    padding-top: 2% !important;
    padding-bottom: 2% !important;
  }
  .grid-card-program {
    margin: 2% 4% !important;
  }
  .list-program {
    display: none !important;
  }
  .timeline {
    display: block !important;
  }
  .p-program {
    width: 100% !important;
  }
  .grid-card-program-child-four {
    grid-template-columns: 1fr !important;
  }
  .list-icon-three {
    grid-template-columns: 1fr 1fr 1fr !important;
    margin: 4% 6% 9% 8% !important;
  }
  .list-icon-three-child {
    align-items: baseline !important;
    grid-template-columns: 30% 60% !important;
  }
  .list-icon-three-size {
    width: 70% !important;
  }
  .list-program-iconos {
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    /* gap: 0 2%; */

    grid-template-columns: 1fr 1fr !important;
    gap: 6% 4% !important;
    padding: 0 0 5% 0 !important;
  }
  .grid-card-program-child-five {
    display: none !important;
  }
  .grid-card-program-child-five-dos {
    display: block !important;
  }
  .card-content-steps {
    margin: -14% 4% 0% 4% !important;
    /*  */
  }
  .img-icon-white-center {
    width: 50px !important;
    /* 25 */
  }
  .title-gct {
    display: block !important;
    text-align: center;
  }
  .title-gcu {
    display: none !important;
  }
}

.boton-circle {
  border: 1px solid #269999;
border-radius: 15px;
padding: 1% 4%;
color: #269999;
background: transparent;
text-decoration: none;
}

.boton-circle:hover {
  border: .15em solid #269999;
  text-decoration: none;
  color: #269999;
}

.boton-circle-two {
  border: 1px solid #224e6d;
border-radius: 15px;
padding: 1% 4%;
color: #fff;
background: #224e6d;
text-decoration: none;
transition: background-color 0.4s ease;
-webkit-transition: background-color 0.4s ease;
-o-transition: background-color 0.4s ease;
}

.boton-circle-two:hover {
  border: .15em solid #224e6d;
  text-decoration: none;
  color: #224e6d;
  background: #fff;

}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .container-content-event {
    padding-bottom: 4%;
  }
  .card-text-event {
    margin: 0% 2% 0% 0% !important;
    /* height: 620px; */
  }
  .title-event-page {
    font-size: 1.4rem !important;
  }
  .title-event-page-close {
    font-size: 1.4rem !important;
  }
  .ul-p-event {
    font-size: 1.1rem !important;
  }
  .container-info-session-prox {
    flex-direction: row !important;
  }
  .card-child-info-session.two {
    flex: 50% !important;
    height: auto !important;
    width: auto !important;
  }

  .container-meni .navbar ul li a {
    font-size: 0.75rem !important;
  }
  .grid-card-child-three {
    height: 212px !important;
  }

  .pd-list-kit {
    display: grid !important;
    grid-template-columns: 5% 95% !important;
  }

  .list-program-iconos-flex{
    padding: 2% 2% !important;
  }

  .cl-575 {
    display: none !important;
  }

  .cl-768 {
    display: block !important;
    margin: 0 -5% !important;
  }

  .cr-992 {
    display: none !important;
  }
  .grid-card-team-five {
    display: none !important;
  }

  .grid-card-team-five-responsive {
    display: grid !important;
  }

  .gctf-five {
    grid-template-columns:  1fr !important;
    /* padding: 1% 4% 2% 4% !important; */
    padding: 1% 30% 2% 30% !important;
  }

  .gctf-five-hide {
    grid-template-columns:  1fr !important;
    /* padding: 1% 4% 2% 4% !important; */
    padding: 1% 30% 2% 30% !important;
  }
  /* .gctf-five {
    grid-template-columns: repeat(4, 1fr) !important;
    padding: 1% 4% 6% 4% !important;

  } */
  /* .gctf-five-one {
    margin: 0 0 20% 0 !important;
  }
  .gctf-five-one-initial {
    margin: 0 0 20% 0 !important;
  }
  .gctf-five-one-end {
    margin: 0 0 20% 0 !important;
  } */
  /* .gctf-five-hide {
    grid-template-columns: repeat(4, 1fr) !important;
    padding: 0% 4% 2% 4% !important;
  } */
  .pd-gctt {
    -ms-transform: translate(-12%, -20%) !important;
    -webkit-transform: translate(-12%, -20%) !important;
    -moz-transform: translate(-12%, -20%) !important;
    -o-transform: translate(-12%, -20%) !important;
    transform: translate(-12%, -20%) !important;
    padding: 0% 6% !important;
    margin-top: 2% !important;
  }
  .grid-card-team-two {
    grid-template-areas: "gct-two-one gct-two-one"
                         "gct-two-two gct-two-four"
                         "gct-two-three gct-two-three"
                         "gct-two-five gct-two-six" !important;
  }

  .hero {
    grid-template-columns: 100%;
    padding: 0 18% !important;

  }

  .nav-link-menu {
    font-size: 0.9rem;
  }
  .w-img {
    width: 60%;
  }

  .grid-card-responsive {
    display: none !important;
  }
  .grid-cart {
    display: grid !important;
    /* grid-template-columns: 1fr !important; */
    padding: 1% 2% !important;
  }
  .grid-card-child-five {
    padding: 0 30px !important;
  }
  .circle-principal {
    width: 300px !important;
    height: 300px !important;
  }
  /* --------------------------------------- */

  .top {
    -ms-transform: translate(10%, -464%) !important;
    -webkit-transform: translate(10%, -464%) !important;
    -moz-transform: translate(10%, -464%) !important;
    -o-transform: translate(10%, -464%) !important;
    transform: translate(10%, -464%) !important;
    position: fixed !important;
  }

  .top:hover {
    -ms-transform: translate(25%, -400%) !important;
    -webkit-transform: translate(25%, -400%) !important;
    -moz-transform: translate(25%, -400%) !important;
    -o-transform: translate(25%, -400%) !important;
    transform: translate(25%, -400%) !important;
    transition: 0.8s !important;
    -webkit-transition: 0.8s !important;
    -o-transition: 0.8s !important;
  }
  .text-top {
    -ms-transform: translate(-38%, -524%) !important;
    -webkit-transform: translate(-38%, -524%) !important;
    -moz-transform: translate(-38%, -524%) !important;
    -o-transform: translate(-38%, -524%) !important;
    transform: translate(-38%, -524%) !important;
  }

  .boton {
    -ms-transform: translate(400%, -610%) !important;
    -webkit-transform: translate(400%, -610%) !important;
    -moz-transform: translate(400%, -610%) !important;
    -o-transform: translate(400%, -610%) !important;
    transform: translate(400%, -610%) !important;
    position: fixed !important;
  }

  .boton:hover {
    -ms-transform: translate(310%, -520%) !important;
    -webkit-transform: translate(310%, -520%) !important;
    -moz-transform: translate(310%, -520%) !important;
    -o-transform: translate(310%, -520%) !important;
    transform: translate(310%, -520%) !important;
    transition: 0.8s !important;
    -webkit-transition: 0.8s !important;
    -o-transition: 0.8s !important;
  }

  .boton-text {
    -ms-transform: translate(28%, -910%) !important;
    -webkit-transform: translate(28%, -910%) !important;
    -moz-transform: translate(28%, -910%) !important;
    -o-transform: translate(28%, -910%) !important;
    transform: translate(28%, -910%) !important;
  }

  .rigth {
    -ms-transform: translate(402%, -488%) !important;
    -webkit-transform: translate(402%, -488%) !important;
    -moz-transform: translate(402%, -488%) !important;
    -o-transform: translate(402%, -488%) !important;
    transform: translate(402%, -488%) !important;
    position: fixed !important;
  }

  .rigth:hover {
    -ms-transform: translate(320%, -430%) !important;
    -webkit-transform: translate(320%, -430%) !important;
    -moz-transform: translate(320%, -430%) !important;
    -o-transform: translate(320%, -430%) !important;
    transform: translate(320%, -430%) !important;
    transition: 0.8s !important;
    -webkit-transition: 0.8s !important;
    -o-transition: 0.8s !important;
  }

  .rigth-text {
    -ms-transform: translate(36%, -470%) !important;
    -webkit-transform: translate(36%, -470%) !important;
    -moz-transform: translate(36%, -470%) !important;
    -o-transform: translate(36%, -470%) !important;
    transform: translate(36%, -470%) !important;
  }

  .left {
    -ms-transform: translate(10%, -380%) !important;
    -webkit-transform: translate(10%, -380%) !important;
    -moz-transform: translate(10%, -380%) !important;
    -o-transform: translate(10%, -380%) !important;
    transform: translate(10%, -380%) !important;
    position: fixed !important;
  }

  .left:hover {
    -ms-transform: translate(25%, -330%) !important;
    -webkit-transform: translate(25%, -330%) !important;
    -moz-transform: translate(25%, -330%) !important;
    -o-transform: translate(25%, -330%) !important;
    transform: translate(25%, -330%) !important;
    transition: 0.8s !important;
    -webkit-transition: 0.8s !important;
    -o-transition: 0.8s !important;
  }

  .left-text {
    -ms-transform: translate(-32%, -330%) !important;
    -webkit-transform: translate(-32%, -330%) !important;
    -moz-transform: translate(-32%, -330%) !important;
    -o-transform: translate(-32%, -330%) !important;
    transform: translate(-32%, -330%) !important;
  }
  /*-------------------------------------  */



  .grid-cart-child-dos {
    padding-left: 20% !important;
  }
  .grid-cart-one-index {
    /* grid-template-columns: 28% 24% 24% 24% !important; */
    text-align: left;
    padding: 1% 6% !important;
    -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both !important;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both !important;
  }
  .img-icon-blue {
    width: 20% !important;
  }
  .grid-cart-medium {
    grid-template-columns: 50% 50% !important;
    padding: 2% 4% !important;
  }
  .text-footer {
    text-align: left !important;
  }
  .grid-cart-team-card {
    grid-template-columns: 50% 50% !important;
  }
  .uno-cctu {
    margin: 0 6% 0 0 !important;
  }
  .dos-cctu {
    margin: 0 0 0 6% !important;
  }
  .grid-card-program-child-one {
    grid-template-columns: 20% 80% !important;
  }
  .grid-card-program-child-two {
    grid-template-columns: 80% 20% !important;
  }
  .wip-one {
    padding-left: 8% !important;
    padding-top: 14% !important;
    padding-bottom: 14% !important;
  }
  .w-img-program {
    width: 130% !important;
  }
  .wip-two {
    display: block !important;
  }
  .wip-three {
    display: none !important;
  }
  .grid-card-program {
    margin: 2% 10% !important;
  }
  .list-program {
    display: grid !important;
  }
  .timeline {
    display: none !important;
  }
  .p-program {
    width: 84% !important;
  }
  .grid-card-program-child-four {
    grid-template-columns: 70% 30% !important;
  }
  .list-icon-three {
    grid-template-columns: 1fr !important;
    margin: 10% 12% 14% 0px !important;
  }
  .list-icon-three-child {
    align-items: end !important;
    grid-template-columns: 40% 60% !important;
  }
  .list-icon-three-size {
    width: 50% !important;
  }
  .list-program-iconos {
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    /* gap: 0 2%; */

    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 6% 4% !important;
    padding: 0 0 5% 0 !important;
  }
  .grid-card-program-child-five {
    display: none !important;
  }
  .grid-card-program-child-five-dos {
    display: block !important;
  }
  .card-content-steps {
    margin: 0% -56% 0% 38% !important;
    /*  */
  }
  .title-gct {
    display: block !important;
    text-align: center;
    align-self: center
  }
  .title-gcu {
    display: none !important;
  }
}

@media (max-width: 866px) {
  .grid-card-event {
    grid-template-columns: 1fr;
  }
  .card-img-cartel {
    height: 620px;
  }
  .card-text-event {
    margin: 0% 2% 0% 0%;
    /* height: 620px; */
  }
}
@media (min-width: 867px) {
  .result-one {
    grid-template-areas:  'dos'
                          'uno';

  }
  .card-result-data-text {
    grid-area: uno;
  }

  .card-result-data-img {
    grid-area: dos;
  }

  .card-medium {
    grid-template-columns: 30% 70% !important;
  }
  .container-content-event {
    padding-bottom: 4%;
  }
  .card-text-event {
    margin: 0% 2% 0% 0% !important;
    /* height: 620px; */
  }
  .title-event-page {
    font-size: 1.4rem !important;
  }
  .title-event-page-close {
    font-size: 1.4rem !important;
  }
  .ul-p-event {
    font-size: 1.1rem !important;
  }
}
@media (min-width: 886px) {
  .result-one {
    grid-template-columns: 50% 50%;
    grid-template-areas:  'uno dos';
  }
  .card-medium {
    grid-template-columns: 37% 70% !important;
  }
  .container-content-event {
    padding-bottom: 4%;
  }
  .card-text-event {
    margin: 0% 4% 0% 0% !important;
    /* height: 620px; */
  }
  .title-event-page {
    font-size: 1.6rem !important;
  }
  .title-event-page-close {
    font-size: 1.6rem !important;
  }
  .ul-p-event {
    font-size: 1.1rem !important;
  }
}
/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .result-one {
    grid-template-columns: 55% 45%;
  }
  .card-medium {
    grid-template-columns: 35% 70% !important;
  }
  .title-event-page {
    font-size: 1.8rem !important;
  }
  .title-event-page-close {
    font-size: 1.8rem !important;
  }
  .ul-p-event {
    font-size: 1.5rem !important;
  }
  .container-content-event {
    padding-bottom: 4%;
  }
  .card-text-event {
    margin: 0% 10% 0% 0% !important;
    /* height: 620px; */
  }
  .container-meni .navbar ul li a {
    font-size: 0.85rem !important;
  }
  .grid-card-child-three {
    height: 212px !important;
  }

  .list-program-iconos-flex{
    padding: 0% 4% !important;
  }

  .cl-575 {
    display: none !important;
  }

  .cl-768 {
    display: none !important;
  }

  .cr-992 {
    display: block !important;
  }
  .grid-card-team-five {
    display: grid !important;
  }

  .grid-card-team-five-responsive {
    display: grid !important;
  }

  .gctf-five {
    grid-template-columns: 1fr !important;
    padding: 1% 30% 2% 30% !important;
  }

  .gctf-five-hide {
    grid-template-columns: repeat(7, 1fr) !important;
    padding: 1% 4% 2% 4% !important;
    transform: translate(0, -48.4%) !important;

  }

  /* .gctf-five-one {
    margin: 0 0 0 0 !important;
  }
  .gctf-five-one-initial {
    margin: 0 0 0 0 !important;
  }
  .gctf-five-one-end {
    margin: 0 0 0 0 !important;
  } */

  .pd-gctt {
    transform: translate(-12%, -26%) !important;
    padding: 0% 8% !important;
    margin-top: 4% !important;
  }
  .grid-card-team-two {
    grid-template-areas: "gct-two-one gct-two-one gct-two-one "
                         "gct-two-two gct-two-three gct-two-four"
                         "gct-two-five gct-two-three gct-two-six" !important;
  }

  .title-gct {
    display: none !important;
  }
  .title-gcu {
    display: block !important;
  }
  .hero {
    grid-template-columns: 100%;
    padding: 0 24% !important;

  }

  .nav-link-menu {
    font-size: 1rem;
  }
  .w-img {
    width: 60%;
  }

  .grid-cart {
    padding: 1% 12% !important;
    /* grid-template-columns: 50% 50% !important; */
  }
  .grid-card-child-five {
    padding: 0 30px !important;
  }
  .circle-principal {
    width: 300px !important;
    height: 300px !important;
  }
  /* --------------------------------------- */

  .top {
    -ms-transform: translate(10%, -504%) !important;
    -webkit-transform: translate(10%, -504%) !important;
    -moz-transform: translate(10%, -504%) !important;
    -o-transform: translate(10%, -504%) !important;
    transform: translate(10%, -504%) !important;
  }

  .top:hover {
    -ms-transform: translate(4%, -420%) !important;
    -webkit-transform: translate(4%, -420%) !important;
    -moz-transform: translate(4%, -420%) !important;
    -o-transform: translate(4%, -420%) !important;
    transform: translate(4%, -420%) !important;
  }

  .text-top {
    -ms-transform: translate(-40%, -548%) !important;
    -webkit-transform: translate(-40%, -548%) !important;
    -moz-transform: translate(-40%, -548%) !important;
    -o-transform: translate(-40%, -548%) !important;
    transform: translate(-40%, -548%) !important;
  }

  .boton {
    -ms-transform: translate(425%, -648%) !important;
    -webkit-transform: translate(425%, -648%) !important;
    -moz-transform: translate(425%, -648%) !important;
    -o-transform: translate(425%, -648%) !important;
    transform: translate(425%, -648%) !important;
  }

  .boton:hover {
    -ms-transform: translate(360%, -540%) !important;
    -webkit-transform: translate(360%, -540%) !important;
    -moz-transform: translate(360%, -540%) !important;
    -o-transform: translate(360%, -540%) !important;
    transform: translate(360%, -540%) !important;
  }

  .boton-text {
    -ms-transform: translate(38%, -934%) !important;
    -webkit-transform: translate(38%, -934%) !important;
    -moz-transform: translate(38%, -934%) !important;
    -o-transform: translate(38%, -934%) !important;
    transform: translate(38%, -934%) !important;
  }

  .rigth {
    -ms-transform: translate(424%, -506%) !important;
    -webkit-transform: translate(424%, -506%) !important;
    -moz-transform: translate(424%, -506%) !important;
    -o-transform: translate(424%, -506%) !important;
    transform: translate(424%, -506%) !important;
  }

  .rigth:hover {
    -ms-transform: translate(350%, -460%) !important;
    -webkit-transform: translate(350%, -460%) !important;
    -moz-transform: translate(350%, -460%) !important;
    -o-transform: translate(350%, -460%) !important;
    transform: translate(350%, -460%) !important;
  }

  .rigth-text {
    -ms-transform: translate(40%, -474%) !important;
    -webkit-transform: translate(40%, -474%) !important;
    -moz-transform: translate(40%, -474%) !important;
    -o-transform: translate(40%, -474%) !important;
    transform: translate(40%, -474%) !important;
  }

  .left {
    -ms-transform: translate(10%, -356%) !important;
    -webkit-transform: translate(10%, -356%) !important;
    -moz-transform: translate(10%, -356%) !important;
    -o-transform: translate(10%, -356%) !important;
    transform: translate(10%, -396%) !important;
  }

  .left:hover {
    -ms-transform: translate(20%, -356%) !important;
    -webkit-transform: translate(20%, -356%) !important;
    -moz-transform: translate(20%, -356%) !important;
    -o-transform: translate(20%, -356%) !important;
    transform: translate(20%, -356%) !important;
  }

  .left-text {
    -ms-transform: translate(-40%, -338%) !important;
    -webkit-transform: translate(-40%, -338%) !important;
    -moz-transform: translate(-40%, -338%) !important;
    -o-transform: translate(-40%, -338%) !important;
    transform: translate(-40%, -338%) !important;
  }
  /*-------------------------------------  */
  .grid-cart-child-dos {
    padding-left: 30% !important;
  }
  .grid-cart-one-index {
    padding: 1% 10% !important;
    /* grid-template-columns: 28% 24% 24% 24% !important; */
  }
  .grid-card-program-child-five {
    display: grid !important;
  }
  .grid-card-program-child-five-dos {
    display: none !important;
  }
  .card-content-steps {
    margin: 20% -18% 20% 56% !important;
    /*  */
  }
  .grid-cart-medium {
    padding: 2% 4% !important;
  }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media all and (min-width: 1200px) {
  .result-one {
    grid-template-columns: 60% 40%;
  }
  .card-medium {
    grid-template-columns: 30% 70% !important;
  }
  .container-content-event {
    padding-bottom: 14%;
  }
  .card-text-event {
    margin: 0% 10% 0% 0% !important;
    /* height: 620px; */
  }
  .container-meni .navbar ul li a {
    font-size: 0.95rem !important;
  }
  .grid-card-child-three {
    height: 150px !important;
  }
  .list-program-iconos-flex{
    padding: 0% 4% !important;
  }

  .cl-575 {
    display: none !important;
  }

  .cl-768 {
    display: none !important;
  }

  .cr-992 {
    display: block !important;
  }
  .hero {
    grid-template-columns: 100%;
    padding: 0 30% !important;

  }
  .gctf-five-hide {
    grid-template-columns: repeat(7, 1fr) !important;
    padding: 1% 4% 2% 4% !important;
    transform: translate(0, -50%) !important;
  }

  .w-img {
    width: 50%;
  }
  .list-program-iconos {
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    /* gap: 0 2%; */

    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    gap: 6% 4% !important;
    padding: 0 0 5% 0 !important;
  }
  .card-content-steps {
    margin: 20% 4% 20% 34% !important;
    /* 20% -18% 20% 56% */
  }
  .img-icon-blue {
    width: 20% !important;
  }
}

@media all and (min-width: 1350px) {
  .card-medium {
    grid-template-columns: 30% 100% !important;
  }
}
@media all and (min-width: 1500px) {
  .gctf-five-hide {
    grid-template-columns: repeat(7, 1fr) !important;
    padding: 1% 4% 2% 4% !important;
    transform: translate(0, -50%) !important;
  }

}

/* veritcal */
/* Timeline Container */
.timeline {
  background: var(--primary-color);
  margin: 20px auto;
  padding: 20px;
}

/* Outer Layer with the timeline border */
.outer {
  border-left: 2px solid #d8d8d8;
}

/* Card container */
.card-veritcal {
  position: relative;
  margin: 0 0 20px 20px;
  padding: 10px;
  color: gray;
  border-radius: 8px;
  max-width: 400px;
  display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color:
#fff;
background-clip: border-box;

}

/* Information about the timeline */
.info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Title of the card */
.title {
  color: orangered;
  position: relative;
}

/* Timeline dot  */
.title::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  left: -38px;
  border: 1px solid #979797;
  background: #d8d8d8;
}

/* fin vertical */
/* Menu */
/* Basic styling */
.logo {
  margin: 0 0% 0 3%;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

/* nav {
  background: #00687C;
  padding: 1% 6% 1% 5%;
} */
ul {
  list-style-type: none;
  padding: 2% 0px 0% 0px;
}
a {
  color: white;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.logo a:hover {
  text-decoration: none;
}
.logo-a-img {
  margin-left: 18%;margin-top: 4%;margin-bottom: 4%;
}
.button.secondary {
  border-bottom: 1px #444 solid;
}
/* Mobile menu */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.toggle {
  order: 1;
}
.item.button {
  order: 2;
}
.item {
  width: 100%;
  text-align: center;
  order: 3;
  display: none;
}
.item.active {
  display: block;
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@media all and (min-width: 320px)  {

  .logo {
    flex: 1;
  }
  .logo-a-img {
    margin-left: 0% !important;margin-top: 0% !important;margin-bottom: 0% !important;
  }
}
/* Tablet menu */
/* @media all and (min-width: 600px) {
  .menu {
    justify-content: center;
  }
  .logo {
    flex: 1;
  }
  .logo-a-img {
    margin-left: 0% !important;margin-top: 0% !important;margin-bottom: 0% !important;
  }
  .toggle {
    flex: 1;
    text-align: right;
  }
  .item.button {
    width: auto;
    order: 1;
    display: block;
  }
  .toggle {
    order: 2;
  }
  .button.secondary {
    border: 0;
  }
  .button a {
    padding: 7.5px 15px;
    background: teal;
    border: 1px #006d6d solid;
  }
  .button.secondary a {
    background: transparent;
  }
  .button a:hover {
    text-decoration: none;
  }
  .button:not(.secondary) a:hover {
    background: #006d6d;
    border-color: #005959;
  }
  .button.secondary a:hover {
    color: #ddd;
  }
} */
.circle-principal {
  border: 0.15rem solid #979797;

}
.grid-cart {
  display: grid;
  /* grid-template-columns: 28% 36% 36%; */
  grid-template-areas: "grid-card-child-title grid-card-child-title grid-card-child-title"
                       "grid-card-child-one  grid-card-child-five grid-card-child-two"
                       "grid-card-child-three  grid-card-child-five grid-card-child-four";
  -webkit-animation: gradientAnimation 40s ease infinite;
  animation: gradientAnimation 40s ease infinite;
  /* padding: 2% 10%; */
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.grid-card-child-title {
  grid-area: grid-card-child-title;
  text-align: center;
}

.grid-card-child-title-responsive {
  text-align: center;
}

.grid-card-child-one {
  grid-area: grid-card-child-one;
  text-align: end;
  padding-top: 12%;
  /* padding-left: 12%; */
  /* position: fixed; */
  height: 340px;
  /* width: 300px; */
}

.grid-card-child-two {
  grid-area: grid-card-child-two;
  text-align: start;
  padding-top: 12%;
  /* position: fixed; */
  height: 340px;
  /* width: 300px; */
}

.grid-card-child-three {
  grid-area: grid-card-child-three;
  text-align: end;
  /* position: fixed; */
  height: 150px;
  margin-top: -22%;
  /* width: 300px; */
}

.grid-card-child-four {
  grid-area: grid-card-child-four;
  text-align: start;
  /* position: fixed; */
  height: 150px;
  margin-top: -22%;
  /* width: 300px; */
}

.grid-card-child-five {
  grid-area: grid-card-child-five;
  /* justify-self: center; */
  height: 306px;
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr 1fr 1fr;
   */
}

.grid-contain-principal {
  /* grid-area: circle-principal; */
  display: grid;
  grid-template-areas: "top-contain boton-contain"
                       "left-contain rigth-contain";
  z-index: -1;
  margin-top: -70%;
  gap: 28% 26%;
  margin-left: -6%;
}
.top-contain {
  grid-area: top-contain;
  display: grid;
grid-template-columns: 1fr;
justify-items: center;
/* padding-bottom: 15%; */
height: 136px;
width: 130px;
/* align-content: end; */
}

.boton-contain {
  grid-area: boton-contain;
  display: grid;
grid-template-columns: 1fr;
justify-items: center;
/* padding-bottom: 15%; */
height: 136px;
width: 130px;
/* padding-top: 12% */
/* align-content: end; */
}

.left-contain {
  grid-area: left-contain;
  display: grid;
grid-template-columns: 1fr;
justify-items: center;
padding-bottom: 15%;
height: 146px;
padding-left: 2%;
padding-right: 2%;
width: 130px;
/* align-content: end; */
}

.rigth-contain {
  grid-area: rigth-contain;
  display: grid;
grid-template-columns: 1fr;
justify-items: center;
padding-bottom: 15%;
height: 146px;
padding-left: 2%;
padding-right: 2%;
width: 130px;
/* align-content: end; */
}

.grid-card-child-one-responsive {
  border-left: 0.15rem solid #979797;
  padding-left: 8%;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 0;
}

.grid-card-child-two-responsive {
  border-left: 0.15rem solid #979797;
  padding-left: 8%;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 0;
}

.grid-card-child-three-responsive {
  border-left: 0.15rem solid #979797;
  padding-left: 8%;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 0;
}

.grid-card-child-four-responsive {
  border-left: 0.15rem solid #979797;
  padding-left: 8%;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 0;
}

.circle-principal {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  text-align: center;
}
/* Desktop menu */
@media all and (min-width: 600px) {
  .item {
    display: block;
    width: auto;
  }
  .toggle {
    display: none;
  }
  .logo {
    order: 0;
  }
  .logo-a-img {
    margin-left: 0% !important;margin-top: 0% !important;margin-bottom: 0% !important;
  }

  .item {
    order: 1;
  }
  .button {
    order: 2;
  }
  .menu li {
    padding: 0px 2% 0px 2%;
  }
  .menu li.button {
    padding-right: 0;
  }
}


/* Fin menu */




.grid-cart-responsive-circles {
  display: grid;
  grid-template-columns: 20% 80%;
  -webkit-animation: gradientAnimation 40s ease infinite;
  animation: gradientAnimation 40s ease infinite;
  padding: 2% 10%;
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.grid-cart-one-index {
  display: grid;
  /* grid-template-columns: 28% 24% 24% 24%; */
  grid-template-areas:  "home-to home-to home-to"
                        "home-tt home-tr home-tf";
  -webkit-animation: gradientAnimation 40s ease infinite;
  animation: gradientAnimation 40s ease infinite;
  padding: 1% 10%;
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.home-to {
  grid-area: home-to;
  text-align: center;
  padding-bottom: 0.2%;
}

.home-tt {
  grid-area: home-tt;
}

.home-tr {
  grid-area: home-tr;
}

.home-tf {
  grid-area: home-tf;
}

.grid-cart-medium {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 2% 4%;
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.grid-card-team {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2% 9%;
	-webkit-animation: slide-in-bck-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-bck-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  text-align: center;
}

.grid-card-team-two {
  background: #eff5f6;
  margin: 0 4%;
  display: grid;
  grid-template-areas: "gct-two-one gct-two-one gct-two-one "
                       "gct-two-two gct-two-three gct-two-four"
                       "gct-two-five gct-two-three gct-two-six";
  justify-content: center;
}

.gct-two-one {
  grid-area: gct-two-one;
  text-align: center;
  padding-top: 2%;
}

.gct-two-two {
  grid-area: gct-two-two;
  padding-left: 10%;
  padding-right: 12%;
}

.gct-two-three {
  grid-area: gct-two-three;
  align-self: center;
  display: grid;
  justify-content: center;
}

.gct-two-four {
  grid-area: gct-two-four;
  padding-right: 12%;
  padding-left: 10%;
}

.gct-two-five {
  grid-area:gct-two-five;
  padding-left: 10%;
  padding-right: 12%;
}

.gct-two-six {
  grid-area:gct-two-six;
  padding-right: 12%;
  padding-left: 10%;
}

.grid-card-team-three {
  background: #d9e3e6;
  margin: 0 4% 0% 4%;
  padding: 0% 8% 2% 8%;
  display: grid;
  grid-template-areas: "gtc-three-one gtc-three-one gtc-three-one"
                       "gtc-three-correct gtc-three-correct gtc-three-correct";

}

.gtc-three-correct {
  grid-area: gtc-three-correct;
}

.gtc-three-one {
  grid-area: gtc-three-one;
  text-align: center;
  padding: 0 0 3% 0%;
}

.gtc-three-two {
  grid-area: gtc-three-two;
  /* border-top: 2px solid #14608a; */
  margin-bottom: -8%;
}

.gtc-three-three {
  grid-area: gtc-three-three;
  /* border-top: 2px solid #14608a; */
  margin-bottom: -8%;
}

.gtc-three-four {
  grid-area: gtc-three-four;
  /* border-top: 2px solid #14608a; */
  margin-bottom: -8%;
}

.pd-gctt {
  transform: translate(-12%, -26%);
  padding: 0% 8%;
  margin-top: 4%;
}

.circle-number {
  border: 2px solid #14608a;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  background: #f1f1f1;
  text-align: center;
  padding: 2% 0;
  transform: translate(-30%, -50%);
  color: #14608a;
}

.grid-card-team-four {
  background: #f6fafa;
  margin: 0 4%;
  padding: 0% 6%;
  display: grid;
}

.gctf-one {
  text-align: center;
  padding: 2% 4% 0% 4%;
}

.gctf-one-cards {
  text-align: center;
  padding: 2% 4% 2% 4%;
}

.gctf-two {
  text-align: center;
  padding-top: 1.4%;
}

.gctf-three {
  display: grid;
  /* grid-template-columns: 1fr 1fr 1fr; */
  padding-top: 1%;
  margin-bottom: -1.8%;
}

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

.card-img-text {
  text-align: center;
  padding: 0 4%;
}

.grid-card-team-five {
  background: #e5eeef;
  margin: 0 4%;
  display: grid;
  /* padding: 0% 6%; */
}

.grid-card-team-five-responsive {
  background: #e5eeef;
  margin: 0 4%;
  display: none;
  /* padding: 0% 6%; */
}

.gctf-five {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-items: center;
  padding: 1% 4% 2% 4%;
  /* z-index: 1; */
}

.gctf-five-one {
  border-top: 0.15rem solid #00687c;
  text-align: center;
  width: 100%;
  display: grid;
  justify-items: center;
}

.gctf-five-one-initial {
  border-top: 0.15rem solid #00687c;
  text-align: center;
  width: 50%;
  justify-self: end;
}

.gctf-five-one-end {
  border-top: 0.15rem solid #00687c;
  text-align: center;
  width: 50%;
  justify-self: start;
  display: grid;
  justify-items: flex-end;

}

@-webkit-keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}

.gctf-five-hide {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-items: center;
  padding: 0% 4% 2% 4%;
  transform: translate(0, -49.4%);
  /* margin: 0% 0 -20% 0px; */
  z-index: 1;
}

.circle-number-roman {
  border: 2px solid #14608a;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  background: #f1f1f1;
  text-align: center;
  padding: 2% 0;
  transform: translate(0%, -50%);
  color: #14608a;
}
.circle-number-roman-hide {
  border: 2px solid #14608a;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  background: #f1f1f1;
  text-align: center;
  padding: 2% 0;
  /* transform: translate(166%, 26%); */
  color: #14608a;
  justify-self: center;
}
.circle-number-roman-hide-responsive {
  border: 2px solid #14608a;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  background: #f1f1f1;
  text-align: center;
  padding: 1% 0;
  transform: translate(-50%, -40%);
  color: #14608a;
}
.circle-number-roman-start {
  border: 2px solid #14608a;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  background: #f1f1f1;
  text-align: center;
  padding: 2% 0;
  transform: translate(-30%, -50%);
  color: #14608a;
}
.circle-number-roman-end {
  border: 2px solid #14608a;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  background: #f1f1f1;
  text-align: center;
  padding: 2% 0;
  transform: translate( 0%, -50%);
  color: #14608a;
}

.item-abs {
  position: relative;
}

.dos-five-line
{
  z-index: 1;
transform: translate(0, -43%);
margin-bottom: -30%;
}

@media all and (min-width: 1750px) {
  .dos-five-line
  {
    /* z-index: 1; */
  /* transform: translate(0, -43%); */
  margin-bottom: -14% !important;
  }

  /* .card-info-hide
  {
    height: 200px !important;
  } */
}

.uno-five-line {
  z-index: 2;
}

.card-info-hide {
  border: 0.15rem solid #00687c;
  width: 100%;
  text-align: center;
  display:grid;
  padding: 0px 7%;
  align-items: center;
  /* background: red; */
  /* opacity: 0; */
  /* margin:  0 0 -84% 0; */
}

.card-info-hide-responsive {
  border-left: 0.15rem solid #00687c;
  width: 100%;
  text-align: center;
  display:grid;
  transition: all 0.3s ease;
  padding: 2% 0%;

  /* opacity: 0; */
  /* margin:  0 0 -84% 0; */
}

.one-hide {
  opacity: 0;
  /* -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
	        /* animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.two-hide {
  opacity: 0;
  /* -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
	        /* animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.three-hide {
  opacity: 0;
  /* -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
	        /* animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.five-hide {
  opacity: 0;
  /* -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
	        /* animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.four-hide {
  opacity: 0;
  /* -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
	        /* animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.six-hide {
  opacity: 0;
  /* -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
	        /* animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.seven-hide {
  opacity: 0;
  /* -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
	        /* animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.one-text-responsive {
  display: none;
}

.two-text-responsive {
  display: none;
}

.three-text-responsive {
  display: none;
}

.four-text-responsive {
  display: none;
}

.five-text-responsive {
  display: none;
}

.six-text-responsive {
  display: none;
}

.seven-text-responsive {
  display: none;
}


.triangule-close{
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  /* border-top: 50px solid black; */
  border-top: 12px solid #00687c;
  border-right: 10px solid transparent;
  align-self: end;
}
.triangule-close-responsive{
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  /* border-top: 50px solid black; */
  border-top: 12px solid #00687c;
  border-right: 10px solid transparent;
  align-self: center;
  justify-self: center;
}
.triangule-close-responsive:hover{
  cursor: pointer;
}
.triangule-open{
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  /* border-top: 50px solid black; */
  border-bottom: 12px solid #00687c;
  border-right: 10px solid transparent;
  align-self: end;
  justify-self: center;
}

.triangule-open-responsive{
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  /* border-top: 50px solid black; */
  border-bottom: 12px solid #00687c;
  border-right: 10px solid transparent;
  align-self: end;
  justify-self: center;
  display: none;
}
.triangule-open-responsive:hover{
  cursor: pointer;
}

.triangule-close:hover{
  cursor: pointer;
}

.triangule-open:hover{
  cursor: pointer;
}
.grid-cart-team-card {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 2% 10%;
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.card-company-team {
  border: 1px solid #cbcbcb;
  border-radius: 5px;
	-webkit-animation: bounce-in-fwd 1.1s both;
	        animation: bounce-in-fwd 1.1s both;
}

.card-company-team:hover {
  border: 2px solid #00687c;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes slide-in-bck-center {
  0% {
    -webkit-transform: translateZ(600px);
            transform: translateZ(600px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-bck-center {
  0% {
    -webkit-transform: translateZ(600px);
            transform: translateZ(600px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}

@-webkit-keyframes bounce-in-fwd {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(0.84);
            transform: scale(0.84);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-fwd {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: scale(0.84);
            transform: scale(0.84);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  89% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

.grid-cart-child {
  padding-left: 2%;
  padding-right: 2%;
  text-align: center;
}

  .grid-cart-child-dos {
    padding-left: 30%;
    padding-right: 6%;
  }

.img-icon-blue {
  width: 20%;
  padding-bottom: 2%;
}

.img-icon-white {
  width: 75%;
  /* margin: 8%; */
  padding-top: 12%;
}

/* .img-icon-white:hover */

.img-icon-white-center {
  width: 50px;
  margin: 2%;
}

.img-icon-white-medium {
  width: 100%;
  margin: 8%;
}

.icon-text-white {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
}

.grid-graph {
  display: grid;
  grid-template-columns: 28% 72%;
  padding: 2% 10%;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

/* .text-top {
  display: none;
  -webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.text-boton {
  display: none;
  -webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.text-left {
  display: none;
  -webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.text-rigth {
  display: none;
  -webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
} */

@-webkit-keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
@keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}


.card-content-steps {
  border: 2px solid #5b696b;
  margin: 20% 4% 20% 34%;
  border-radius: 15px;
  display: none;
  padding: 4% 2% 2% 4%;
  -webkit-animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
@-webkit-keyframes slide-in-elliptic-top-fwd {
  0% {
    -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
            transform: translateY(-600px) rotateX(-30deg) scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) rotateX(0) scale(1);
            transform: translateY(0) rotateX(0) scale(1);
    -webkit-transform-origin: 50% 1400px;
            transform-origin: 50% 1400px;
    opacity: 1;
  }
}
@keyframes slide-in-elliptic-top-fwd {
  0% {
    -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
            transform: translateY(-600px) rotateX(-30deg) scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) rotateX(0) scale(1);
            transform: translateY(0) rotateX(0) scale(1);
    -webkit-transform-origin: 50% 1400px;
            transform-origin: 50% 1400px;
    opacity: 1;
  }
}

/*  */
.center {
  /* position: absolute; */
  transform: translate(0%, -60%);
  text-align: center;
  font-size: 0.8rem;
}

.top {
  /* position: absolute; */
  /* -ms-transform: translate(10%, -504%); */
  /* -webkit-transform: translate(10%, -504%); */
  /* -moz-transform: translate(10%, -504%); */
  /* -o-transform: translate(10%, -504%); */
  /* transform: translate(10%, -504%); */
  border-radius: 50%;
  background: #5b696b;
  height: 55px;
  width: 55px;
  text-align: center;
  position: fixed;
  /* -webkit-animation: scale-in-ver-center 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-ver-center 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.top-new {
  /* position: absolute; */
  /* -ms-transform: translate(10%, -504%); */
  /* -webkit-transform: translate(10%, -504%); */
  /* -moz-transform: translate(10%, -504%); */
  /* -o-transform: translate(10%, -504%); */
  /* transform: translate(10%, -504%); */
  border-radius: 50%;
  background: #5b696b;
  height: 55px;
  width: 55px;
  text-align: center;
  /* position: fixed; */
  /* -webkit-animation: scale-in-ver-center 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-ver-center 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.top-new:hover {
  height: 74px;
  width: 74px;
}

.top:hover {
  height: 64px;
  width: 64px;
  -ms-transform: translate(4%, -420%);
  -webkit-transform: translate(4%, -420%);
  -moz-transform: translate(4%, -420%);
  -o-transform: translate(4%, -420%);
  transform: translate(4%, -420%);
  transition: 0.5s;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
}

.text-top {
  /* transform: translate(-40%, -688%); */
  /* text-align: center; */
}

.top-responsive {
  /* position: absolute; */
  transform: translate(0%, 0%);
  border-radius: 50%;
  background: #134263;
  height: 66px;
  width: 66px;
  text-align: center;
  /* -webkit-animation: scale-in-ver-center 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-ver-center 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}

.boton {
  /* position: absolute; */
  transform: translate(425%, -750%);
  border-radius: 50%;
  background: #4a9b82;
  height: 55px;
  width: 55px;
  text-align: center;
  position: fixed;

}

.boton-new {
  /* position: absolute; */
  /* transform: translate(425%, -750%); */
  border-radius: 50%;
  background: #4a9b82;
  height: 55px;
  width: 55px;
  text-align: center;
  /* position: fixed; */

}

.boton-new:hover {
  height: 74px;
  width: 74px;
}

.boton:hover {
  height: 64px;
  width: 64px;
  transform: translate(360%, -640%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.boton-responsive {
  /* position: absolute; */
  transform: translate(0%, 0%);
  border-radius: 50%;
  background: #26708b;
  height: 66px;
  width: 66px;
  text-align: center;
}

.rigth {
  /* position: absolute; */
  transform: translate(424%, -810%);
  border-radius: 50%;
  background: #26708b;
  height: 55px;
  width: 55px;
  text-align: center;
  position: fixed;

}

.rigth-new {
  /* position: absolute; */
  /* transform: translate(424%, -810%); */
  border-radius: 50%;
  background: #26708b;
  height: 55px;
  width: 55px;
  text-align: center;
  /* position: fixed; */

}

.rigth-new:hover {
  height: 74px;
  width: 74px;
}

.rigth:hover {
  height: 64px;
  width: 64px;
  transform: translate(350%, -680%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.rigth-responsive {
  /* position: absolute; */
  transform: translate(0%, 0%);
  border-radius: 50%;
  background: #4a9b82;
  height: 66px;
  width: 66px;
  text-align: center;
}

.left {
  /* position: absolute; */
  transform: translate(10%, -600%);
  border-radius: 50%;
  background: #134263;
  height: 55px;
  width: 55px;
  text-align: center;
  position: fixed;

}

.left-new {
  /* position: absolute; */
  /* transform: translate(10%, -600%); */
  border-radius: 50%;
  background: #134263;
  height: 55px;
  width: 55px;
  text-align: center;
  /* position: fixed; */

}

.left-new:hover {
  height: 74px;
  width: 74px;
}

.left:hover {
  height: 64px;
  width: 64px;
  transform: translate(10%, -500%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.left-responsive {
  /* position: absolute; */
  transform: translate(0%, 0%);
  border-radius: 50%;
  background: #5b696b;
  height: 66px;
  width: 66px;
  text-align: center;
}

@-webkit-keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}


.container-circle {
  border: 1px solid;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  margin: 36% -20%;
}

.arrow {
  /* background-image: url("../img/arrow.png"); */
}

.background-tail {
  /* background: #ecf3f4; */
  /* background: url("../img/barrow.jpg") 0 0 / cover no-repeat; */
  background: #f3f9f9;
  padding-top: 4%;

}

.font-p-s {
  font-size: 0.8rem;
}



.card-medium {
  /* border: 1px solid #b3b3b3; */
  margin: 4% 6%;
  border-radius: 8px;
  /* background: #f4f4f4; */
  display: grid;
  grid-template-columns: 30% 70%;
}

.card-medium:hover {
  /* border: 1px solid #00687C; */
  /* margin: 4% 6%; */
  /* border-radius: 8px; */
  /* background: #f4f4f4; */
  /* display: grid; */
  /* grid-template-columns: 30% 70%; */
}

.icon-medium {
  border: none;
  -webkit-border-radius: 0px 70px 70px 70px;
  -moz-border-radius: 0px 70px 70px 70px;
  border-radius: 0px 70px 70px 70px;
  margin: 10%;
  /* height: 120px; */
}

.bg-one {
  background: url("../img/2programa.png") 0 0 / cover no-repeat;
}

.bg-two {
  background: url("../img/1quienes somos.png") 0 0 / cover no-repeat;
}

.medium-text {
  margin: 10% 4%;
}

.bg-footer {
  background: #f2f4f8;
  /* display: grid; */
  /* grid-template-columns: 50% 50%; */
  padding: 0 0%;
}

.icons-footer {
  align-self: center;
  padding: 0 0%;
}

.text-footer {
  margin: 4% 0;
}

.img-footer {
  margin: 0 4%
}

.p-footer {
  margin-bottom: 0 !important;
}

.if-one {
  width: 18%;
}

.if-two {
  width: 20%;
}

.if-three {
  /* border: 1px solid; */
  width: 32%;
  /* height: 60px; */
}

.it-three {
  margin: 10% 16%;
  width: 66%;
}

.it-two {
  width: 30%;
  margin: 8% 30%;
}


.color-main {
  color: #00687c;
}

.color-secondary {
  color: #6f7377;
}

.color-blac {
  color: #232323;
}

.color-blac-t {
  color: #545758;
}

.color-blac-f {
  color: #515455;
}

.fw-100 {
    font-weight: 100;
}

.fw-300 {
    font-weight: 300;
    font-family: DIN-Pro-Light-300;
}

.fw-400 {
    font-weight: 400;
    font-family: DIN-Pro-400;
}

.fw-500 {
    font-weight: 500;
    font-family: DIN-Pro-Medium-500;
}

.fw-700 {
    font-weight: normal;
    font-family: DIN-Pro-Bold-700;
}

.fw-900 {
  font-weight: 900;
  font-family: DIN-Pro-Black-900;
}

.two {
  list-style: outside;
  text-align: justify;
  /* padding-left: 6%; */
  font-size: 0.95rem;
}

.list-two {
  list-style: outside;
  text-align: left;
  padding-left: 6%;
  font-size: 0.95rem;
}

.list-three {
  list-style: inside;
  text-align: center;
  padding-left: 6%;
  font-size: 0.95rem;
}

.two-decimal {
  list-style: decimal;
  text-align: justify;
}
@-webkit-keyframes flip-in-hor-top {
  0% {
    -webkit-transform: rotateX(-80deg);
            transform: rotateX(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes flip-in-hor-top {
  0% {
    -webkit-transform: rotateX(-80deg);
            transform: rotateX(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 1;
  }
}

.grid-card-program {
  margin: 2% 10%;
	-webkit-animation: flip-in-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: flip-in-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.grid-child-card-program {
  display: grid;
  grid-template-columns: 4% 96%;
  border: 1px solid #b3b3b3;
  border-radius: 10px;
}

.grid-card-program-child-one {
  display: grid;
  grid-template-columns: 20% 80%;
  background-image: linear-gradient(to right, #e3eef0, #ebf2f5, #f3f6f9, #fafafc, #ffffff);
}

.grid-card-program-child-two {
  display: grid;
  grid-template-columns: 80% 20%;
  background-image: linear-gradient(to right, #ffffff, #fafafc, #f3f6f9, #ebf2f5, #e3eef0);
}

.grid-card-program-child-four {
  display: grid;
  grid-template-columns: 70% 30%;
  background-image: linear-gradient(to right, #ffffff, #fafafc, #f3f6f9, #ebf2f5, #e3eef0);
}

.grid-card-program-child-five {
  display: grid;
  /* grid-template-columns: 20% 80%; */
  background-image: linear-gradient(to right, #e3eef0, #ebf2f5, #f3f6f9, #fafafc, #ffffff);
}

.w-img-program {
  width: 130%;
}

.w-img-program-arrow {
  width: 100%;
}

.w-img-program-sub {
  width: 210%;
  margin-left: 0%;
}

.w-img-program-subs {
  width: 30%;
  margin-left: 0%;
  transform: translate(-18%, 0%);
}

.side-bg {
  background: #14608a;
}

.list-program {
  display: grid;
  grid-template-columns: 10% 30% 30% 30%;
  padding: 0 0;
  gap: 0 4%;
  margin: -4% 0 0 0;
}

.p-program {
  width: 84%;
font-size: 0.9em;
text-align: left;
}

.p-program-dos {
  width: 84%;
font-size: 1.1em;
text-align: left;
}

.point-class {
  width: 10%;
}

.point-hr {
  margin: 12px 0;
  border: 0;
  text-align: center;
}

.point-hr::before {
    content: "\2022 \2022 \2022";
    font-size: 50px;
    color: #4F8BCA;
}


/* ------------------------ */

.timeline-horizontal {
  display: flex;
  margin: 0 0px 0px -22%;
}
.event {
  flex: 0 0 68%;
  display: flex;
  flex-direction: column;
   position: relative;
}

.event .dot {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 1px solid #14608a;
  border-radius: 50%;
  text-align: center;
  padding-top: 6%;
  color: #14608a;
  font-weight: bold;
}
.event:not(:last-child):after {
  content: "";
  border: 1px solid #14608a;
  position: absolute;
  width: calc(100% - 50px);
  top: 20px;
  left: 49px;
}

.event .stage-name {
  max-width: max(0px, calc((100% - 120px)*999));
  overflow: hidden;
  margin: 0 0 0 -10%;
}
.contained-in-width {
  width: 400px;
}
.event > div {
  width: 100%;
  display: flex;
}
.event.completed .dot {
  border-color: #14608a;
  background: #d8d8d8;
}
.event.completed:not(:last-child):after {
  border-color: #14608a;
}
.event.current .dot {
  border-color: #979797;
  background-color: #979797;
}
.event.current .stage-name {
  max-width: none;
  overflow: initial;
}
/* ---------------------------------- */
.timeline-horizontal-dos {
  display: flex;
  margin: 0 0px 0px 0%;
}
.event-dos {
  flex: 0 0 14%;
  display: flex;
  flex-direction: column;
   position: relative;
   font-size: 0.75em;
}
.event-dos .dot {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 1.6px solid #14608a;
  border-radius: 50%;
  color: #14608a;
  font-weight: bold;
  text-align: center;
  padding-top: 3%;
}
.event-dos:not(:last-child):after {
  content: "";
  border: 1.2px solid #14608a;
  position: absolute;
  width: calc(100% - 25px);
  top: 10px;
  left: 24px;
}

.event-dos .stage-name {
  max-width: max(0px, calc((100% - 120px)*999));
  overflow: visible;
  margin: 0 30% 0 0%;
}
.contained-in-width {
  width: 400px;
}
.event-dos > div {
  width: 100%;
  display: flex;
}
.event-dos.completed .dot {
  border-color: #14608a;
  background: #d8d8d8;
}
.event-dos.completed:not(:last-child):after {
  border-color: #14608a;
}
.event-dos.current .dot {
  border-color: #14608a;
  background-color: #979797;
}
.event-dos.current .stage-name {
  max-width: none;
  overflow: initial;
}
/* -------------------------- */
.list-icon-three {
  display: grid;
grid-template-columns: 1fr;
margin: 10% 12% 14% 0px;
}

.list-icon-three-size {
  width: 50%;
}

.list-icon-three-child {
  align-items: end;
  display: grid;
  grid-template-columns: 40% 60%;
  margin: 0px 0% -6% -8%;
}

.list-program-line {
  display: grid;
  grid-template-columns: 20% 80%;
  margin: 1% 2% 1% 2%;
}

#texto{
  display: inline-block;
  vertical-align: baseline;
}

.list-program-iconos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0 2%;
}

.size-img {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    /* margin: 0px 75%; */
    display: grid;
grid-template-columns: 26% 75%;
/* margin: 0px 75%; */
/* justify-items: center; */
/* border: 1px solid; */
width: 204px;
}
.hrs{
  margin-top: 5px;
  margin-bottom: 15px;
  width: 34%;
  margin-left: 34%;
  border: 0;
  border-top: 0.4em solid #00687c;
}

.f-hover:hover {
  font-weight: bold;
}

/* JTI */
.list-program-iconos-flex{
  display: flex;
  justify-content: space-evenly;
  /* padding: 2% 8%; */
  padding: 0 4%;
}

.grid-six-program {
  background: #d5e1e4;
  margin: 0 4%;
  padding: 0 4% 1% 4%;
}

.grid-seven-program {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2% 0% 1% 0%;
}

.grid-kit-left {
  display: grid;
  grid-template-columns: 25% 75%;
  margin: 2% 10% 0 10%;
  border: 1px solid #a9a9a9;
  border-radius: 15px;
	-webkit-animation: scale-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes scale-in-left {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    opacity: 1;
  }
}
@keyframes scale-in-left {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    opacity: 1;
  }
}


.grid-kit-rigth {
  display: grid;
  grid-template-columns: 75% 25%;
  margin: 2% 10% 0 10%;
  border: 1px solid #a9a9a9;
  border-radius: 15px;
	-webkit-animation: scale-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes scale-in-right {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    opacity: 1;
  }
}
@keyframes scale-in-right {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    opacity: 1;
  }
}

.drop-size {
    width: 90%;
}

.text-kit-pr {
  padding: 4% 4% 2% 14%;
}

.text-kit-pl {
  padding: 4% 14% 2% 6%;
}

/* new menu */
.container-meni {
  height: auto;
  background-color: #00687C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
padding: 1% 4% 1% 2%;
}

.container-meni .logo {
  max-width: 260px;
  /* padding: 0 10px; */
  overflow: hidden;
}

.container-meni .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
}

.container-meni .logo a img {
  /* max-width: 100%; */
  /* max-height: 60px; */
  width: 252px;
}

.container-meni .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 10px;
  justify-content: flex-end;
  align-self: baseline;
}

.container-meni .navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.container-meni .navbar ul li a {
  text-decoration: none;
  color: #f5f4f4;
  /* font-size: 0.95rem; */
  text-transform: uppercase;
  display: block;
  height: 10px;
  line-height: 60px;
  cursor: pointer;
  padding: 0 10px;
}

.container-meni .navbar ul li a:hover {
  color: #ffffff;
  background-color: #00687C;
  text-decoration: underline;
}

.container-meni .navbar ul .close {
  display: none;
  text-align: right;
  padding: 10px;
}

.container-meni .navbar ul .logo-res {
  display: none;
}


.container-meni .navbar ul .close span {
  font-size: 40px;
  display: inline-block;
  /* border: 1px solid #000000; */
  padding: 0 10px;
  cursor: pointer;
}

.container-meni .navbar .icon-bar {
  padding: 18px 8px;
  width: 50px;
  height: 60px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}

.container-meni .navbar .icon-bar i {
  background-color: #ffffff;
  height: 2px;
}

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

  .grid-cart-child {
    padding-left: 6%;
    padding-right: 6%;
    text-align: center;
  }

  .grid-cart-child-dos {
    padding-left: 10%;
    padding-right: 6%;
  }

  .container-meni {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .container-meni .logo {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .container-meni .navbar {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
  }

  .container-meni .navbar ul {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: fixed;
    left: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #ffffff;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
  }

  .container-meni .navbar ul li a {
    padding: 10px;
    font-size: 16px;
    height: auto;
    line-height: normal;
    color: #555555;
  }

  .container-meni .navbar ul .close {
    display: block;
    /* border: none; */
  }

  .container-meni .navbar ul .logo-res {
    display: block;
  }

  .container-meni .navbar .icon-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .container-meni .navbar ._Menus-show {
    left: 0;
    top: 0;
    /* background: red; */
    height: 100%;
    z-index: 1;
    text-align: center;
  }
}
/* end menu */
.card-timeline-veritcal {
  border-left: 2px solid #14608a;
}

.title-timeline-card {
  border: 1px solid #14608a;
border-radius: 50%;
height: 40px;
width: 40px;
text-align: center;
padding-top: 1%;
transform: translate(-50%, -40%);
background: #d8d8d8;
color: #14608a;

}
.p-timeline-card {
  transform: translate(8%, -90%);
}

.timeline-vertical {
  padding-top: 10%;
}

.uno-cctu {
  webkit-animation: slide-in-fwd-left 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-fwd-left 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-fwd-left {
  0% {
    -webkit-transform: translateZ(-1400px) translateX(-1000px);
            transform: translateZ(-1400px) translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-left {
  0% {
    -webkit-transform: translateZ(-1400px) translateX(-1000px);
            transform: translateZ(-1400px) translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}

.dos-cctu {
  -webkit-animation: slide-in-fwd-right 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-fwd-right 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.ani-cctu {
  -webkit-animation: slide-in-fwd-right 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-fwd-right 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-fwd-right {
  0% {
    -webkit-transform: translateZ(-1400px) translateX(1000px);
            transform: translateZ(-1400px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-right {
  0% {
    -webkit-transform: translateZ(-1400px) translateX(1000px);
            transform: translateZ(-1400px) translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0);
    opacity: 1;
  }
}

.imgprogram {
  -webkit-animation: slide-in-fwd-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-fwd-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
            transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
            transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
/* --------------------------------- */
.circle-container {
  position: relative;
  width: 300px; /* Ajusta el tamaño del contenedor según tus necesidades */
  height: 300px;
  margin: 50px auto; /* Ajusta los márgenes para centrar el gráfico */
  border-radius: 50%; /* Hace que el contenedor sea un círculo */
  background-color: transparent; /* Ajusta el color del fondo del círculo según tus preferencias */
  border: 0.15rem solid #979797;

  /* overflow: hidden; /* Asegura que los círculos que se salgan del círculo contenedor sean recortados */
}

.circle {
  position: absolute;
  width: 55px; /* Ajusta el tamaño de los círculos según tus necesidades */
  height: 55px;
  border-radius: 50%;
  transition: all 0.6s ease; /* Añadimos la transición al ancho */
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.circle-1 {
  top: 5%;
  left: 5%;
  background: #5b696b;
  text-align: center;
}

.circle-1:hover {
  height: 74px;
  width: 74px;
}

.circle-2 {
  top: 5%;
  right: 5%;
  background: #4a9b82;
  text-align: center;
}

.circle-2:hover {
  height: 74px;
  width: 74px;
}

.circle-3 {
  bottom: 5%;
  left: 5%;
  background: #134263;
  text-align: center;
}

.circle-3:hover {
  height: 74px;
  width: 74px;
}

.circle-4 {
  bottom: 5%;
  right: 5%;
  background: #26708b;
  text-align: center;
}

.circle-4:hover {
  height: 74px;
  width: 74px;
}

.center-circle {
  position: absolute;
  top: 36%;
  left: 35%;
  width: 174px; /* Ajusta el tamaño del círculo central según tus necesidades */
  height: 154px;
  margin-top: -40px; /* Ajusta el margen superior para centrar el círculo */
  margin-left: -40px; /* Ajusta el margen izquierdo para centrar el círculo */
  border-radius: 50%;
  background-color: transparent; /* Ajusta el color según tus preferencias */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.center-circle p {
  margin-top: 10px; /* Ajusta el margen superior para separar la imagen del texto */
  text-align: center; /* Centra el texto en el círculo */
}
/* --------------------------- */
.one-home-grid {
  transition: all 0.6s ease; /* Añadimos la transición al ancho */
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  font-size: 0.9em;
}

.two-home-grid {
  transition: all 0.6s ease; /* Añadimos la transición al ancho */
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  font-size: 0.9em;
}

.three-home-grid {
  transition: all 0.6s ease; /* Añadimos la transición al ancho */
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  font-size: 0.9em;
}

.four-home-grid {
  transition: all 0.6s ease; /* Añadimos la transición al ancho */
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  font-size: 0.9em;
}

/* ------------------------------------- */


.timeline-new {
  width: 400px; /* Ajusta el ancho según tus necesidades */
  margin: 50px auto;
  border-right: 2px solid #333;
  position: relative;
}

.event-tl {
  position: relative;
  padding: 10px 20px;
}

.circle-tl {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 20px;
}

.event-text-tl {
  margin-left: 40px;
}

/* Estilos adicionales para mejorar la apariencia */
.timeline-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #333;
  transform: translateX(-50%);
}

.timeline-new::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 45px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #333;
}

.event-tl:last-child {
  padding-bottom: 50px; /* Espacio extra al final para que la línea llegue hasta abajo */
}
/* ------------------------------------------------------ */
.timeline-red {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 95%;
  margin: 0 auto;
  position: relative;
  height: 60px;
}

.timeline-red::before {
  content: '';
  position: absolute;
  top: 150%;
  left: 16%;
  height: 2px;
  width: 65%;
  background-color: #14608a;
  z-index: 1;
}

.event-red {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
  z-index: 2;
}

.circle-red {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #14608a;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  background: #f1f1f1;
  text-align: center;
  color: #14608a;
}

.text-red {
  padding: 1% 6%;
  text-align: center;
  /* width: 80px; */
}
/* ----------------------------------------------------------------------------- */
.ttps {
  position: relative;
}

@media (min-width: 263px) {
  .img-leyenda {
    position:absolute;
    left:0;
    bottom: 50px;
    width: 280px;
  }
  .ttps {
    /* top: -60%; */
    transform: translate(10%, -60%);
  }
  .container-home {
    margin: 0 1% ;
  }
  .grid-contact-us-new {
    grid-template-columns: 1fr;
  }
  .vertical-line {
    display: none;
  }
  .grid-four-sd {
    grid-template-columns: 1fr;
  }
  .gfsdc-two {
    display: none;
  }
  .gfsdc-three {
    display: none;
  }
  .gfsdc-one {
    background: #00687c url('../img/Rectangle 2.jpg') center center/cover no-repeat;
  }
  .gfsdc-four {
    background: #00687c url('../img/Rectangle 1.jpg') center center/cover no-repeat;
  }
  .hero {
    height: 350px;
  }
}
@media (min-width: 463px) {
  .img-leyenda {
    position:absolute;
    left:0;
    bottom: 50px;
    width: 290px;
  }
  .ttps {
    /* top: -60%; */
    transform: translate(10%, -60%);
  }
  .container-home {
    margin: 0 0 ;
  }
  .grid-contact-us-new {
    grid-template-columns: 1fr;
  }
  .vertical-line {
    display: none;
  }
  .grid-four-sd {
    grid-template-columns: 1fr 1fr;
  }
  .gfsdc-two {
    display: block;
  }
  .gfsdc-three {
    display: block;
  }
  .gfsdc-one {
    background: #00687c;
  }
  .gfsdc-four {
    background: #00687c;
  }
  .hero {
    height: 280px;
  }
}

@media (min-width: 563px) {
  .img-leyenda {
    position:absolute;
    left:0;
    bottom: 50px;
    width: 290px;
  }
  .ttps {
    /* top: -50%; */
    transform: translate(10%, -50%);
  }
  .container-home {
    margin: 0 0 ;
  }
  .grid-contact-us-new {
    grid-template-columns: 1fr;
  }
  .vertical-line {
    display: none;
  }
  .grid-four-sd {
    grid-template-columns: 1fr 1fr;
  }
  /* .grid-kit-one {
      grid-template-columns: 1fr;
  } */
}

@media (min-width: 663px) {
  .img-leyenda {
    position:absolute;
    left:0;
    bottom: 50px;
    width: 310px;
  }
  .ttps {
    /* top: -45%; */
    transform: translate(10%, -45%);
  }
  .container-home {
    margin: 0 3% ;
  }
  .grid-contact-us-new {
    grid-template-columns: 1fr;
  }
  .vertical-line {
    display: none;
  }
  .grid-four-sd {
    grid-template-columns: 1fr 1fr;
  }
  .grid-kit-one {
      grid-template-columns: 1fr;
  }
  .grid-kit-two {
      grid-template-columns: 1fr;
  }
  .grid-kit-three {
      grid-template-columns: 1fr;
  }
  .grid-kit-four {
      grid-template-columns: 1fr;
  }
}

@media (min-width: 763px) {
  .img-leyenda {
    position:absolute;
    left:0;
    bottom: 50px;
    width: 320px;
  }
  .ttps {
    /* top: -40%; */
    transform: translate(5%, -40%);
  }
  .container-home {
    margin: 0 3% ;
  }
  .grid-contact-us-new {
    grid-template-columns: 50% 50%;
  }
  .vertical-line {
    display: block;
  }
  .grid-kit-one {
      grid-template-columns: 1fr;
  }
  .grid-kit-two {
      grid-template-columns: 1fr;
  }
  .grid-kit-three {
      grid-template-columns: 1fr;
  }
  .grid-kit-four {
      grid-template-columns: 1fr;
  }
}

@media (min-width: 863px) {
  .img-leyenda {
    position:absolute;
    left:0;
    bottom: 50px;
    width: 350px;
  }
  .ttps {
    /* top: -35%; */
    transform: translate(5%, -35%);
  }
  .container-home {
    margin: 0 3% ;
  }

  .grid-kit-one {
      grid-template-columns: 1fr;
  }

  .grid-kit-two {
      grid-template-columns: 1fr;
  }
  .grid-kit-three {
      grid-template-columns: 1fr;
  }
  .grid-kit-four {
      grid-template-columns: 1fr;
  }

}

@media (min-width: 963px) {
  .img-leyenda {
    position:absolute;
    left:0;
    bottom: 50px;
    width: 350px;
  }
  .ttps {
    /* top: -30%; */
    transform: translate(5%, -30%);
  }
  .container-home {
    margin: 0 3% ;
  }

    .grid-kit-one {
        grid-template-columns: 75% 25%;
    }
    .grid-kit-two {
        grid-template-columns: 25% 75%;
    }
    .grid-kit-three {
        grid-template-columns: 75% 25%;
    }
    .grid-kit-four {
        grid-template-columns: 25% 75%;
    }

}

@media (min-width: 1063px) {
  .img-leyenda {
    position:absolute;
    left:0;
    bottom: 50px;
    width: 400px;
  }
  .ttps {
    /* top: -25%; */
    transform: translate(5%, -25%);
  }
  .container-home {
    margin: 0 3% ;
  }
}

@media (min-width: 1064px) {
  .ttps {
    /* top: -2%; */
    transform: translate(-2%, -2%);
  }
  .container-home {
    margin: 0 3% ;
  }
}

.grid-map {
  position: relative;
  /* left: 4%; */
  margin: 1% 0%;

  /* display: grid; */
  /* justify-content: center; */
}

.grid-four-sd {
  display: grid;
  justify-content: space-around;
}

.gfsd-card {
  height: 250px;
}

.gfsdc-one {
  display: grid;
  /* align-content: end; */
  /* background: #00687c; */
  padding: 4%;
}

.gfsdc-two {
  background: #00687c url('../img/Rectangle 2.jpg') center center/cover no-repeat;
}

.gfsdc-three {
  background: #00687c url('../img/Rectangle 1.jpg') center center/cover no-repeat;
}

.gfsdc-four {
  display: grid;
  /* text-align: end; */
  /* background: #00687c; */
  padding: 4%;
}

.img-card-fsd {
    max-width: 100%;
    max-height: 100%;
}

.ancle {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gfsdc-one:hover > a.ancle {
  opacity: 1;
}

.gfsdc-four:hover > a.ancle {
  opacity: 1;
}

.hoare:hover > a.ancle {
  opacity: 1;
}

.grid-contact-us-new {
  display: grid;
  padding: 2% 2% 2% 2%;
  background: #ffffff;
  margin: 1.2% 3%;
  border-radius: 6px;
  position: relative;
}

.item-one-form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.item-one-form-card .item1 {
    grid-column: 1; /* Coloca el elemento 1 en la primera columna */
}

.item-one-form-card .item2 {
    text-align: end;
    grid-column: 2; /* Coloca el elemento 2 en la segunda columna */
}

.container-home {
  background: #ffffff;
  padding: 0% 2%;
  /* margin: 0% 3%; */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.hr-blue-home {
  border: 3px solid #135d86;
  opacity: 1;
}


/* Estilo para la línea vertical */
   .vertical-line {
       position: absolute;
       left: 50%; /* Posiciona la línea en el centro horizontal del contenedor */
       top: 8%; /* Posiciona la línea en la parte superior del contenedor */
       height: 80%; /* Altura de la línea igual a la del contenedor */
       border-left: 1px solid #135d86; /* Estilo y color de la línea vertical */
   }

.result-one {
  margin: 2% 8%;
  display: grid;
  /* grid-template-columns: 60% 40%; */
}



.card-result-data-text {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 4% 3%;
  background: #ffffff;
}

.card-result-data-img {
  /* background: #00687c url('../img/Rectangle 5.jpg'); */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  border-radius: 8px;
  background: radial-gradient(#00687c, transparent);
}


/* --------------------------- */
.grid-kit-one {
    display: grid;
    border: 1px solid;
    /* grid-template-columns: 80% 20%; */
    margin: 2% 6% 0 6%;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 8px;
}

.grid-kit-one-content{
  padding: 2% 2% 2% 2%;
}

.grid-kit-one-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  grid-gap: 20px;
}

.grid-kit-one-img {
  background: #00687c url('../img/Foto1_PersecunPenal.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}

/* ++++++++++++++++++++++++++++++++ */

.grid-kit-two {
    display: grid;
    border: 1px solid;
    /* grid-template-columns: 20% 80%; */
    margin: 2% 6% 0 6%;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 8px;
}

.grid-kit-two-content{
  padding: 2% 2% 2% 2%;
}

.grid-kit-two-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  grid-gap: 20px;
}

.grid-kit-two-img {
  background: #00687c url('../img/Foto2_ArtdeActores.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
}
/* --------------------------- */
.grid-kit-three {
    display: grid;
    border: 1px solid;
    /* grid-template-columns: 80% 20%; */
    margin: 2% 6% 0 6%;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 8px;
}

.grid-kit-three-content{
  padding: 2% 2% 2% 2%;
}

.grid-kit-three-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  grid-gap: 20px;
}

.grid-kit-three-img {
  background: #00687c url('../img/Foto3_MonitoreoyEval.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
}
/* ++++++++++++++++++++++++++++++++ */

.grid-kit-four {
    display: grid;
    border: 1px solid;
    /* grid-template-columns: 20% 80%; */
    margin: 2% 6% 0 6%;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 8px;
}

.grid-kit-four-content{
  padding: 2% 2% 2% 2%;
}

.grid-kit-four-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  grid-gap: 20px;
}

.grid-kit-four-img {
  background: #00687c url('../img/Foto4_EjeFortalCapHum.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.footer-icons-mov {
  text-align: right;
}

@media (max-width: 767px) {
  .footer-icons-mov {
    text-align: center;
  }
}

.mw-img-fl {
  max-width: 75px;
}


.stepst {
  width: 300px;
  margin: 0 auto;
  background: transparent;
}

.stept {
  display: flex;
  position: relative;
}

.stept.line::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  width: 2px;
  background-color: #14608a;
  height: 75%;
}

.infot {
  border: none;
  margin: 0 -10.2%;
  height: 60px;
}

.titlet {
  font-size: 16px;
  font-weight: 600;
  margin: 0 8px 6px;
  color: white;
  position: relative;
  left: 20px;
  color: #15618a;
}

.textt {
  font-size: 0.90rem;
  color: #232323;
  padding-bottom: 0;
  margin: 2% 2% 2% 8%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.numbert:hover + .infot .textt {
  opacity: 1; /* Mostramos el texto al hacer hover al cambiar la opacidad a 1 */
  visibility: visible; /* Hacemos que el texto sea visible al hacer hover */
}
.numbert:hover + .infot {
  height: auto;
  border: 2px solid #15618a;
  background: #f9fbfb;
}

.numbert {
  width: 32px;
  height: 32px;
  background-color: #f1f1f1;
  border-radius: 50%;
  border: 2px solid #14608a;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #14608a;
  font-size: 15px;
  font-weight: 600;
  margin-right: 14px;
  z-index: 1;
  cursor: pointer;
}

.numbert .completed {
  background-color: #007EA7;
}

/* ------------------------------- */


.carousel-test {
    width: 100%;
    max-width: 100%;
    height: 366px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(#00687c, transparent);
}

.carousel-slide-test {
    /* width: 100%; */
    /* display: none; */
    opacity: 0;
    transition: opacity 0.6s;
    position: absolute;
    left: 18%;
}

.carousel-slide-test.active {
    opacity: 1;
}

.carousel-slide-test img {
    /* width: 100%; */
    height: auto;
    /* object-fit: fill; */
    width: 550px;
}

/* Puedes agregar estilos adicionales según tus preferencias */

/* Estilos para los botones de navegación */
.prev-test, .next-test {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
}

.prev-test:hover, .next-test:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Estilos para los puntos de navegación */
.dot-container-test {
    text-align: center;
    top: 88%;
    position: relative;
}

.dot-test {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot-test.active {
    background-color: #717171;
}

.logo-text-home-footer {
  text-align: left;
}

@media (max-width: 767px) {
  .logo-text-home-footer {
    text-align: center;
  }
}

.mifi-x {
position: relative;
height: 300px;
overflow-y: overlay;
}
/* Establece el grosor y el color de la barra de desplazamiento */
.content-mifi-x::-webkit-scrollbar {
width: 6px;
}

.content-mifi-x::-webkit-scrollbar-thumb {
background-color: #00687C; /* Color de la barra de desplazamiento */
}

.content-mifi-x::-webkit-scrollbar-track {
background-color: #f0f0f0; /* Color del fondo de la barra de desplazamiento */
}
