/*

  Banner

============================================================================= */

#banner {
  position: relative;
  padding-top: 5rem;
  height: 31.875rem;
  overflow: hidden;
}

#banner .title-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  min-height: 8.125rem;
  padding: 0 3rem 0 3rem;
}
.linkedin-light{
    background: #FFF;
    width: auto;
    height: auto;
    display: flex;
    padding: 8px;
    border-radius: 4px;
}
.linkedin-light img {
  width: 80px;
}

@media (max-width: 47.99875rem) {

  #banner {
    padding-top: 3rem;
  }

  #banner .title-wrapper {
    font-size: 2.5rem;
    padding: 0 0.5rem 0 0.5rem;
  }
}

#banner .title-wrapper h1,
#banner .title-wrapper h1 p {
  font-family: var(--font-secondary);
  font-weight: bold;
  font-size: 40px;
  color: #323d4d;
  line-height: 120% !important;
}
/*
#banner .title-wrapper h1 p {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

#banner .title-wrapper h1 strong {
  color: var(--color-secondary);
  font-weight: inherit;
}
*/
@media (max-width: 47.99875rem) {

  #banner .title-wrapper h1 {
    font-size: 2rem;
  }

  #banner .title-wrapper p {
    display: inline;
    margin: 0;
    padding: 0;
  }

  #banner .row.subtitle {

    align-items: center;
  }
}

#banner .subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.375rem;
  padding: 0 3rem 0 3rem;
  max-width: 780px;
  text-align: center;
}

@media (max-width: 47.99875rem) {
  #banner .subtitle-wrapper {
    padding: 4.5rem 3rem 0 3rem;
  }
}

#banner .subtitle-wrapper h2,
#banner .subtitle-wrapper h2 p {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  color: #323d4d;
}

@media (max-width: 47.99875rem) {

  #banner .subtitle-wrapper {
    padding: 1rem 0.5rem 0 0.5rem;
  }

  #banner .subtitle-wrapper h2 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.3rem;
    text-align: center;
  }
}

#banner .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.5rem;
}

#banner .button-wrapper a.button{
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 200px;
  height: 44px;
  border-radius: 4px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  font-family: var(--font-secondary);
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  padding: 24px;
}
@media (max-width: 47.99875rem) {

  #banner .button-wrapper a.button {
    position: absolute;
    bottom: 5rem;
    width: 50%;
  }
}

@media (max-width: 35.999rem) {

  #banner .button-wrapper a.button {
    width: 90%;
  }
}


#banner .indicator-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 4.375rem;
}

#banner .indicator-wrapper ul.indicator {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 47.99875rem) {

  #banner .indicator-wrapper ul.indicator {
    position: absolute;
    bottom: 1.5rem;
    padding: 0;
    width: 100%;
  }
}

#banner .indicator-wrapper ul li {
  width: 16px;
  height: 16px;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
  background-color: #acb7ce;
  cursor: pointer;
  border-radius: 4px;
}

@media (max-width: 47.99875rem) {
  #banner .indicator-wrapper ul li {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 1.5rem;
  }
}

#banner .indicator-wrapper ul li.active {
  background-color: var(--color-seven);
}

/*  Slides
------------------------------------- */


#banner .slide.animated {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;

  /* animation styles */
  transition: opacity 3s, transform 1.5s;
  opacity: 0;
  transform: translateX(-100%);
}

#banner .slide.animated__slidein {
  opacity: 1;
  transform: translateX(0);
}

#banner .slide.animated__slideout {
  opacity: 0;
  transform: translateX(100%);
}

/*

  Content

============================================================================= */

#content section.row {
  margin: 0;
}

/*  Section: Startup Perú 12G
------------------------------------- */

.startup-peru {
    background: #ebedf9;
    padding-top: 90px;
    padding-bottom: 100px;
}

.startup-peru h2 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 80px;
}

