/*********************************
* ************* BOOT *************
******************************** */
* {
    font-family: 'Figtree', sans-serif;
    box-sizing: border-box; 
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html, body {
    overflow-x: hidden;
    }
}

body {
    position: relative; 
    background: #FFFFFF !important;
}

/*********************************
* ******** REUTILIZÁVEIS *********
******************************** */
/* Forms */
.form{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.form_label_box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.form_label{
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.form_label_margin{
    margin-bottom: 0;
}

.form_label:last-child{
    margin-bottom: 0;
}

.form_label_two{
    width: calc(50% - 10px);
}

.form_text{
    font-size: var(--textSize14);
    color: var(--colorText_90);
    display: block;
    padding-bottom: 9px;
    width: 100%;
}

.form_text_info{
    font-size: var(--textSize12);
    color: var(--colorText_70);
    display: block;
    padding-top: 3px;
}

.form_input{
    width: 100%;
    font-size: var(--textSize15);
    height: 50px;
    color: var(--colorText_90);
    padding: 0 20px;
    border: 1px solid var(--colorBorder);
    outline: none;
    resize: none;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
    background: #FFFFFF;
}

.form_input_area{
    height: 130px;
    padding: 20px;
}

.form_input:focus{
    border:2px solid var(--colorPrimary);
}

.form_input.disabled{
    background: #f5f5f5;
}

.form_label_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_label_info .form_text{
    padding-bottom: 0;
}

.form_label select{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("data:image/svg+xml,%3Csvg width='14' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 6 6 6-6' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 20px center no-repeat;
    cursor: pointer;
    padding-right: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    border: none;
    text-decoration: none;
    font-size: var(--textSize15);
    color: var(--colorWhite);
    background: #666;
    border-radius: var(--borderRadius);
    padding: 0 25px;
    height: 50px;
    line-height: 50px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    border-radius: 50px;
}

.btn:hover {
    background: var(--colorPrimaryDark);
}

.btn-default {
    background: var(--colorPrimary);
    color: #FFFFFF;
}

.btn-default:hover {
    background: var(--colorPrimaryDark);
}

.btn-secondary {
    background: var(--colorSecondary);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: var(--colorSecondaryDark);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
}

.btn-icon-element{
    margin-left: 10px;
}

/* Loading */
.mask_load{
    background: rgba(0, 0, 0, 0.8) !important;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999999999999999999999;
    display: none;
}

.mask_load img{
    margin: auto;
    height: 90px;
}

/* Modal */
.mask_modal{
    background: rgba(0, 2, 20, 0.85) !important;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999;
    display: flex;
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
}

.modal{
    margin: auto;
    width: 75%;
    max-width: 90%;
    transition: all .3s;
    transform: scale(.5) translateY(10%);
    position: relative;
}

.modal_header_close{
    font-size: 1.4em;
    color: var(--colorText_50);
    cursor: pointer;
    background: #FFFFFF;
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.modal_header_close:hover{
    color: var(--colorPrimary);
}

.modal_content{
    overflow: hidden;
    border-radius: var(--borderRadius);
}

.show_modal{
    visibility: visible;
    opacity: 1;
}

.show_modal .modal{
    transform: scale(1) translateY(0);
}

/* Title */
.title-section-wrapper{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.title-section-line{
    width: 20px;
    height: 2px;
    background: gray;
}

.title-section-h2 {
    font-size: var(--textSize14);
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.title-section-h1 {
    font-size: var(--textSize48);
    line-height: 60px;
    font-weight: 600;
    width: 100%;
    padding: 20px 0 0 0;
}

/* Padding Container */
.padding_container {
    padding: 110px 0;
}

.padding_container_page {
    padding: 100px 0;
}

/*********************************
* *********** HEADER *************
******************************** */
.header {
    width: 100%;
    padding: 26px 0;
    background: #FFFFFF;
}

.header_content{
    justify-content: space-between;
    align-items: center;
}

.header_nav { 
    align-items: center;
}

.header_nav_wrapper{
    align-items: center;
    gap: 22px;
}

.header_nav a {
    color: var(--colorText_50);
    font-size: var(--textSize14);
    padding: 14px 0;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.header_nav a.active,
.header_nav a:hover{
    color: var(--colorPrimary);
    font-weight: 600;
}

.header_nav a.btn_nav {
    display: flex;
    padding: 12px 24px;
    border-radius: 100px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    font-weight: 500;
    align-items: center;
    gap: 8px;
}

.header_nav a.btn_nav:hover{
    border-color: var(--colorPrimaryDark);
}

.header_nav_mobile{
    display: none;
    cursor: pointer;
    stroke: var(--colorPrimary);
}

.header_nav_close {
    display: none;
    cursor: pointer;
    stroke: var(--colorPrimary);
}

/*********************************
* *********** CONTENT *************
******************************** */
/* Banner Hero */
.banner {
    width: 100%;
    position: relative;
    height: calc(100vh - 97px);
}

.banner .swiper-slide {
    position: relative;
    height: calc(100vh - 97px);
    display: flex;
    align-items: center;
}

.banner_container{
    width: 100%;
    position: absolute;
    z-index: 2;
}

.banner_container .container{
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.banner_container .banner_text {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner_container .banner_text h1 {
    font-size: var(--textSize60);
    line-height: 72px;
    font-weight: 600;
    color: #FFFFFF;
}

.banner_container .banner_text span {
    font-size: var(--textSize18);
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}

.banner_container .banner_btn{
    background: #FFFFFF;
    color: var(--colorText_80);
    gap: 12px;
}

.banner_btn_icon{
    font-size: 20px;
    color: var(--colorSecondary);
}

.banner_image{
    width: 100%;
}

.banner_image_desktop{
    display: block;
}

.banner_image_mobile{
    display: none;
}

.banner_image img{
    width: 100%;
    height: calc(100vh - 97px);
    object-fit: cover;
}

.banner_bottom{
    width: 100%;
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 2;
}

.banner_bottom .container{
    justify-content: space-between;
    align-items: center;
}

.banner_bottom .swiper-pagination {
    position: relative !important;
    width: auto !important;
    display: flex;
    bottom: auto;
}

.banner_bottom .swiper-pagination-bullet {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    height: auto;
    background: transparent;
    justify-content: start;
    border-radius: 0;
    opacity: 1;
    margin: 0;
}

.banner_bottom .swiper-pagination-bullet .text{
    width: 100%;
    color: rgba(255, 255, 255, 0.50);
    padding-bottom: 8px;
    text-align: left;
    font-size: var(--textSize14);
    font-weight: 600;
}

.banner_bottom .swiper-pagination-bullet .bar{
    width: 50px;
    height: 2px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.50);
    transition: background-color 0.3s ease;
}

.banner_bottom .swiper-pagination-bullet-active .bar {
    background: #FFFFFF;
}

.banner_bottom .swiper-pagination-bullet-active .text {
    color: #FFFFFF;
}

.banner_bottom .banner_bottom_button_prev,
.banner_bottom .banner_bottom_button_next{
    background: transparent;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 1px solid #FFF;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_bottom .banner_bottom_button_next{
    margin-left: 10px;
}

.banner_bottom .banner_bottom_button_prev span,
.banner_bottom .banner_bottom_button_next span {
    font-size: 1.3em;
    color: #FFFFFF;
}

.banner_bottom .banner_bottom_button_next span{
    padding-left: 2px;
}

.banner_bottom .banner_bottom_button_prev.swiper-button-disabled,
.banner_bottom .banner_bottom_button_next.swiper-button-disabled {
    background: transparent;
    opacity: 0.4;
}

/* About */
.about{
    width: 100%;
}

.about_content{
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.about_header{
    width: 100%;
    gap: 25px;
}

.about_header .title-section-line {
    background: var(--colorPrimary);
}

.about_header .title-section-h2 {
    color: var(--colorPrimary);
}

.about_header_title{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
}

.about_header_title .title-section-h1{
    width: 50%;
    padding: 0;
    color: var(--colorText_90);
}

.about_header_title p{
    width: calc(50% - 60px);
    font-size: var(--textSize16);
    line-height: 24px;
    color: var(--colorText_60);
}

.about_header_btn{
    margin-top: 15px;
    gap: 12px;
}

.about_header_btn_icon{
    font-size: 20px;
}

.about_wrapper{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.about_video{
    width: calc(70% - 32px);
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.about_video img{
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.about_video_btn{
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    gap: 5px;
    display: flex;
    align-items: center;
    font-size: var(--textSize14);
    font-weight: 600;
    color: var(--colorPrimary);
    cursor: pointer;
}

.about_image{
    width: 30%;
    border-radius: 18px;
    overflow: hidden;
}

.about_image img{
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* Pilares */
.pillars{
    width: 100%;
    background: #FEFAF7;
}

.pillars_content{
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.pillars_header{
    width: 100%;
    justify-content: center;
    text-align: center;
}

.pillars_header .title-section-wrapper{
    width: 100%;
    justify-content: center;
}

.pillars_header .title-section-line {
    background: var(--colorSecondary);
}

.pillars_header .title-section-h2 {
    color: var(--colorSecondary);
}

.pillars_header .title-section-h1{
    width: 100%;
    color: var(--colorText_90);
}

.pillars_wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillars_box{
    background: #FFFFFF;
    padding: 34px;
    border-radius: 18px;
    gap: 28px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.pillars_box_icon{
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #fef2e9;
}

.pillars_box_content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pillars_box_content h4{
    font-size: var(--textSize20);
    line-height: 30px;
    font-weight: 600;
    color: var(--colorText_90);
}

.pillars_box_content p{
    font-size: var(--textSize16);
    line-height: 24px;
    color: var(--colorText_60);
}

/* Courses */
.courses{
    width: 100%;
    background: #FFFFFF;
    overflow: hidden;
}

.courses_content {
    gap: 80px;
}

.courses_header{
    width: 100%;
    justify-content: center;
    text-align: center;
}

.courses_header .title-section-wrapper{
    justify-content: center;
}

.courses_header .title-section-line{
    background: var(--colorPrimary)
}

.courses_header .title-section-h2 {
    color: var(--colorPrimary);
}

.courses_header .title-section-h1 {
    color: var(--colorText_90);
}

.courses_wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 250px;
    gap: 24px;
}

.course_card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 230px;
}

.course_card_featured {
    grid-row: span 2;
}

.course_card_link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.course_card_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course_card:hover .course_card_image {
    transform: scale(1.05);
}

.course_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.75) 100%);
    pointer-events: none;
}

.course_card_badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #FFFFFF;
    color: var(--colorPrimary);
    font-size: var(--textSize14);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.course_card_badge svg{
    stroke: var(--colorPrimary);
}

.course_card_content {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    color: #fff;
    z-index: 2;
}

.course_card_center{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.course_card_title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.course_card_button {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    cursor: pointer;
}

.course_card_button i{
    font-size: 20px;
    color: var(--colorPrimary);
}

/* Testimony */
.testimony{
    width: 100%;
    overflow: hidden;
    background: #FEF6F0;
}

.testimony_content{
    gap: 80px;
}
 
.testimony_header{
    width: 100%;
    justify-content: center;
    text-align: center;
}

.testimony_header .title-section-wrapper{
    justify-content: center;
}

.testimony_header .title-section-line{
    background: var(--colorSecondary)
}

.testimony_header .title-section-h2 {
    color: var(--colorSecondary);
}

.testimony_header .title-section-h1 {
    color: var(--colorText_90);
}

.testimony_wrapper{
    width: 100%;
    overflow: visible;
}

.testimony_wrapper .swiper-slide{
    background: #FFFFFF;
    border-radius: 18px;
    padding: 40px;
}

.testimony_box{
    width: 100%;
    gap: 40px;
    flex-direction: column;
}

.testimony_box_icon{
    background: var(--colorSecondary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.testimony_box_text{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimony_box_text p{
    font-size: var(--textSize16);
    line-height: 24px;
    color: var(--colorText_60);
}

.testimony_box_text span{
    font-size: var(--textSize16);
    font-weight: 600;
    color: var(--colorText_80);
    line-height: 24px;
    position: relative;
    width: 100%;
    padding-top: 12px;
}

.testimony_box_text span::before{
    content: "";
    background: var(--colorSecondary);
    width: 30px;
    height: 2px;
    position: absolute;
    top: 0;
}

.testimony_buttons{
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: -20px;
}

.testimony_button_prev,
.testimony_button_next{
    background: transparent;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 1px solid var(--colorSecondary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimony_button_prev span,
.testimony_button_next span {
    font-size: 1.3em;
    color: var(--colorSecondary);
}

.testimony_button_next span{
    padding-left: 2px;
}

.testimony_button_prev.swiper-button-disabled,
.testimony_button_next.swiper-button-disabled {
    background: transparent;
    opacity: 0.4;
}

/* Contact */
.contact{
    width: 100%;
    background: url("../../img/bg-contact.jpg") center -50px no-repeat;
}
 
.contact_content{
    padding: 100px 0 120px 0;
    justify-content: center;
}

.contact_title{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px;
}

.contact_content h1{
    width: 100%;
    color: var(--colorWhite);
    text-align: center;
    padding: 0;
}

.contact_btn{
    background: var(--colorSecondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_btn i{
    font-size: 20px;
}

/*********************************
* *********** FOOTER *************
******************************** */
/* Footer */
.footer{
    width: 100%;
    background: #FAFAFA;
    margin-top: -20px;
    border-radius: 22px 22px 0 0;
}

.footer_main{
    width: 100%;
}

.footer_main_content{
    padding: 70px 0;
    gap: 44px;
}

.footer_main_header{
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--colorBorder);
    padding: 0 0 44px 0;
}

.footer_main_header_network{
    align-items: center;
    gap: 20px;
}

.footer_main_header_network h3{
    font-size: var(--textSize14);
    font-weight: 600;
    color: var(--colorText_80);
}

.footer_main_header_network_items{
    gap: 8px;
}

.footer_main_header_network_item{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e4f4ff;
    text-decoration: none;
}

.footer_main_header_network_item i{
    font-size: 16px;
    color: var(--colorPrimary);
}

.footer_main_bottom{
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.footer_main_bottom_bar{
    width: 1px;
    height: 40px;
    background: var(--colorBorder);
}

.footer_main_bottom_infos{
    gap: 40px;
}

.footer_main_bottom_info{
    display: flex;
    flex-direction: row;
    gap: 14px;
    text-decoration: none;
    align-items: center;
}

.footer_main_bottom_info_texts{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer_main_bottom_info_title{
    font-size: var(--textSize14);
    color: var(--colorText_80);
    font-weight: 600;
}

.footer_main_bottom_info_text_wrappper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.footer_main_bottom_info_circle{
    width: 6px;
    height: 6px;
    background: var(--colorPrimary);
    border-radius: 100%;
}

.footer_main_bottom_info_text{
    font-size: var(--textSize14);
    color: var(--colorText_70);
    text-decoration: none;
}

.footer_copy{
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid var(--colorBorder);
}

.footer_copy_content{
    justify-content: space-between;
    align-items: center;
}

.footer_copy_content .copy_text{
    text-align: center;
    font-size: var(--textSize14);
    color: var(--colorText_80);
}

.footer_copy_content .copy_infos{
    align-items: center;
    gap: 25px;
}

.footer_copy_content .copy_infos .copy_author{
    align-items: center;
    gap: 12px;
}

.footer_copy_content .copy_infos .copy_author span{
    font-size: var(--textSize14);
    color: var(--colorText_80);
}

.footer_copy_content .copy_bar{
    width: 1px;
    height: 20px;
    background: var(--colorBorder);
}

.footer_copy_content .copy_infos .copy_top{
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer_copy_content .copy_infos .copy_top span{
    font-size: var(--textSize14);
    color: var(--colorText_80);
    font-weight: 500;
}

.footer_copy_content .copy_infos .copy_top i{
    width: 20px;
    height: 20px;
    background: var(--colorPrimary);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 12px;
}

/*********************************
* *********** PAGES *************
******************************** */
/* Pages */
.banner_page{
    width: 100%;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.banner_page.error {
    background: url(../../img/bg-page-error.jpg) top / cover no-repeat;
}

.banner_page.about {
    background: url(../../img/bg-page-courses.jpg) top / cover no-repeat;
}

.banner_page.courses {
    background: url(../../img/bg-page-courses.jpg) top / cover no-repeat;
    padding: 150px 0 200px 0;
}

.banner_page.teams {
    background: url(../../img/bg-page-courses.jpg) top / cover no-repeat;
}

.banner_page.teams {
    background: url(../../img/bg-page-files.jpg) top / cover no-repeat;
}

.banner_page.gallery {
    background: url(../../img/bg-page-gallery.jpg) top / cover no-repeat;
}

.banner_page_content{
    gap: 10px;
}

.banner_page_content span{
    width: 100%;
    font-size: var(--textSize16);
    color: #f8b379;
    line-height: 26px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.banner_page_content h1{
    width: 100%;
    font-size: var(--textSize60);
    line-height: 72px;
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
}

.content_page{
    width: 100%;
    position: relative;
}

/* Page error */
.page_error{
    width: 100%;
}

.page_error_content{
    justify-content: center;
    padding: 100px 0;
}

.page_error .error_box_infos{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page_error .error_box_infos h1 {
    width: 100%;
    font-size: var(--textSize90);
    text-align: center;
    font-weight: 600;
    color: var(--colorSecondary);
    padding-bottom: 10px;
}

.page_error .error_box_infos h2{
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: var(--textSize28);
    color: var(--colorText_90);
    padding-bottom: 10px;
}

.page_error .error_box_infos span{
    text-align: center;
    font-size: var(--textSize16);
    line-height: 22px;
    color: var(--colorText_70);
    display: flex;
    padding-bottom: 50px;
}

/* Page courses */
.courses_page_period{
    margin-top: -80px;
}

.courses_page_period_content{
    background: var(--colorSecondary);
    border-radius: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    gap: 70px;
}

.courses_page_period_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.courses_page_period_item_line{
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
}

.courses_page_period_item_title{
    padding: 5px 15px;
    background: var(--colorWhite);
    color: var(--colorSecondary);
    font-size: var(--textSize14);
    font-weight: 600;
    border-radius: 10px;
}

.courses_page_period_item_text{
    color: var(--colorWhite);
    font-size: var(--textSize16);
}

.courses_page_infos_content{
    gap: 70px;
}

.courses_page_infos_texts {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0 100px;
}

.courses_page_infos_texts h4{
    color: var(--colorText_80);
    font-size: var(--textSize36);
    line-height: 44px;
    font-weight: 600;
}

.courses_page_infos_texts_content{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

.courses_page_infos_texts_content p{
    font-size: var(--textSize16);
    line-height: 24px;
    color: var(--colorText_60);
}

.courses_page_infos_boxs{
    width: 100%;
    background: #e4f4ff;
    border-radius: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.courses_page_infos_box{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 60px 54px;
    gap: 34px;
}

.courses_page_infos_box:first-child{
    border-right: 1px solid #b6daf1;
}

.courses_page_infos_box h5{
    color: var(--colorText_80);
    font-size: var(--textSize24);
    line-height: 32px;
    font-weight: 600;
    text-align: center;
}

.courses_page_infos_box_content{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.courses_page_infos_box_item{
    background: var(--colorWhite);
    padding: 12px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.courses_page_infos_box_item .circle{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--colorSecondary);
    flex-shrink: 0;
}

.courses_page_infos_box_item span{
    font-size: var(--textSize16);
    color: var(--colorText_60);
}

.courses_page_prgrams{
    background: #FEFAF7;
}

.courses_page_prgrams_content{
    gap: 80px;
}

.courses_page_prgrams_header{
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.courses_page_prgrams_header h1{
    text-align: center;
    padding: 0;
}

.courses_page_prgrams_wrapper{
    width: 100%;
    overflow: visible;
}

.courses_page_prgrams_left_box{
    width: 100%;
    background: #FFF;
    padding: 20px 24px;
    cursor: pointer;
    align-items: center;
    border-radius: 10px;
    gap: 20px;
    border: 1px solid var(--colorBorder);
}

.courses_page_prgrams_left_box:hover,
.courses_page_prgrams_left_box.active{
    background: var(--colorSecondary)
}

.courses_page_prgrams_left_box_number{
    background: #fef2e9;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--textSize18);
    color: var(--colorSecondary);
    font-weight: 600;
}

.courses_page_prgrams_left_box_title{
    font-size: var(--textSize16);
    color: var(--colorText_80);
    line-height: 22px;
    font-weight: 600;
}

.courses_page_prgrams_left_box:hover .courses_page_prgrams_left_box_title,
.courses_page_prgrams_left_box.active .courses_page_prgrams_left_box_title{
    color: #FFFFFF;
}

.courses_page_prgrams_left_box_content{
    display: none;
}

.courses_page_prgrams_right{
    width: calc(70% - 50px);
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}

.courses_page_prgrams_right_image{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.courses_page_prgrams_right p{
    font-size: var(--textSize16);
    color: var(--colorText_80);
    line-height: 22px;
}

/* Page team */
.teams_page_wrapper_content{
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.teams_page_wrapper_item{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.teams_page_wrapper_item_header{
    width: 100%;
}

.teams_page_wrapper_item_header h3{
    font-size: var(--textSize36);
    line-height: 44px;
    color: var(--colorText_80);
    font-weight: 600;
}

.teams_page_wrapper_item_content{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.teams_page_wrapper_item_content .teams_item{
    background: var(--colorText_10);
    border-radius: 18px;
    overflow: hidden;
}

.teams_page_wrapper_item_content .teams_item img{
    height: 240px;
    object-fit: cover;
    width: 100%;
    border-radius: 18px;
}

.teams_page_wrapper_item_content .teams_item_texts{
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.teams_page_wrapper_item_content .teams_item_texts h4{
    font-size: var(--textSize18);
    line-height: 28px;
    color: var(--colorText_80);
    font-weight: 600;
}

.teams_page_wrapper_item_content .teams_item_texts span{
    font-size: var(--textSize14);
    line-height: 20px;
    color: var(--colorText_60);
}

/* Page gallery */
.gallery_page_wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.gallery_page_wrapper a{
    text-decoration: none;
}

.gallery_page_item{
    background: var(--colorText_10);
    border-radius: 18px;
    overflow: hidden;
}

.gallery_page_item img{
    height: 240px;
    object-fit: cover;
    width: 100%;
    border-radius: 18px;
}

.gallery_page_item_texts{
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.gallery_page_item_texts h4{
    font-size: var(--textSize18);
    line-height: 28px;
    color: var(--colorText_80);
    font-weight: 600;
}

.gallery_page_item_texts span{
    font-size: var(--textSize14);
    line-height: 20px;
    color: var(--colorText_60);
}

.gallery_single_page_wrapper .swiper {
    width: 100%;
    height: 100%;
}

.gallery_single_page_wrapper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.gallery_single_cover_image{
    width: 100%;
    position: relative;
}

.gallery_single_page_wrapper .swiper-slide img {
    display: block;
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
}

.gallery_single_page_wrapper .swiper-thumb .swiper-slide img{
    height: 130px;
}

.gallery_single_page_wrapper .swiper {
    width: 100%;
    height: 610px;
    margin-left: auto;
    margin-right: auto;
}

.gallery_single_page_wrapper .swiper-slide {
    background-size: cover;
    background-position: center;
}

.gallery_single_page_wrapper .swiper-cover {
    height: 80%;
    width: 100%;
}

.gallery_single_page_wrapper .swiper-thumb {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
    margin-top: 10px;
}

.gallery_single_page_wrapper .swiper-thumb .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.gallery_single_page_wrapper .swiper-thumb .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery_single_arrow_next,
.gallery_single_arrow_prev{
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3.5em;
}

.gallery_single_arrow_next{
    right: 15px;
    left: auto;
}

.gallery_single_arrow_prev{
    left: 15px;
    right: auto;
}

.swiper-thumb{
    cursor: pointer;
}

/* Page gallery */
.files_page{
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.files_page_item{
    background: var(--colorText_10);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 34px;
}

.files_page_item h3{
    font-size: var(--textSize18);
    line-height: 28px;
    color: var(--colorText_80);
    font-weight: 600;
}

.files_page_item_download{
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--colorSecondary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
}

.policies_page_item_content{
    width: 100%;
    background: #D1DFD9;
    border-radius: var(--borderRadius);
    padding: 34px;
    margin-top: 15px;
    display: none;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.policies_page_item_content p{
    font-size: var(--textSize14);
    line-height: 18px;
    color: var(--colorText_90);
    margin-bottom: 15px;
}

.policies_page_item_content p:last-child{
    margin-bottom: 0;
}

.policies_page_item_content ul{
    list-style: disc;
    margin-left: 20px;
}

.policies_page_item_content ul li{
    font-size: var(--textSize14);
    line-height: 18px;
    color: var(--colorText_90);
    margin-bottom: 15px;
}

.policies_page_item_content ul li:last-child{
    margin-bottom: 0;
}

/* Page about */
.about_page_block_one_content{
    gap: 80px;
}

.about_page_block_one_header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.about_page_block_one_header h2{
    font-size: var(--textSize48);
    line-height: 60px;
    color: var(--colorText_80);
    font-weight: 600;
}

.about_page_block_one_header_content{
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about_page_block_one_header_content p{
    font-size: var(--textSize16);
    line-height: 24px;
    color: var(--colorText_60);
}

.about_page_block_one_video{
    width: 100%;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.about_page_block_one_video img{
    width: 100%;
    height: 710px;
    object-fit: cover;
}

.about_page_block_one_video_btn{
    position: absolute;
    width: 66px;
    height: 66px;
    top: 50%;
    left: 50%;
    margin-top: -33px;
    margin-left: -33px;
    background: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_page_block_two{
    background: #FEFAF7;
}

.about_page_block_two_content{
    gap: 80px;
}

.about_page_block_two_header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.about_page_block_two_header h2{
    font-size: var(--textSize48);
    line-height: 60px;
    color: var(--colorText_80);
    font-weight: 600;
}

.about_page_block_two_header_content{
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about_page_block_two_header_content p{
    font-size: var(--textSize16);
    line-height: 24px;
    color: var(--colorText_60);
}

.about_page_block_two_gallery{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about_page_block_two_gallery_img{
    width: 100%;
    object-fit: cover;
    height: 260px;
    border-radius: 18px;
}

/*********************************
* *********** COOKIES *************
******************************** */
.cookies {
    color: var(--colorText_90);
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 99;
    font-size: var(--textSize14);
    line-height: 22px;
    box-shadow: 0 4px 70px rgba(2, 33, 23, 0.2);
    background: var(--colorWhite);
    display: flex;
}

.cookies_wrapper {
    padding: 30px 40px;
    margin: auto;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp 0.5s forwards;
}

.cookies_wrapper p {
    padding-right: 40px;
    margin-bottom: 0;
}

@keyframes slideUp {
    to {
        transform: initial;
        opacity: initial;
    }
}

.cookies_btn {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    cursor: pointer;
    border: none;
    padding: 0.8rem 50px;
    font-size: var(--textSize14);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
}

.cookies_btn:hover {
    background: var(--colorPrimaryDark);
}

/*********************************
* ******** MEDIA QUERIES *********
******************************** */
/* Media Queries */
/* 1200 */
@media (max-width: 1200px) {
    /* Header */
    .header_nav {
        width: 100%;
        height: 100%;
        position: fixed;
        background: #FFFFFF;
        right: -100%;
        top: 0px;
        z-index: 999;
    }

    .header_nav_wrapper {
        margin: auto;
        width: 600px;
        max-width: 90%;
        justify-content: center;
    }

    .header_nav a {
        width: 100%;
        text-align: center;
        padding: 0 0 20px 0;
        color: var(--colorText_70) !important;
        font-size: var(--textSize20);
        position: relative;
        display: flex;
        justify-content: center;
        font-weight: 500;
        border: none;
    }

    .header_nav a:hover,
    .header_nav a.active{
        color: var(--colorPrimary) !important;
    }

    .header_nav_mobile {
        display: block;
    }

    .header_nav a.btn_nav{
        width: 50%;
        border-color: var(--colorPrimary);
        padding: 15px 30px;
        margin-left: 0;
        background: var(--colorPrimary);
        color: #FFFFFF !important;
    }

    .header_nav a.btn_nav:hover{
        background: var(--colorPrimaryDark);
        border-color: var(--colorPrimaryDark);
    }

    .header_nav_close {
        display: block;
        position: absolute;
        right: 40px;
        top: 40px;
        stroke: var(--colorPrimary);
    }

    .header_nav_close:hover{
        stroke: var(--colorPrimaryDark);
    }
}

/* 991 */
@media (max-width: 991px) {
    /* Padding Container */
    .padding_container,
    .padding_container_page {
        padding: 80px 0;
    }

    /* Banner hero */
    .banner_container .banner_text{
        width: 100%;
    }

    .banner_content h1{
        font-size: var(--textSize48);
        line-height: 56px;
    }

    .banner_image_desktop{
        display: none;
    }
    
    .banner_image_mobile{
        display: block;
    }

    /* About */
    .about_content{
        gap: 50px;
    }

    .about_header_title{
        gap: 20px;
    }

    .about_header_title .title-section-h1,
    .about_header_title p {
        width: 100%;
    }

    .about_wrapper {
        gap: 30px;
    }

    .about_video,
    .about_image{
        width: 100%;
    }

    /* Pillars */
    .pillars_content{
        gap: 50px;
    }

    .pillars_wrapper{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Courses */
    .courses_content {
        gap: 50px;
    }

    .courses_wrapper {
        width: 100%;
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .course_card_featured{
        grid-row: auto;
    }

    .course_card_featured,
    .course_card {
        min-height: 300px;
    }

    /* Testimony */
    .testimony_content {
        gap: 50px;
    }

    /* Footer */
    .footer_main_content {
        padding: 40px 0;
    }

    .footer_main_bottom {
        justify-content: center;
        gap: 20px;
    }

    .footer_main_bottom_infos{
        gap: 20px;
    }

    .footer_main_bottom_bar{
        display: none;
    }

    .footer_copy_content {
        flex-direction: column;
        gap: 15px;
    }

    .footer_copy_content .copy_infos{
        gap: 15px;
    }

    /* Cookies */
    .cookies_wrapper {
        flex-wrap: wrap;  
    }

    .cookies_wrapper p {
        width: 100%;
        text-align: center;
        padding-bottom: 25px;
        padding-right: 0;
    }

    .cookies_btn {
        width: 100%;
    }

    /* Pages */
    .banner_page_content span{
        padding: 0;
    }

    /* Page courses */
    .banner_page{
        padding: 100px 0;
    }

    .banner_page.courses{
        padding: 100px 0 160px 0;
    }

    .courses_page_period_content{
        padding: 20px;
    }

    .courses_page_infos_content{
        gap: 40px;
    }

    .courses_page_infos_texts{
        padding: 0;
        gap: 20px;
    }

    .courses_page_infos_boxs{
        flex-direction: column;
    }

    .courses_page_infos_box{
        width: 100%;
        padding: 40px;
        gap: 24px;
    }

    .courses_page_infos_box:first-child{
        border-right: 0;
        padding-bottom: 0;
    }

    .courses_page_prgrams_content{
        gap: 40px;
    }

    .courses_page_prgrams_wrapper{
        flex-direction: column;
        gap: 40px;
    }

    .courses_page_prgrams_left,
    .courses_page_prgrams_right{
        width: 100%;
    }

    /* Page teams */
    .teams_page_wrapper_content {
        gap: 50px;
    }

    .teams_page_wrapper_item_content{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Page gallery */
    .gallery_page_wrapper{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Page about */
    .about_page_block_one_content,
    .about_page_block_two_content{
        gap: 50px;
    }

    .about_page_block_two_gallery{
        grid-template-columns: repeat(2, 1fr);
    }

    .about_page_block_one_header h2,
    .about_page_block_two_header h2{
        font-size: var(--textSize32);
        line-height: 44px;
    }

    .about_page_block_one_video img{
        height: 500px;
    }
}

/* 640 */
@media(max-width: 640px){
    /* Padding Container */
    .padding_container,
    .padding_container_page {
        padding: 50px 0;
    }

    /* Title Section */
    .title-section-h1 {
        font-size: var(--textSize32);
        line-height: 38px;
    }

    /* Header */
    .header{
        position: relative;
    }

    .header_logo img{
        height: 42px;
    }

    .header_nav a.btn_nav{
        width: 100%;
    }

    /* Banner hero */
    .banner{
        height: auto;
    }

    .banner_image img,
    .banner .swiper-slide{
        height: 600px;
    }

    .banner_container .container{
        gap: 30px;
    }

    .banner_container .banner_text {
        gap: 15px;
    }

    .banner_container .banner_text h1{
        font-size: var(--textSize40);
        line-height: 44px;
    }

    /* About */
    .about_content {
        gap: 30px;
    }

    .about_header_btn{
        margin-top: 0;
    }

    .about_wrapper{
        gap: 20px;
    }

    /* Pillars */
    .pillars_content{
        gap: 30px;
    }

    .pillars_box{
        padding: 20px;
        gap: 20px;
    }

    /* Courses */
    .courses_content {
        gap: 30px;
    }

    .courses_wrapper{
        gap: 20px;
    }

    /* Testimony */
    .testimony_content{
        gap: 30px;
    }

    .testimony_wrapper .swiper-slide{
        padding: 20px;
    }

    .testimony_box{
        gap: 20px;
    }

    .testimony_buttons {
        margin-top: 10px;
    }
    
    /* Contact */
    .contact_content {
        padding: 50px 0 70px 0;
    }

    .contact_title{
        width: 100%;
        gap: 28px;
    }

    /* Footer */
    .footer_main_content{
        gap: 30px;
    }

    .footer_main_header {
        padding: 0 0 30px 0;
    }

    .footer_main_bottom_infos {
        justify-content: center;
    }

    /* Pages */
    .banner_page{
        padding: 70px 0;
    }

    .banner_page.courses{
        padding: 70px 0 120px 0;
    }

    .banner_page_content h1{
        font-size: var(--textSize48);
        line-height: 56px;
    }

    /* Page courses */
    .courses_page_period_content {
        gap: 20px;
        flex-direction: column;
    }

    .courses_page_period_item_line{
        display: none;
    }
    
    .courses_page_infos_texts h4{
        font-size: var(--textSize28);
        line-height: 32px;
    }

    .courses_page_infos_box{
        padding: 20px;
    }

    .courses_page_infos_box:first-child{
        padding-bottom: 10px !important;
    }

    /* Page teams */
    .teams_page_wrapper_content {
        gap: 30px;
    }

    .teams_page_wrapper_item_content{
        grid-template-columns: 1fr;
    }

    .teams_page_wrapper_item_content .teams_item_texts{
        padding: 18px;
    }

    /* Page gallery */
    .gallery_page_wrapper{
        grid-template-columns: 1fr;
    }

    .gallery_page_item_texts{
        padding: 18px;
    }

    /* Page files */
    .files_page_item{
        padding: 20px;
    }

    /* Page about */
    .about_page_block_two_gallery{
        grid-template-columns: 1fr;
        gap: 15px;
    }
}