
/* --- header.css --- */
header:not(:has(+ .banner-splide)) {
    margin-top: 24px;
}

.header__logo {
    width: 135px;
    height: 41px;
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.wizard-header-menu{
    display: flex;       
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.wizard-header-menu li a, .wizard-header-submenu-toggle, .wizard-header-submenu li a{
    color: var(--dark-blue-100);
    white-space: nowrap;
}

.wizard-header-menu li a:hover, .wizard-header-submenu-toggle:hover{
    color: var(--pure-red-40);
}

.wizard-header-submenu li {
    padding: 12px calc(var(--spacing) * 8);
    border-bottom: 1px solid var(--off-white);
    width: 100%;

}

.wizard-header-submenu li:hover{
    background-color: var(--off-white);
}

.wizard-header-submenu li:hover a{
    color: var(--dark-blue-100);
}

.wizard-header-menu li a.header-active-link{
    color: var(--pure-red-40);
    font-weight: 600;
}

.mobile-btn-toggle span{
    font-size: 40px;
    color: var(--dark-blue-100);
}

.wizard-header-submenu-toggle{
    cursor: pointer;
}

.wizard-header-submenu{
    display: none;
    width: fit-content;
    flex-direction: column;
    position: absolute;
    z-index: 3;
    background-color: white;
    top: 105%;
    right: 0;
}

.wizard-header-submenu-container{
    position: relative;
}

.active-menu{
    display: flex !important;
    animation: fade-in .3s forwards;
}

@media (max-width: 60rem){    
    .wizard-header-menu{
        display: none;       
        flex-direction: column;
        position: absolute;
        z-index: 3;
        background-color: white;
        width: 100%;
        top: 105%;
        right: 0;
        gap: 0;
    }

    .wizard-header-submenu{
        position: relative;
        width: 100%;
        background-color: white;
        gap: 0;
    }

    .wizard-header-menu li, .wizard-header-submenu li{
        padding: 16px;
        border-bottom: 1px solid var(--off-white);
        width: 100%;
    }

    .wizard-header-menu li:last-child, .wizard-header-submenu li:last-child{
        border: none;
    }

    .wizard-header-submenu-container{
        width: 100%;
    }
    
}


@media (max-width:768px) {
    header {
        margin-top: 15px;
    }
    
    .super__bar {
        display: none;
    }
}

.super__bar h1{
    font-size: var(--text-xs);
    line-height: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 53%;
    white-space: nowrap;
}

/* --- banner.css --- */
.banner-splide {
  background: url("http://dev-wizard.wizard.com.br/wp-content/themes/pearsonwebsites/enterprise/wizard/assets/img/bg-banner.jpg") bottom center no-repeat var(--dark-blue-100);
  background-size:cover;
  padding: 65px 20px;
}

.banner__center {
  margin: auto;
  max-width: 1366px;
}

.banner-splide .splide__list {
  height: 524px;
}

.banner-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: calc(var(--spacing) * 20);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.banner-background{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-background img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-title {
  font-size: 2.75rem;
  line-height: 2.75rem;
  font-weight: 800;
  font-style: oblique;
  text-transform: uppercase;
  text-shadow: 0px 1px 15px #00000082;
}

.banner-title.text-dark,
.banner-description.text-dark {
  color: var(--dark-blue-100);
}

.banner-title.text-light,
.banner-description.text-light {
  color: white;
}

.banner-description {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--dark-blue-100);
  padding: 1rem 0 2rem 0;
  text-shadow: 0px 1px 15px #00000082;
}

@media (max-width: 60rem) {
  .banner-splide {
    margin-top: 20px !important;
  }

  .banner-item {
    padding: calc(var(--spacing) * 10);
    justify-content: flex-start;
  }

  .banner-title {
    font-size: 2.25rem;
    line-height: 2.25rem;
  }

  .banner-description {
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 1rem 0;
  }
}


/* --- english-section.css --- */
section.english__section {
    margin: 60px 0;
    color: var(--dark-blue-100);
}

section.english__section .container {
    max-width: 1170px;
    border-radius: 25px;
    display: flex;
    gap: 30px;
    flex-direction: column;
}

section.english__section .english__section-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-blue-100);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-style: italic;
}