.startup-peru .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.startup-peru .logo-container img {
    height: 80px;
}

/* Mobile Carousel Styles */

.startup-peru .logo-carousel {
    display: none;
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.startup-peru .logo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.startup-peru .logo-slide.active {
    opacity: 1;
}

.startup-peru .carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}


@media (max-width: 768px) {
    .startup-peru h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .startup-peru .logo-container {
        display: none;
    }
    
    .startup-peru .logo-carousel {
        display: block;
    }
    
    .startup-peru .logo-carousel img {
        height: 65px;
    }
}

@media (max-width: 390px) {
    .startup-peru .logo-carousel img {
        width: 100%;
        height: unset;
    }
}


/*  Section: certificates carousel
------------------------------------- */

#content section.certificates-carousel {
  margin-bottom: 7rem;
}

@media (min-width: 992px) {
  #content section.certificates-carousel .left.arrow,
  #content section.certificates-carousel .right.arrow {
    display: none;
  }
}

@media (max-width: 47.99875rem) {
  #content section.certificates-carousel {
    margin-bottom: 2rem;
  }
}

#content section.certificates-carousel .title-wrapper {
  margin-top: 4.375rem;
  height: 6.875rem;
}

@media (max-width: 47.99875rem) {
  #content section.certificates-carousel .title-wrapper {
    margin-top: 2rem;
    margin-bottom: 3rem;
    height: 3rem;
  }
}

#content section.certificates-carousel .certificate {
  position: relative;
  height: 10rem;
}

#content section.certificates-carousel .certificate img.logo {
  max-width: 70%;
}

#content section.certificates-carousel .certificate img.flag {
  position: absolute;
  width: 2.5rem;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin: auto;
}

#splide01-list {
  padding-bottom: 2rem !important;
}

@media (max-width: 450px) {
  .certificates-carousel .subtitle {
    display: none;
  }
}


/*  Section: courses
------------------------------------- */

#content section.courses {
  position: relative;
}

#content section.courses .courses-wrapper {
  height: 38rem;
  overflow: hidden;
  transition: all 1s;
}

#content section.courses .courses-wrapper.full {
  height: unset;
}
.slogan-button{
  margin: 2rem 0 0 0;
}
.courses{
  padding: 3rem 0;
}
#content section.courses .bg {
  position: absolute;
  width: 100%;
  height: 30rem;
  top: 0;
  left: 0;
  background: #ebedf9;
  z-index: -1;
}

#content section.courses h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 47.99875rem) {

  #content section.courses .sector-publico-tab {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }

  #content section.courses .sector-privado-tab {
    font-size: 0.8rem;
    line-height: 0.8rem;
  }
}



#content section.courses .buttons {
  display: flex;
  align-items: center;
}


/*  Section: teachers
------------------------------------- */

#content section.teachers {
  height: 44.5625rem;
  padding-top: 2.625rem;
  color: white;
  background-color: var(--color-primary);
}

#content section.teachers .title-wrapper {
  height: 4.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#content section.teachers .carousel-wrapper {
  height: 33.125rem;
}

#content section.teachers .teacher {
  padding: 2.5rem 1rem 1rem 1rem;
  align-items: center;
}

#content section.teachers .teacher figure img {
  height: 16.25rem;
  margin-bottom: 1rem;
}

#content section.teachers .teacher .name {
  display: block;
  margin-bottom: 1rem;
}

#content section.teachers .teacher .description p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.2rem;
  text-align: center;
}


/*  Section: about us
------------------------------------- */

.features{
  width: 85%;
  margin: 0 auto 2rem;
}
.features-cnt{
  margin: 0;
}
.features h2{
  text-align: center;
}
.features-title{
  margin-bottom: 4rem !important;
}

section.features .feature.title-wrapper{
  padding-top:  1rem;
}
.about-us .description-wrapper h2, .certificates .description-wrapper h2, .methodology .description-wrapper h2{
  margin: 0 0 2rem 0;
  text-align: left;
}

