/** Config */
/**
 * Colors used in the theme and their defaults based on the color palette.
 *
 * These colors are used throughout the theme and can be used in the
 * theme's CSS. The colors are divided into two sets, one for the
 * primary and one for the secondary. The primary colors are used
 * for the main elements of the site, while the secondary colors
 * are used for less important elements.
 */
/** Usage:
@include breakpoint(tablet) {}
@include breakpoint(min-width, 1192px) {}
@include between-breakpoints(sm, lg) {}
@include between-breakpoints-widths(0, 1024px) {}
**/
/* Background overlay */
/* Animation */
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes FadeInSlow {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes BounceIcon {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-60%);
  }
  50% {
    transform: translateY(0);
  }
  57% {
    transform: translateY(-3px);
  }
  64% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ShowFromBottom {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes ToBottom {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes HideToBottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes ElementBottom {
  0% {
    transform: translateY(90%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes animatePrevElement {
  0% {
    transform: translateX(0);
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes animateNextElement {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes ShowFromTopBounce {
  0% {
    transform: translateY(-100%);
  }
  85% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ShowFromBottomBounce {
  0% {
    transform: translateY(100%);
  }
  85% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}
.b-custom-grid-v2 {
  padding: 48px 0;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .b-custom-grid-v2 .container {
    padding-right: 0;
    height: 620px;
  }
}
.b-custom-grid-v2 .link-button .c-icon > svg {
  filter: brightness(100);
}
.b-custom-grid-v2_row {
  overflow: hidden;
}
.b-custom-grid-v2_row .desktop-grid {
  display: flex;
}
.b-custom-grid-v2_row .swiper-slide {
  margin: 0;
  border-radius: 16px;
}
.b-custom-grid-v2_row .swiper-slide .big-title {
  font-size: 36px;
  line-height: 40px;
}
.b-custom-grid-v2_row .swiper-slide:hover .c-image img {
  transform: scale(1.1);
}
.b-custom-grid-v2_row .swiper-slide:focus .c-image img {
  transform: scale(1.1);
}
.b-custom-grid-v2_row .swiper-slide.ht-auto {
  height: auto;
}
.b-custom-grid-v2_row .swiper-slide {
  flex: 0 0 auto;
  margin-right: 24px;
  width: calc((100% - 4.32px) / 1.18);
}
.b-custom-grid-v2_card {
  position: relative;
  text-decoration: none;
  height: 392px;
  min-width: 288px;
  margin: 0;
  overflow: hidden;
}
.b-custom-grid-v2_card_chip {
  position: absolute;
  top: 0;
  color: #090D10;
  background-color: #ffffff;
}
.b-custom-grid-v2_card_chip > .c-icon > svg {
  filter: brightness(0);
}
.b-custom-grid-v2_card__image,
.b-custom-grid-v2_card .c-image {
  position: relative;
  display: block;
  background-color: var(--aprende--secondary-200);
  height: 392px;
  min-width: 242px;
  overflow: hidden;
}
.b-custom-grid-v2_card__image img,
.b-custom-grid-v2_card .c-image img {
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  height: 392px;
  min-width: 242px;
  transition: transform 0.3s ease-in-out;
}
.b-custom-grid-v2_card__image::before,
.b-custom-grid-v2_card .c-image::before {
  border-radius: 16px;
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  right: 0;
  bottom: -1px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 7.28%, rgba(0, 0, 0, 0) 50.16%);
  z-index: 1;
}
.b-custom-grid-v2_card.none-clickeable {
  pointer-events: none;
}
.b-custom-grid-v2_card .c-button {
  pointer-events: none;
}
.b-custom-grid-v2_card .link-button a {
  font-size: 14px;
  line-height: 18px;
}
.b-custom-grid-v2_card-image-card-content {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  bottom: 0;
  padding: 16px;
  color: #ffffff;
  overflow: hidden;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.b-custom-grid-v2_card-image-card-image {
  min-width: 200px;
  height: 100%;
  background-color: var(--aprende--secondary-200);
  padding: 0;
}
.b-custom-grid-v2_card-image-card-image::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  right: 0;
  bottom: -2px;
  background: linear-gradient(180deg, rgba(27, 38, 49, 0) 15.1%, var(--aprende--secondary-700) 80.73%);
  z-index: 1;
}
.b-custom-grid-v2 .arrows-container {
  justify-content: start;
  gap: 16px;
}
.b-custom-grid-v2 .arrows-container > .swiper-pagination-container {
  width: 100px;
}
@media (max-width: 1279px) {
  .b-custom-grid-v2 .arrows-container > .swiper-pagination-container {
    left: 50%;
    transform: translateX(-50%);
  }
}
.b-custom-grid-v2 .arrows-container > .c-carousel {
  padding: 0;
}
.b-custom-grid-v2 .arrows-container > .c-carousel > .c-icon {
  padding: 12px;
}
.b-custom-grid-v2 .arrows-container > .c-carousel > .c-icon > svg {
  filter: brightness(0);
}
.b-custom-grid-v2__heading {
  width: 100%;
}
.b-custom-grid-v2__heading .subtitle p {
  font-size: inherit;
  line-height: inherit;
}
.b-custom-grid-v2 .c-image {
  border-radius: 16px;
}
.b-custom-grid-v2 .container-button {
  width: 100%;
}
@media (min-width: 1279px) {
  .b-custom-grid-v2 {
    padding: 60px 0;
  }
  .b-custom-grid-v2_container {
    width: 809px;
  }
  .b-custom-grid-v2 .aligment-left {
    display: flex;
  }
  .b-custom-grid-v2_row {
    width: 809px;
    position: relative;
  }
  .b-custom-grid-v2_row .desktop-grid {
    gap: 24px;
    justify-content: center;
  }
  .b-custom-grid-v2_row .desktop-d-none {
    display: none;
  }
  .b-custom-grid-v2_row .swiper-wrapper {
    height: auto;
  }
  .b-custom-grid-v2_row .swiper-slide {
    flex: 0 0 auto;
    margin-right: 24px;
    width: calc((100% - 40.008px) / 2.667);
  }
  .b-custom-grid-v2_card__image,
  .b-custom-grid-v2_card .c-image {
    height: 392px;
    min-width: 288px;
  }
  .b-custom-grid-v2_card__image img,
  .b-custom-grid-v2_card .c-image img {
    min-width: 288px;
  }
  .b-custom-grid-v2_card .c-button {
    font-size: 16px;
    line-height: 24px;
  }
  .b-custom-grid-v2_card .link-button a {
    font-size: 16px;
    line-height: 24px;
  }
  .b-custom-grid-v2__content-center {
    justify-content: center;
  }
  .b-custom-grid-v2__content-center .swiper-slide:last-child {
    margin-right: 0 !important;
  }
  .b-custom-grid-v2 [data-has-more-than-two=true] .swiper-button-next,
  .b-custom-grid-v2 [data-has-more-than-two=true] .swiper-button-prev {
    display: flex !important;
  }
  .b-custom-grid-v2 [data-has-more-than-two=true] .desktop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(1px, 288px));
  }
  .b-custom-grid-v2 .arrows-container {
    justify-content: flex-end;
    margin-top: 24px;
  }
  .b-custom-grid-v2 .arrows-container > .swiper-pagination-container {
    display: none;
  }
  .b-custom-grid-v2 .right-mask::before {
    content: "";
    position: absolute;
    display: block;
    width: 109px;
    height: 394px;
    right: 0;
    top: 0;
    bottom: -1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    z-index: 4;
    pointer-events: none;
  }
  .b-custom-grid-v2__heading {
    margin-bottom: 32px;
    padding-right: 0;
    margin-right: 24px;
  }
  .b-custom-grid-v2__heading .title,
  .b-custom-grid-v2__heading .subtitle {
    margin-right: 0;
  }
  .b-custom-grid-v2__heading .c-heading {
    margin-bottom: 24px;
  }
  .b-custom-grid-v2__heading .container-button {
    margin-top: 24px;
  }
  .b-custom-grid-v2 .container-button {
    width: 100%;
    margin-top: 24px;
  }
}

/*# sourceMappingURL=custom-grid-v2.css.map*/