.menu {
  background-color: #777777;
  color: #fff;
  height: 70px;
}

.menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 960px;
  height: 100%;
  margin: 0 auto;
}

.menu__links {
  height: 100%;
  transition: transform 0.5s;
  display: flex;
}

li.menu__item {
  list-style: none !important;
  position: relative;
  height: 100%;
  --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
  --transform: rotate(-90deg);
  list-style-type: none;
}

.menu__item:hover {
  --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  --transform: rotate(0);
}

.menu__link {
  color: #fff;
  text-decoration: none;
  padding: 0 30px;
  display: flex;
  height: 100%;
  align-items: center;
}

.menu__link:hover {
  background-color: #777777;
}

.menu__arrow {
  transform: var(--transform);
  transition: transform 0.3s;
  display: block;
  margin-left: 3px;
}

.menu__nesting {
  list-style: none;
  transition: -webkit-clip-path 0.3s;
  transition: clip-path 0.3s;
  transition: clip-path 0.3s, -webkit-clip-path 0.3s;
  -webkit-clip-path: var(--clip);
          clip-path: var(--clip);
  position: absolute;
  right: 0;
  bottom: 0;
  width: -moz-max-content;
  width: max-content;
  transform: translateY(100%);
  background-color: #777777;
}

.menu__link--inside {
  padding: 30px 100px 30px 20px;
}

.menu__link--inside:hover {
  background-color: #777777;
}

.menu__hamburguer {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  display: none;
}

.menu__logo {
  max-width: 250px;
  margin-top: 5px;
}

.menu__img {
  display: block;
  width: 36px;
}

.menu2 {
  position: fixed;
  width: 100%;
}

main {
  padding-top: 72px;
}

#img_logo {
  max-width: 400px;
}

.carousel-container {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 80px;
}

.carousel-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.logo-carousel {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding-top: 30px;
}

.carousel-track {
  display: flex;
  animation: scrollImages 40s linear infinite;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 160px;
  margin: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 4px;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.carousel-slide img:hover {
  transform: scale(1.05);
}

.texto-estudio p {
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  display: block;
  line-height: 1.6;
  max-width: 100%;
}

@keyframes scrollImages {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3800px);
  }
}
@media (max-width: 992px) {
  .carousel-slide {
    width: 140px;
    margin: 0 10px;
  }
  @keyframes scrollImages {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-3200px);
    }
  }
}
@media (max-width: 768px) {
  .carousel-container h2 {
    font-size: 1.5em;
  }
  .carousel-slide {
    width: 120px;
    margin: 0 10px;
  }
  @keyframes scrollImages {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-2800px);
    }
  }
}
@media (max-width: 576px) {
  .carousel-container h2 {
    font-size: 1.2em;
  }
  .carousel-slide {
    width: 100px;
    margin: 0 10px;
    height: 80px;
  }
  @keyframes scrollImages {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-2400px);
    }
  }
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
  left: -20px;
}

.carousel-button.next {
  right: -20px;
}

@media (max-width: 768px) {
  .carousel-button.prev {
    left: 5px;
  }
  .carousel-button.next {
    right: 5px;
  }
}
@media (max-width: 1060px) {
  .scroll-down {
    display: none;
  }
}
@media (max-width: 800px) {
  .menu__hamburguer {
    display: flex;
  }
  .menu__item {
    --clip: 0;
    overflow: hidden;
  }
  .menu__item--active {
    --transform: rotate(0);
  }
  .menu__item--active .menu__item--show {
    background-color: var(--background);
  }
  .menu__item--active .menu__links {
    position: fixed;
    max-width: 400px;
    width: 100%;
    top: 70px;
    bottom: 0;
    right: 0;
    background-color: #777777;
    overflow-y: auto;
    display: grid;
    grid-auto-rows: max-content;
    transform: translateX(100%);
  }
  .menu__item--active .menu__links--show {
    transform: unset;
    width: 100%;
  }
  .menu__item--active .menu__link {
    padding: 25px 0;
    padding-left: 30px;
    height: auto;
  }
  .menu__item--active .menu__arrow {
    margin-left: auto;
    margin-right: 20px;
  }
  .menu__item--active .menu__nesting {
    display: grid;
    position: unset;
    width: 100%;
    transform: translateY(0);
    height: 0;
    transition: height 0.3s;
  }
  .menu__item--active .menu__link--inside {
    width: 90%;
    margin-left: auto;
    border-left: 1px solid #798499;
  }
  .menu__item--active .menu__logo {
    max-width: 250px;
    margin-top: 13px;
  }
}
@media (max-width: 800px) and (max-width: 767px) {
  div.section-background-2 {
    height: 815px;
  }
}
.counter-num {
  font-size: 2em;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.progress-bar-container {
  position: relative;
  width: 100%;
  background-color: #b0b0b0;
  border-radius: 20px;
  height: 20px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  height: 100%;
  background-color: #ffffff;
  width: 0%;
  transition: width 2s ease-in-out;
}

.icon {
  background-color: #ffffff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.6s ease;
}

.icon.active {
  opacity: 1;
  transform: scale(1);
  background-color: #6c757d;
  border-radius: 10px;
}/*# sourceMappingURL=estilos.css.map */