.about-us .title-1{
  text-align: center;
  margin: 5rem 0;
}
.about-us, .certificates{
  margin: 0 auto 6rem auto;
}
.methodology{
  margin: 0 auto 3rem auto;
}
.about-us figure, .certificates figure, .methodology figure{
  margin: 0;
}
.about-us .description-wrapper, .certificates .description-wrapper, .methodology .description-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-us .description-wrapper, .methodology .description-wrapper{
  margin: 0 3rem 0 0;
}
.certificates .description-wrapper{
  margin: 0 0 0 3rem;
}

#content section.about-us .description-wrapper h2.title-1 {
  height: 4rem;
}



/*  Section: certificates
------------------------------------- */

#content section.certificates {

}


#content section.certificates .description-wrapper h2.title-1 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}


@media (max-width: 991px) {
  .about-us, .certificates{
    margin: 0 0 5rem 0;
  }
  .about-us .title-1{
    margin: 4rem 0;
    font-size: 2.25rem;
  }
  .about-us .description-wrapper h2, .certificates .description-wrapper h2, .methodology .description-wrapper h2{
    font-size: 1.7rem;
    text-align: center;
    margin: 0 0 1rem 0;
  }
  .about-us .description-wrapper p, .certificates .description-wrapper p, .methodology .description-wrapper p{
    font-size: 1rem;
    text-align: center;
  }
  .certificates .row{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .about-us .description-wrapper, .methodology .description-wrapper, .certificates .description-wrapper{
    width: 70%;
  }
  .about-us .description-wrapper, .methodology .description-wrapper{
    margin: 0 0 2rem 0;
  }
  .certificates .description-wrapper{
    margin: 0 0 2rem 0;
  }

}
@media (max-width: 767px) {
  .about-us .title-1{
    font-size: 2rem;
    margin: 3rem 0;
  }
}
@media (max-width: 480px) {
  .about-us .description-wrapper, .methodology .description-wrapper, .certificates .description-wrapper{
    width: 90%;
  }
}

/*  Section: methodology
------------------------------------- */



@media (max-width: 47.99875rem) {
  #content section.methodology .description-wrapper h2 {
    height: auto;
    justify-content: center;
    text-align: center;
  }
}



/*  Section: networking carousel
------------------------------------- */

#content section.networking-carousel {
  height: 30rem;
  background-color: #ebedf9;
}

@media (max-width: 47.99875rem) {
  #content section.networking-carousel {
    height: auto;
  }
}

#content section.networking-carousel .title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  height: 4.375rem;
  text-align: center;
}

#content section.networking-carousel .carousel-wrapper {
  height: 20rem;
}

@media (max-width: 47.99875rem) {
  #content section.networking-carousel .carousel-wrapper {
    height: 17rem;
  }
}

#content section.networking-carousel .carousel-wrapper .splide__slide {
  transform: scale(0.8);
  transition: transform 500ms;
}

#content section.networking-carousel .carousel-wrapper .splide__slide.center {
  transform: scale(1);
}


#content section.networking-carousel .carousel-wrapper .card {
  width: 95%;
}

@media (max-width: 47.99875rem) {
  #content section.networking-carousel .carousel-wrapper .card {
    text-align: center;
  }
}

#content section.networking-carousel .carousel-wrapper .card img.flag {
  width: 1.5rem;
}

#content section.networking-carousel .carousel-wrapper figure {
  position: relative;
  margin-top: 0.7rem;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  border-radius: 50%;
}

#content section.networking-carousel .carousel-wrapper figure img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*  Section: slogan
------------------------------------- */

#content section.slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15rem;
  text-align: center;
}

@media (max-width: 47.99875rem) {
  #content section.slogan {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .features{
    width: 100%;
  }
  .features-title{
    margin-bottom: 2.5rem !important;
  }
}
