/** 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) {}
**/
.no-scroll {
  overflow-y: hidden;
}

@media (min-width: 1100px) {
  header .header-container {
    max-width: 100%;
    margin: 0 auto;
    font-size: initial;
    font-weight: initial;
    line-height: initial;
  }
}
@media (min-width: 1100px) and (max-width: 1365px) {
  header .header-container {
    max-width: 1280px;
  }
}
@media (min-width: 1100px) and (min-width: 1366px) {
  header .header-container {
    max-width: 1366px;
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu {
    height: 70px;
    flex-shrink: 0;
    overflow-y: hidden;
    padding-left: 24px;
  }
}
@media (min-width: 1100px) and (max-width: 1100px) {
  header .header-mega-menu {
    display: none;
  }
}
@media (min-width: 1100px) and (max-width: 1279px) {
  header .header-mega-menu {
    flex-shrink: 1;
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu_outer-container {
    width: 100vw;
    height: fit-content;
    max-height: 650px;
    background: linear-gradient(to right, #ffffff 70%, var(--aprende--tertiary-100) 30%);
  }
  header .header-mega-menu_inner-container {
    padding-right: 0 !important;
    padding-left: 24px;
  }
  header .header-mega-menu_main-link .c-icon,
  header .header-mega-menu_main-link span {
    transform: translateY(-3px);
  }
  header .header-mega-menu_main-item:hover {
    font-weight: 600;
  }
  header .header-mega-menu_main-item .c-icon {
    transition: transform 0.5s ease;
  }
  header .header-mega-menu_main-item.selected {
    font-weight: 600;
  }
  header .header-mega-menu_main-item.selected a {
    border-top: 2px solid var(--aprende--primary-900);
    padding-top: 24px;
  }
  header .header-mega-menu_main-item.selected a .c-icon {
    transform: rotate(180deg);
    height: 24px;
    width: 24px;
  }
  header .header-mega-menu_main-item.selected a .c-icon svg g path {
    fill: var(--aprende--primary-900) !important;
  }
  header .header-mega-menu_main-item:not(.selected) a {
    border-top: 2px solid #ffffff;
  }
  header .header-mega-menu_main-item:not(.selected) a .c.icon {
    background-color: var(--aprende--secondary-700);
    height: 24px;
    width: 24px;
  }
  header .header-mega-menu_main-item a {
    text-decoration: none;
  }
  header .header-mega-menu_main-item.menu_empty a::after {
    display: none;
  }
  header .header-mega-menu_item-button {
    min-width: 100%;
  }
  header .header-mega-menu_sub-item-button {
    min-width: 100%;
  }
  header .header-mega-menu_wrapper {
    display: flex;
    gap: 8px;
  }
  header .header-mega-menu_wrapper .header-mega-menu_item:not(:first-child) {
    margin-top: 12px;
  }
  header .header-mega-menu_item-container {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    width: 100vw;
    height: 100vh;
  }
  header .header-mega-menu_item-container.active {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    color: var(--aprende--secondary-600);
    background: rgba(51, 51, 51, 0.75);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: 0 6px 12px 0 rgba(9, 13, 16, 0.16);
  }
}
@media (min-width: 1100px) and (max-width: 1280px) {
  header .header-mega-menu_item-container.active {
    height: calc(100vh + 500px);
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu_item-container:not(.active) {
    display: none;
  }
  header .header-mega-menu_item-container:not(.active) .header-mega-menu_item, header .header-mega-menu_item-container:not(.active) .header-mega-menu_sub-item-container {
    display: none;
  }
  header .header-mega-menu_item-container a {
    text-decoration: none;
  }
  header .header-mega-menu_item-container-wrapper.menu-item-wrapper {
    overflow: hidden;
  }
}
@media (min-width: 1100px) and (min-width: 0) and (max-width: 1279px) {
  header .header-mega-menu_item-container-wrapper.menu-item-wrapper {
    min-width: auto;
  }
}
@media (min-width: 1100px) and (min-width: 1280px) {
  header .header-mega-menu_item-container-wrapper.menu-item-wrapper {
    width: 292px;
  }
}
@media (min-width: 1100px) and (min-width: 1366px) {
  header .header-mega-menu_item-container-wrapper.menu-item-wrapper {
    width: 335px;
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu_item-container-wrapper.menu-item-wrapper.border-animated {
    animation: inOutAnimation 0.8s ease-in-out;
    border-right: 1px solid var(--aprende--secondary-200);
  }
  header .header-mega-menu_item-container-wrapper.menu-item-wrapper .header-mega-menu_item {
    padding: 16px 12px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  header .header-mega-menu_item-container-wrapper.menu-item-wrapper .header-mega-menu_item:hover {
    background-color: var(--aprende--tertiary-100);
    border-radius: 8px;
    font-weight: 600;
  }
  header .header-mega-menu_item-container-wrapper.menu-item-wrapper .header-mega-menu_item-heading {
    color: var(--aprende--secondary-600);
    padding-bottom: 16px;
  }
  header .header-mega-menu_item-container-wrapper.menu-sub-item-wrapper {
    overflow: hidden;
  }
}
@media (min-width: 1100px) and (min-width: 0) and (max-width: 1279px) {
  header .header-mega-menu_item-container-wrapper.menu-sub-item-wrapper {
    width: 100%;
    min-width: 550px;
  }
}
@media (min-width: 1100px) and (min-width: 1280px) {
  header .header-mega-menu_item-container-wrapper.menu-sub-item-wrapper {
    width: 600px;
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu_item-container-wrapper.menu-sub-item-wrapper .menu-sub-item_heading {
    width: 100%;
  }
  header .header-mega-menu_item-container-wrapper.menu-sub-item-wrapper .menu-sub-item_heading.border-animated {
    animation: inOutAnimation 0.8s ease-in-out;
    border-bottom: solid 1px var(--aprende--secondary-200);
  }
  header .header-mega-menu_item-container-wrapper.menu-sub-item-wrapper .menu-sub-item_content {
    width: 100%;
    height: 100%;
  }
  header .header-mega-menu_item-container-wrapper.menu-sub-item-wrapper .menu-sub-item_list {
    display: grid;
    align-items: flex-start;
    width: 100%;
    grid-template-columns: 1fr;
    column-gap: 24px;
    row-gap: 4px;
    margin: 16px 0 12px 0;
  }
}
@media (min-width: 1100px) and (min-width: 1200px) {
  header .header-mega-menu_item-container-wrapper.menu-sub-item-wrapper .menu-sub-item_list {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (min-width: 1100px) and (min-width: 1280px) {
  header .header-mega-menu_item-container-wrapper.menu-sub-item-wrapper .menu-sub-item_list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper {
    padding: 32px 24px 0 24px;
    background-color: var(--aprende--tertiary-100);
  }
}
@media (min-width: 1100px) and (max-width: 1279px) {
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper {
    min-width: 300px;
    width: 100%;
  }
}
@media (min-width: 1100px) and (min-width: 1280px) {
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper {
    padding: 32px 24px 0 24px;
    width: 316px;
  }
}
@media (min-width: 1100px) and (min-width: 1367px) {
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper {
    min-width: 359px;
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper .menu-additional-item_heading {
    margin-bottom: 24px;
  }
}
@media (min-width: 1100px) and (max-width: 1365px) {
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper .menu-additional-item_content {
    width: 100%;
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper .menu-additional-item_content:not(:last-child) {
    margin-bottom: 24px;
  }
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper .menu-additional-item_content-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper .menu-additional-item_content-image .c-image {
    width: 100%;
    height: 100%;
  }
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper .menu-additional-item_content-image .c-image img {
    object-fit: cover;
    border-radius: 8px;
  }
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper .menu-additional-item_content-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  header .header-mega-menu_item-container-wrapper.menu-additional-item-wrapper .menu-additional-item_content-text a {
    text-decoration: underline;
  }
}
@media (min-width: 1100px) and (min-width: 0) and (max-width: 1279px) {
  header .header-mega-menu_item-container-wrapper.column-first {
    min-width: 300px;
  }
}
@media (min-width: 1100px) and (min-width: 0) and (max-width: 1279px) {
  header .header-mega-menu_item-container-wrapper.column-second {
    min-width: auto;
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu_item-container-wrapper.column-second .column-second_item {
    cursor: pointer;
    width: 100%;
  }
  header .header-mega-menu_item-container-wrapper.column-second .column-second_item:hover {
    background-color: var(--aprende--tertiary-100);
    border-radius: 8px;
  }
}
@media (min-width: 1100px) and (min-width: 0) and (max-width: 1279px) {
  header .header-mega-menu_item-container-wrapper.column-third {
    min-width: auto;
  }
}
@media (min-width: 1100px) {
  header .header-mega-menu_item-container-wrapper.column-third .column-third_image.square .image-mask {
    height: 100px;
    padding: 0;
  }
  header .header-mega-menu_item-container-wrapper.column-third .column-third_image.square img {
    width: 100%;
    height: 100%;
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
  }
  header .header-mega-menu_item-container-wrapper.column-third .column-third_image.horizontal {
    margin-bottom: 32px;
  }
  header .header-mega-menu_item-container-wrapper.column-third .column-third_image.horizontal img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
  }
  header .header-mega-menu_sub-item {
    width: 100%;
  }
  header .header-mega-menu_sub-item-container {
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  header .header-mega-menu_sub-item-links {
    background-color: transparent;
  }
  header .header-mega-menu_sub-item-links a {
    display: block;
    width: 100%;
    font-weight: 400;
    color: var(--aprende--secondary-600);
    transition: all 0.3s ease-in-out;
  }
  header .header-mega-menu_sub-item-links:hover {
    border-radius: 8px;
    background: var(--aprende--tertiary-100);
  }
  header .header-mega-menu_item {
    color: var(--aprende--secondary-600);
  }
  header .header-mega-menu_item:not(:last-child) {
    margin-bottom: 2px;
  }
  header .header-mega-menu_item.current {
    border-radius: 8px;
    background: var(--aprende--tertiary-100);
    font-weight: 600;
  }
  header .header-mega-menu_item:not(.current) {
    color: var(--aprende--secondary-600);
    background-color: transparent;
  }
  header .header-mega-menu_item span {
    display: block;
  }
  header .header-mega-menu_item .c-image img {
    width: 40px;
    object-fit: contain;
    margin-right: 15px;
  }
  header .header-mega-menu_item-heading, header .header-mega-menu_sub-item-heading {
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .header-mega-menu_links-container {
    overflow: hidden;
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .header-mega-menu_item-button, header .header-mega-menu_sub-item-button {
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .header .c-divider {
    height: 46px;
  }
  @keyframes inOutAnimation {
    0% {
      transform: translate(25%);
      opacity: 0;
    }
    100% {
      transform: translate(0);
      opacity: 1;
    }
  }
  header .menu-additional-item_heading {
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .menu-additional-item_content {
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .column-second {
    overflow: hidden;
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .column-first {
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .column-third_heading-title {
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .column-third_heading-description {
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .column-third_image {
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .menu-sub-item_list {
    animation: inOutAnimation 0.8s ease-in-out;
  }
  header .btn-b2b {
    white-space: nowrap;
  }
  header .header-mega-menu + .menu_box { /* stylelint-disable-line */
    display: none;
  }
}

/*# sourceMappingURL=megamenu.css.map*/