section.english__section p:not(:last-child) {
    margin-bottom: 30px;
}

section.english__section .english__section_first {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

section.english__section .english__section_first img {
    border-radius: 25px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

section.english__section .english__section_first .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.english__section .english__section_secound {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

section.english__section .english__section_secound-block {
    background: #fff;
    padding: 58px 24px;
    border-radius: 25px;
}

section.english__section .english__section_secound-block p {
    margin-bottom: 40px;
}

section.english__section .english__section_secound-block a.english__section_cta {
    background: var(--dark-blue-100);
    color: #fff;
    padding: 10px 30px;
    border-radius: 40px;
    display: flex;
    width: max-content;
    position: relative;
}


@media all and (max-width: 768px) {

    section.english__section .english__section_first,
    section.english__section .english__section_secound {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 15px;
    }

    section.english__section .english__section_first img {
        border-radius: 15px;
    }

    section.english__section .english__section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    section.english__section p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    section.english__section .english__section_secound-block a {
        font-size: 16px;
        line-height: 20px;
    }

    section.english__section .english__section_secound-block a:after {
        top: 5px;
    }
}

/* --- language-courses.css --- */
section.language_courses {
    padding: 90px 0;
    display: block;
    width: 100%;
    overflow: hidden;
    background: var(--dark-blue-100);
}

section.language_courses .language_courses__title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    font-style: italic;
    text-transform: uppercase;
}

section.language_courses .language_courses__subtitle {
    margin-bottom: 60px;
    color:#fff;
}

section.language_courses .language_courses__item {
    max-width: 467px;
    width: 467px;
    border-radius: 12px;
    background: var(--dark-blue-100);
    padding:40px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    height: 100%;
}

section.language_courses .language_courses__item.espanhol { background: #E70022; }
section.language_courses .language_courses__item.ingles { background: #36408566; }
section.language_courses .language_courses__item.frances { background: #01A7EF; }
section.language_courses .language_courses__item.alemao { background: #FFBA00; }
section.language_courses .language_courses__item.chines { background: #E70022; }
section.language_courses .language_courses__item.japones { background: #E70022; }
section.language_courses .language_courses__item.italiano { background: #00931C; }
section.language_courses .language_courses__item.portugues { background: #FFBA00; }

section.language_courses .language_courses__item img {
    min-width: 75px;
    min-height: 75px;
    max-width: 75px;
    max-height: 75px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

section.language_courses .splide__track {
    overflow: visible;
}

section.language_courses .language_courses__item-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}


@media all and (max-width: 768px ) {
    section.language_courses .container {
        max-width: 90%;
    }

    section.language_courses .language_courses__item {
        max-width: 80vw;
    }

    section.language_courses .language_courses__item img {
        min-width: 45px;
        min-height: 45px;
        max-width: 45px;
        max-height: 45px;
    }

    section.language_courses .language_courses__item p {
        font-size: 12px;
    }
}

/* --- bignumbers.css --- */
section.bignumbers {
    padding: 60px 0;
    background: url("http://dev-wizard.wizard.com.br/wp-content/themes/pearsonwebsites/enterprise/wizard/assets/img/bg-bignumbers.jpg") top center no-repeat var(--dark-blue-100);
    background-size: cover;
}

section.bignumbers .container {
    max-width: 1170px;
    border-radius: 25px;
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: space-between;
}

section.bignumbers .bignumbers__right {
    flex: 1;
    order: 2;
}

section.bignumbers img {
    border-radius: 25px;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

section.bignumbers .bignumbers__left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 50%;
    order: 1;
}

section.bignumbers .bignumbers__left .bloco {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: var(--off-white);
    border-radius: 16px;
    padding: 15px;
}

section.bignumbers .bignumbers__number {
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-style: italic;
    color: var(--pure-red-100);
}

section.bignumbers .bloco p {
    font-size: 18px;
    line-height: 24px;
}

@media all and (max-width: 768px) {
    section.bignumbers .container {
        padding: 25px;
        flex-direction: column;
    }

    section.bignumbers .bignumbers__right {
        order: 1;
    }

    section.bignumbers img {
        border-radius: 10px;
    }

    section.bignumbers .bignumbers__left {
        max-width: 100%;
        order: 2;
        gap: 15px;
    }

    section.bignumbers .bignumbers__left .bloco {
        padding: 30px 10px;
        border-radius: 10px;
    }

    section.bignumbers .bignumbers__number {
        font-size: 24px;
    }

    section.bignumbers .bloco p {
        font-size: 12px;
        line-height: 16px;
    }
}

/* --- testimonials.css --- */
section.testimonials {
    padding: 90px 0;
    display: table;
    width: 100%;
    overflow: hidden;
    background: var(--off-white);
}

section.testimonials .testimonials__title {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-blue-100);
    margin-bottom: 15px;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 800;
}

section.testimonials p.testimonials_subtitle {
    margin-bottom: 60px;
    color: var(--dark-blue-100);
}

section.testimonials .container {
    max-width: 1170px;
}

section.testimonials .splide__track {
    overflow: visible;
}

section.testimonials .testimonials__item {
    padding: 25px;
    border-radius: 25px;
    max-width: 470px;
    min-width: 470px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

section.testimonials .testimonials__user-text {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--dark-blue-100);
}

section.testimonials .testimonials__user {
    display: flex;
    gap: 15px;
    align-items: center;
}

section.testimonials .testimonials__user-photo {
    width: 71px;
    height: 71px;
    display: block;
    background: #f5f5f5;
    border-radius: 8px;
    object-fit: cover;
}

section.testimonials .testimonials__user-name {
    font-size: 18px;
    color: var(--dark-blue-100);
}


@media all and (max-width: 1170px) {
    section.testimonials .container {
        max-width: 90vw;
        overflow: visible;
    }
}

@media all and (max-width: 768px) {
    section.testimonials .testimonials__item {
        max-width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
    }
}

/* --- forms.css --- */
.ps__forms {
  background:url("http://dev-wizard.wizard.com.br/wp-content/themes/pearsonwebsites/enterprise/wizard/assets/img/bg-forms.jpg") bottom center no-repeat var(--dark-blue-100);
  background-size: cover;
  padding: 70px 0;
  color: #fff;
}

.form_header {
  padding: 40px 0;
}

.gallery_item {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}

.ebook-form .gallery_item {
  max-height: 480px;
}

.gallery_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.first_img_large .gallery_item:first-child {
  grid-column: span 2 / span 2;
}

.ps_form {
  background-color: var(--dark-blue-80);
  padding: 40px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.ps_form label {
  display: block;
  color: #fff;
  line-height: 20px;
}

.ps_form input[type="text"],
.ps_form input[type="email"],
.ps_form input[type="phone"],
.ps_form select,
textarea {
  background-color: var(--grey-lighter);
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  color: var(--dark-blue-100);
  margin-top: 6px;
}

.ps_form input.error {
  border: 1px solid var(--pure-red-80);
}

.ps_form label.error {
  font-size: 0.75rem;
  color: var(--pure-red-80);
}

.checkbox_wrapper input[type="checkbox"] {
  margin-right: 5px;
}

.checkbox_wrapper label {
  line-height: 1;
}

.checkbox_wrapper label.error {
  position: absolute;
  right: 0;
  margin: 0;
}

.form-spinner-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 75%);
  z-index: 3;
  pointer-events: none;
}

.ps-button.bg-white {
  color: var(--dark-blue-100);
}

@media (max-width: 60rem) {
  .form_gallery {
    display: none;
  }
}

@media (max-width:768px) {
  .ps__forms {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* --- faq.css --- */
section.faq {
    margin: 90px 0;
    display: table;
    width: 100%;
}

section.faq .faq__heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--dark-blue-100);
    text-transform: uppercase;
    font-style: italic;
}

section.faq .faq__subtitle {
    color: var(--dark-blue-100);
    margin-bottom: 40px;
}

section.faq .container {
    max-width: 1170px;
}

section.faq .faq__form {
    margin-bottom: 80px;
}

section.faq .faq__form .faq__heading {
    margin-bottom: 30px;
}

section.faq label {
    color: var(--dark-blue-100);
    display: block;
    margin-bottom: 10px;
}

section.faq .faq__input {
    width: 530px;
    border-radius: 8px;
    background: #f5f5f5;
    position: relative;
    height: 45px;
    max-width: 100%;
}

section.faq .faq__input input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    font-size: 16px;
    padding: 10px 15px;
    outline: none !important;
    padding-right: 40px;
}

section.faq .faq__input svg {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

section.faq .faq__notfound {
    display: block;
    text-align: center;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    border: 1px #ffda70 solid;
    color: #c77b2d;
}

section.faq .faq__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

section.faq .faq__title {
    background: url("http://dev-wizard.wizard.com.br/wp-content/themes/pearsonwebsites/enterprise/wizard/assets/img/icon-title-faq.svg") 20px center var(--dark-blue-100) no-repeat;
    border: 0;
    color: #fff;
    font-family: inherit;
    font-size: 18px;
    line-height: 18px;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    min-height: 65px;
    padding-left: 50px;
    justify-content: space-between;
    text-align: left;
    width: 100%;
}

section.faq .faq__title:after {
    content: '';
    width: 14px;
    height: 14px;
    background: url("http://dev-wizard.wizard.com.br/wp-content/themes/pearsonwebsites/enterprise/wizard/assets/img/down-questions.svg") center center no-repeat;
    background-size: contain;
    display: block;
    transition: all .4s;
}

section.faq .faq__item.active .faq__title:after {
    transform: rotate(180deg);
}

section.faq .faq__content {
    background: var(--dark-blue-100);
    padding: 0;
    border-radius: 0 0 15px 15px;
    margin-top: -12px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: #fff;
    height:0;
    display: flex;
    overflow: hidden;
    transition: all .4s;
}

section.faq .faq__item.active .faq__content {
    height: max-content;
    padding: 30px;
}

section.faq .faq__content a {
    text-decoration: underline;
}

section.faq .faq__item.active .faq__content ul, ol {
    list-style: initial;
    list-style-position: inside;
}

section.faq .faq__item.active .faq__content li:not(:last-child),
section.faq .faq__item.active .faq__content p:not(:last-child) {
    margin-bottom: 15px;
}

@media all and (max-width:1170px) {
    section.faq .container {
        max-width: 90%;
    }
}

@media all and (max-width:998px) {
    section.faq {
        margin: 40px 0;
    }
    
    section.faq .faq__list {
        grid-template-columns: repeat(1, 1fr);
    }

    section.faq .faq__heading {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 30px;
    }
}

/* --- footer.css --- */
footer {
    width: 100%;
    display: block;
    color: #fff;
}

footer .container {
    max-width: 1170px;
}

.footer__primary {
    padding: 60px 0;
    background: var(--dark-blue-100);
}

.footer__primary .container {
    display: flex;
    justify-content: space-between;
    gap: 120px;
}

.footer__right {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex: 1;
}

footer b {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
}

footer a {
    font-size: 16px;
    display: block;
}

footer a:hover {
    color: var(--light-blue-40);
}

.footer__logo {
    margin-bottom: 60px;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: nowrap;
    margin-top: 35px;
}

.footer__copyright {
    background: #969696;
    font-size: 16px;
}

.footer__copyright .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 15px 0;
}


/*
    Reponsivo 
*/
@media all and (max-width: 1170px) {
    footer .container {
        max-width: 90%;
    }
}

@media all and (max-width: 992px) {
    .footer__primary .container,
    .footer__right {
        flex-wrap: wrap;
    }
}

@media all and (max-width: 768px) {
    .footer__primary .container {
        gap:30px;
    }

    .footer__logo {
        margin-bottom: 30px;
    }

    .footer__left {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__social {
        margin-top: 20px;
    }

    .footer__right {
        gap: 30px;
        justify-content: center;
        text-align: center;
        margin-top: 30px;
    }

    .footer__copyright .container {
        justify-content: center;
        gap: 15px;
    }

    .footer__copyright p {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 20px;
    }
}
