:root{
    --primary:rgba(65, 200, 65, 1);
    --primaryrgb:65, 200, 65;
}

[data-bs-theme=dark]{
    --primary:rgba(65, 200, 65, 1);
    --primaryrgb:65, 200, 65;
    --bs-body-bg:rgb(2, 8, 17);
}

*{
    font-family: "Inter", sans-serif;
}

body{
    overflow-x: hidden;
}

.navbar .nav-item,
.navbar .menu-item{
    margin-right: 1rem;
}

.nav-link{
    --bs-nav-link-font-weight:300;
}

.btn,
.btn:focus,
.btn:active,
.btn:hover{
    box-shadow: none;
    outline: none;
    border-radius: 50px;
}

.btn-primary{
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
    transition: 0.3s all;
}

.btn-primary:hover{
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary{
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transition: 0.3s all;
}

.btn-outline-primary:hover{
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.navbar .btn-primary{
    border-radius: 50px;
    padding: 0.5rem 1rem;
}

.interaction.circle_header{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: rgba(130, 94, 238, 1);
    position: absolute;
    top: -40px;
    left: 45%;
    opacity: 0.21;
}

.interaction.rect{
    width: 16px;
    height: 16px;
    background-color: rgba(88, 143, 255, 1);
    transform: rotate(-30deg);
    position: absolute;
}

.interaction.rect.orange{
    background-color: rgba(255, 103, 1, 1);
}

.interaction.rect.purple{
    background-color: rgba(112, 71, 235, 1);
}

nav .interaction.rect{
    bottom: 20px;
    left: 20%;
}

.event_single .interaction.rect{
    top: 2rem;
    right: 0;
}

.navbar-toggler,
.navbar-toggler:hover,
.navbar-toggler:focus{
    border: none;
    background-color: none;
    padding: 0;
    box-shadow: none;
    outline: none;
}

.video_content img{
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.event_single{
    padding: 2rem 0;
    max-width: 800px;
    margin: auto;
}

.event_single h1{
    font-size: 50px;
    font-weight: bold;
}

.event_single .button-group{
    margin-top: 2rem;
}

.event_single .button-group .btn{
    border-radius: 50px;
    padding: 0.5rem 2rem;
    margin-right: 1rem;
}

.book_seat{
    margin: 2rem;
}

.book_seat h2{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.book_seat .features{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.book_seat .features .single_feature{
    width: 48%;
    background-color: rgba(19, 19, 19, 1);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.book_seat .features .single_feature ul{
    padding: 0;
    list-style: none;
    font-size: 13px;
    pointer-events: none;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.book_seat .features .single_feature .over{
    position: absolute;
    background: rgba(19, 19, 19, 1);
    left: 0;
    right: 0;
    padding: 1rem;
    bottom: 10px;
    transition: 0.2s all;
    height: 138px;
}

.book_seat .features .single_feature:hover h3{
    color: var(--primary);
}

.book_seat .features .single_feature .learn_more{
    font-size: 15px;
}

.book_seat .features .single_feature ul li{
    margin-bottom: 5px;
}

.book_seat .features .single_feature ul li::before{
    content: "-";
    margin-right: 10px;
}

.book_seat .features .single_feature h3{
    font-size: 26px;
    margin-bottom: 1rem;
}

.book_seat .features .single_feature:hover .learn_more {
    opacity: 0;
}

.book_seat .features .single_feature:hover ul {
    opacity: 1;
    height:auto;
    pointer-events: auto;
}

.counter_section{
    margin: 4rem 0;
}

.counter_section .counter_cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.counter_section .counter_cards .counter_card{
    width: 48%;
    background-color: rgba(19, 19, 19, 1);
    margin-bottom: 4%;
    min-height: 200px;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
}

.counter_section .counter_cards .counter_card > div{
    max-width: 50%;
    font-weight: 500;
}

.counter_section .counter_cards .counter_card .label{
    line-height: 20px;
}

.counter_section .counter_cards .counter_card .count{
    font-size: 3rem;
    color: var(--primary);
    margin: 0;
}

.counter_section h2{
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.counter_section .row,
.event_card .row{
    --bs-gutter-x: 3rem;
}

.event_card img{
    max-width: 100%;
    border-radius: 10px;
}

.event_card h2{
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.more_course{
    margin-top: 4rem;
}

.more_course h2{
    font-size: 3rem;
}

.more_course .more_course_card{
    background-color: rgba(19, 19, 19, 1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.more_course h2{
    font-size: 2.5rem;
    line-height: 40px;
}

.more_course h3{
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.more_course ul{
    font-size: 15px;
    margin-bottom: 0;
}

.more_course .content{
    max-width: 450px;
}

.more_course .col-md-7 .cards{
    display: flex;
    align-items: end;
    flex-direction: column;
    width:100%;
}

.more_course .cards .more_course_card{
    margin-top: 1rem;
    min-width: 500px;
    margin-bottom: 0;
}

.brand_association{
    margin-top: 4rem;
}

.brand_association h2{
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.brand_association .brands{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brand_association .brands img{
    width: 18%;
    height: 130px;
    object-fit: cover;
    margin-bottom: 2%;
    border-radius: 10px;
}

.contact_section{
    margin: 4rem 0;
}

.contact_section h2{
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact_section .meta{
    margin-bottom: 1rem;
}

.contact_section .meta .label{
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.contact_section iframe{
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

.faq_sections{
    margin-top: 4rem;
    background-color: rgba(19, 19, 19, 1);
    padding: 2rem;
    border-radius: 10px;
    padding-bottom: 10rem;
}

.top-right{
    top: var(--position);
    right: var(--position);
}

.faq_sections.position-relative{
    --position:30px;
}

.faq_sections .bottom-right{
    left: auto;
    top: auto;
}

.bottom-right{
    bottom: var(--position);
    right: var(--position);
}

.bottom-center{
    bottom: var(--position);
    left: 50%;
}

.top-center{
    top: var(--position);
    left: 50%;
}

.bottom-right{
    bottom: var(--position);
    right: var(--position);
}

.top-left{
    top: var(--position);
    left: var(--position);
}

.faq_sections h2{
    margin-bottom: 2.5rem;
    max-width: 400px;
    letter-spacing: 1px;
}

.faq_sections .accordion-header {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
}

.faq_sections .accordion-header button,
.faq_sections .accordion-header button:focus,
.faq_sections .accordion-header button:hover{
    box-shadow: none;
    outline: none;
    background-color: transparent;
}

.faq_sections .accordion-header button:not(.collapsed){
    color: var(--primary);
}

.accordion{
    --bs-accordion-bg:rgba(11, 31, 32, 1);
}

.accordion .accordion-item{
    border: 0;
    margin-bottom: 1rem;
    border-radius: var(--bs-accordion-border-radius);
}

.accordion-header .accordion-button::after {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(65, 200, 65, 1)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(65, 200, 65, 1)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.footer_section{
    padding: 6rem 0 3rem 0;
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_section p{
    font-size: 1.3rem;
}

.footer_section a{
    margin: 1rem 0;
}

.footer_section img{
    max-width: 100px;
    display: inline-block;
}

.footer_section .orange{
    right: 20%;
    bottom: 20%;
}

.footer_section .interaction.large{
    background-color: rgba(158, 203, 255, 1);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    left: 10%;
    bottom: 20%;
    opacity: 0.2;
}

main .footer.circle_header{
    bottom: 30px;
    top: auto;
    left: auto;
    right: -60px;
    width: 120px;
    height: 120px;
    background-color: rgba(245, 61, 107, 1);
}

.int-green{
    background-color: rgba(61, 212, 126, 1) !important;
}

.opacity-3{
    opacity: 0.3;
}

main .footer.rect{
    bottom: 200px;
    top: auto;
    left: auto;
    right: 20px;
}

.reviews_section{
    background-color: rgba(19, 19, 19, 1);
    padding: 2rem;
    margin-top: 3rem;
}

.reviews_section .row{
    padding: 3rem 0;
}

.reviews_section .review_card{
    background: rgba(13, 13, 13, 1);
    border-radius: 10px;
    padding:2rem;
    border-radius: 10px;
    transition: 0.3s all;
}

.reviews_section .review_card.deactive{
    opacity: 0.1;
}

.reviews_section .review_card:hover{
    box-shadow: -5px 7px 10.2px 0px rgba(65, 200, 65, 0.3);
}

.reviews_section .review_card .header{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
}

.reviews_section .review_card .header .role{
    font-size: 14px;
    opacity: 0.8;
}

.reviews_section .review_card .user_profile{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #fff;
}

.reviews_section .review_card .content{
    font-size: 14px;
}

.module_sessions{
    margin-bottom: 4rem;
}

.module_sessions h2{
    color: var(--primary);
    text-align: center;
    margin-bottom: 0;
    font-size: 3rem;
}

.module_sessions .module_card{
    background: rgba(11, 31, 32, 1);
    padding: 2rem;
    border-radius: 30px;
    width: 48%;
}

.module_sessions .module_card img{
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.module_sessions .heading{
    color: var(--primary);
    position: relative;
}

.module_sessions .heading:after{
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    background: var(--primary);
    height: 3px;
    width: 30px;
    transition: 0.3s all;
}

.module_sessions .cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.module_sessions .module_card{
    margin-bottom: 2%;
    transition: 0.6s all;
}

.module_sessions .module_card .title{
    color: #fff;
    font-size: 18px;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.module_sessions .module_card .subtitle,
.module_sessions .module_card .learn_more_module{
    color: rgba(201, 201, 201, 1);
    font-size: 14px;
    text-decoration: none;
}

.module_sessions .module_card.small{
    padding: 1.5rem 1rem;
}

.module_sessions .module_card.small .title{
    margin: 10px 0 1rem 0;
    font-size: 15px;
}

.module_sessions .module_card.small .subtitle{
    max-width: auto;
    font-size: 12px;
}

.module_sessions .module_card:not(.small) .learn_more_module{
    display: none;
}

.module_sessions .module_card.small .col{
    display: none;
}

.module_sessions .module_card.small .col:first-child{
    display: block;
}

.module_sessions .module_card .learn_more_module:hover{
    color: var(--primary);
}

.module_sessions .module_card .col h4{
    font-size: 18px;
    padding-left: 2rem;
}

.module_sessions .module_card .col ul{
    font-size: 14px;
}



/** Home Screen */
.home_screen,
.event_form{
    background-image: radial-gradient(#236C63, #000000 50%);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.home_screen .navbar .nav-item{
    margin-right: 7rem;
}

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

.home_screen .cards .home_card{
    border-radius: 35px;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
    position: relative;
    transition: 0.5s all;
    width: 32%;
}

.home_screen .cards .home_card .title{
    position: absolute;
    top: 40%;
    left: 10%;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    display: none;
}

.home_screen .cards .home_card .subtitle{
    position: absolute;
    /* top: 52%; */
    left: 10%;
    font-size:2rem;
    font-weight: bold;
    color: #fff;
    top: 80%;
}

.home_card.active{
    width: 100% !important;
}

.home_screen .cards .home_card.active::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 212, 126, 0.2);
    border-radius: 35px;
}

.homes.hovered .home_card:not(.active){
    width: 0 !important;
}

.homes.hovered .home_card:not(.active) .title,
.homes.hovered .home_card:not(.active) .subtitle{
    display: none;
}

.home_screen .home_card.active .title{
    display: block;
}

.home_screen .home_card.active .subtitle{
    top: 48%;
    font-size: 5rem;
}

.home_screen .homes{
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_container .form-control{
    border-color: var(--primary);
    border-radius: 25px;
    padding: 10px 20px;
    outline: none;
    box-shadow: none;
    margin-bottom: 1rem;
}

.form_container form,
.form_container{
    margin-top: 2rem;
}

.form_container button{
    padding: 10px 20px;
    margin-top: 1rem;
    border-width: 2px;
    min-width: 200px;
}

.form_container .google{
    position: absolute;
    top: -20px;
    left: 50%;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.form_container .facebook{
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* .form_container img:not(.google):not(.facebook){
    max-width: 500px;
} */

.form_container .position-relative{

}

.module_card_header{
    position: relative;
}

.module_card_header:after{
    content: "";
}

#moduleAndSession .accordion-item{
    margin-bottom: 1.5rem;
}

#moduleAndSession .accordion-item,
#moduleAndSession .accordion-button{
    border-radius: 30px;
}

#moduleAndSession .accordion-button{
    border: none;
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed){
    background-color: transparent;
    color: inherit;
}

#moduleAndSession .accordion-header .title{
    margin-top: 10px;
    color: #fff;
}

.module_sessions .accordion-body{
    padding-bottom: 2rem;
}

.reviews_section{
    --position:50px;
}

.reviews_section .interaction:first-child{
    top: 50%;
    left: 6px;
}

.reviews_section .interaction{
    transition: 0.3s all;
}

.reviews_section .interaction:nth-child(3){
    top: 90%;
}

.reviews_section.first-card-hovered .interaction:nth-child(3){
    top: 60%;
}

.reviews_section.first-card-hovered .interaction:nth-child(4){
    left: 70%;
}

.reviews_section.first-card-hovered .interaction:nth-child(6){
    top: 50%;
}

.reviews_section.first-card-hovered .interaction:nth-child(5){
    left: 50%;
}

/** SECONDS **/
.reviews_section.second-card-hovered .interaction:nth-child(3){
    top: 20%;
}

.reviews_section.second-card-hovered .interaction:nth-child(4){
    left: 90%;
}

.reviews_section.second-card-hovered .interaction:nth-child(6){
    top: 90%;
}

.reviews_section.second-card-hovered .interaction:nth-child(5){
    left: 20%;
}

@media (max-width:1000px){
    .interaction{
        display:none !important;
    }

    .book_seat .features .single_feature .learn_more{
        display: none !important;
    }

    .book_seat .features .single_feature .over{
        top: 15px;
        height: 100px;
    }

    .more_course .col-md-7 .cards{
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .reviews_section .review_card{
        margin-bottom: 1.5rem;
    }

    .faq_sections{
        padding-bottom: 2rem;
    }

    .brand_association .brands img{
        width: 32%;
    }

    .more_course .cards .more_course_card{
        min-width: 100%;
    }
}

@media (max-width:768px){
    .brand_association .brands img{
        width: 48%;
    }
}

/*****************************
FOOTER PART
*****************************/
.footer-section {
    background-color: rgb(29, 32, 38);
}

.footer-top {
    padding: 50px 0px 40px 0;
}

.footer-top .footer-textarea .footer-logo {
    margin-bottom: 20px;
}

.footer-top .footer-textarea p {
    color: rgb(140, 148, 163);
}

.footer-social {
    margin-top: 24px;
}

.footer-social ul {
    display: flex;
    flex-wrap:wrap;
}

.social-icon ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.social-icon ul li {
    display: inline-block;
    margin: 0px 2px;
}

.footer-social ul li {
    margin: 0px 6px;
}

.social-icon ul li:first-child {
    margin-left: 0px;
}

.social-icon ul li a {
    width: 48px;
    height: 48px;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    color: rgb(78, 85, 102);

    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
    transition: all 0.3s ease 0s;
    background: rgb(245, 247, 250);
}

.footer-social ul li a {
    width: 46px;
    height: 46px;
    background-color: rgb(39, 43, 51);
    text-decoration:none;
}

.social-icon ul li a svg {
    transition: all 0.3s ease 0s;
}

.social-icon ul li a:hover {
    color: rgb(255, 255, 255);
    background-color: var(--primary);
}

.footer-top .footer-widget .footer-menu-title {
    margin-bottom: 22px;
}

.footer-top .footer-widget .footer-menu-title h4 {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    margin: 0px;
}

.footer-top .footer-widget .footer-menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.footer-top .footer-widget .footer-menu ul li {
    margin-bottom: 6px;
}

.footer-top .footer-widget .footer-menu ul li a {
    position: relative;
    color: rgb(140, 148, 163);
    text-decoration:none;
}

.footer-top .footer-widget .footer-menu ul li a::before {
    content: "";
    left: 0px;
    bottom: -5px;
    width: 0px;
    height: 2px;
    position: absolute;
    background-color: var(--primary);
    transition: all 0.3s ease 0s;
}

.footer-top .footer-widget .footer-menu ul li a svg {
    opacity: 0;
    position: relative;
    top: -2px;
    transition: all 0.3s ease 0s;
}

.footer-top .footer-widget .footer-menu ul li a:hover::before {
    width: 100%;
}

.footer-top .footer-widget .footer-menu ul li a:hover svg {
    margin-left: 5px;
    opacity: 1;
}

.footer-bottom {
    box-shadow: rgba(54, 59, 71, 0.5) 0px 1px 0px inset;
    padding: 24px 0px;
}

.footer-bottom .copywright-text p {
    font-size: 14px;
    letter-spacing: -0.01em;
    color: rgb(140, 148, 163);
    margin: 0;
}

.footer-bottom .copywright-text p a {
    color: rgb(255, 255, 255);
}

@media only screen and (max-width:1000px) {
    .footer-textarea {
        margin-bottom: 3rem;
    }

    .footer-top {
        padding: 40px 0;
    }
}

.firstwidget img:first-child {
    width: auto;
    height: 60px;
}

@media (min-width: 1200px){
    .footer-top .col:first-child {
        min-width: 33%;
    }
}


#userFormModal .modal-content{
    background-image: radial-gradient(#236C63, #000000 50%);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom:1rem;
}

#userFormModal .modal-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#userFormModal .modal-header button{
    background:none;
    outline:none;
    border:none;
    padding:0;
    font-size:25px;
}

body .tutor-alert.tutor-success{
/*    background:#000; */
    background:#fff;
    border-left-width: 4px;
}

body .tutor-alert .tutor-alert-text{
/*    color:#fff; */
    color:#000;
}

body .tutor-alert.tutor-danger{
/*    background:#000; */
    background:#fff;
    border-left-width: 4px;
}

@media (max-width:500px){
    body .book_seat .col-lg-6.mb-5,
    .counter_section h2,
    .counter_section p.subtitle,
    .more_course .content{
        text-align:center;
    }
    
    .event_card .col-md-6:last-child{
        text-align: center;
        margin-top: 3rem;
    }
    
    .footer-top .col:first-child {
        min-width: 100%;
    }
    
    .book_seat{
        margin:0;
    }
}


@media (max-width: 768px) {
    .footer-top .col:last-child {
        min-width: 100%;
        margin-top: 2rem;
    }
    
    body #menu-event-menu{
        margin-left:0 !important;
    }
}

main iframe{
    border-radius:10px;
}