
:root {
    --primary-color: #F47742;
    --secondary-color: #F45742;
    --white-color: #FFFFFF;
    --second-white-color: #96979C;
    --card-color: #2B2B2B;
    --background-color: #070708;
    --black-color: #333333;
    --border-color: rgb(14 14 15 / 20%);
    --box-shadow-color: hsl(220deg 85% 57% / 20%);
    --red-color:#FF5D5D;
  }

@font-face {
    font-family: 'ClashGrotesk-Regular';
    src: url('../fonts/ClashGrotesk-Regular.otf') format('opentype');
}
@font-face {
    font-family: 'ClashGrotesk-Medium';
    src: url('../fonts/ClashGrotesk-Medium.otf') format('opentype');
}
@font-face {
    font-family: 'ClashGrotesk-Semibold';
    src: url('../fonts/ClashGrotesk-Semibold.otf') format('opentype');
}
@font-face {
    font-family: 'ClashGrotesk-Bold';
    src: url('../fonts/ClashGrotesk-Bold.otf') format('opentype');
}
@font-face {
    font-family: 'ClashGrotesk-Light';
    src: url('../fonts/ClashGrotesk-Light.otf') format('opentype');
}
@font-face {
    font-family: 'ClashGrotesk-Extralight';
    src: url('../fonts/ClashGrotesk-Extralight.otf') format('opentype');
}

html,
body {
    /*font-family: 'ClashGrotesk-Regular', sans-serif;*/
    font-family: "Instrument Sans", sans-serif;
    color: var(--white-color);
    background: var(--background-color);
    overflow-x: hidden;
    position: relative;
    z-index: 9;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}
p {
    font-size: 15px;
    line-height: 28px;
}
.container-fluid {
    max-width: 1400px;
}
header {
    background-color: var(--card-color);
    padding: 10px 0;
    text-align: center;
    position: fixed;
    z-index: 999;
    max-width: 100%;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}
header p {
    margin: 0;
}
.banner_section {
/*    background-image: url(../images/banner_head.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;*/
    padding: 100px 0;
    position: relative;
}
.banner_top h1 {
    font-family: 'ClashGrotesk-Semibold', sans-serif;
    font-size:62px;
    text-align: center;
}
.banner_top h1 span {
    display: block;   
}
.banner_top h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background-color: var(--white-color);
    color: var(--black-color);
    padding: 8px;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto;
    font-weight: 600;
    padding-right: 15px;
    margin-bottom: 30px;
}
.banner_top h6 img {
    max-width: 50px;
}
.banner_top p {
    font-size: 18px;
    color: var(--second-white-color);
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}
.btn_card .cta_button {
    background-image: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 5px 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 70px;
    border-radius: 4px;
    font-size: 20px;
    font-family: 'ClashGrotesk-Regular', sans-serif;
}
.btn_card .cta_button img {
    max-width:26px;
}
.btn_card p {
    color: var(--red-color);
    text-align: center;
    font-size: 18px;
    font-family: 'ClashGrotesk-Regular', sans-serif;
}
.btn_card p span {
    text-decoration: line-through;
}
.btn_card h6 {
    font-size: 16px;
    color: var(--second-white-color);
    text-align: center;
    font-family: 'ClashGrotesk-Regular', sans-serif;
}
.trainer-banner img {
    max-width: 900px;
    margin: 0 auto;
    display: block;
    margin-top: 60px;
}
.banner_top, .btn_card, .trainer-banner {
    position: relative;
}
.banner-top-image {
    position: absolute;
    max-width: 100%;
    top:20px;
    left: 0;
    right: 0;
}
.banner-bottom-image {
    position: absolute;
    max-width: 100%;
    bottom:160px;
    left: 0;
    right: 0;
}
h3.section_heading {
    color: var(--white-color);
    font-size: 38px;
    text-align: center;
    font-family: 'ClashGrotesk-Semibold', sans-serif;
}
.mark_main_card {
    overflow:hidden;
    padding:30px 0;
}
.mark_card {
    white-space: nowrap;
    animation: mark_animation 30s linear infinite;
}
@keyframes mark_animation {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(-100%);
    }
}
.logo_slide {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: center;
}
.logo_slide img {
    max-width: 150px;
    width: 150px;
    height: 80px;
    margin-bottom: 0;
}
.logo_section .btn_card .cta_button {
    margin-top: 20px;
    margin-bottom: 30px;
}
.who_section {
    /*background-color: rgb(0 0 0 / 20%);*/
    padding: 40px 0;
    padding-top: 80px;
}
p.section_paragraph {
    color: var(--second-white-color);
    text-align: center;
}
.who_main_card {
    margin-top:30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ffffff42;
}
.who_card {
    padding:15px 20px;
}
.who_card h4 {
    font-size: 20px;
    text-align: center;
    padding:5px 10px;
    margin: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    height:80px;
    border-radius: 20px;
    font-family: 'ClashGrotesk-Regular', sans-serif;
    background: rgba(15, 14, 14, 0.2); /* Like #0F0E0E @ 20% */
    backdrop-filter: blur(18px) saturate(150%) brightness(120%);
    -webkit-backdrop-filter: blur(18px) saturate(150%) brightness(120%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.webinar_section {
    /*background-color: rgb(0 0 0 / 20%);*/
    padding: 40px 0;
    position: relative;
    z-index: 9;
}
.webinar_main_card {
    margin-top:40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ffffff42;
}
.webinar_card {
    padding:30px 20px;
    text-align: center;
    border-radius: 20px;
    font-family: 'ClashGrotesk-Regular', sans-serif;
    background: rgba(15, 14, 14, 0.2); /* Like #0F0E0E @ 20% */
    backdrop-filter: blur(18px) saturate(150%) brightness(120%);
    -webkit-backdrop-filter: blur(18px) saturate(150%) brightness(120%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    height: calc(100% - 30px);
    margin-bottom:30px;

}
.webinar_card img {
    max-width: 80px;
    margin-bottom: 20px;
}
.webinar_card h5 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'ClashGrotesk-Regular', sans-serif;
}
.webinar_card ul {
    padding-left: 0px;
}
.webinar_card ul li {
    list-style: none;
}
.webinar_card ul li p {
    color: var(--second-white-color);
    font-size: 14px;margin: 0;
}

.webinar_section .btn_card .cta_button {
    margin-top: 40px;
}
.res_row {
    display: flex;
    align-items: end;
}
.trainer_section {
    position: relative;
    z-index: 9;
}
.trainer-image img {
    max-width: 100%;
}
.trainer-content {
    padding-right: 100px;
}
.trainer-content h2 {
    font-size: 50px;
    margin-bottom: 20px;
    font-family: 'ClashGrotesk-Bold', sans-serif;
}
.trainer-content h2 span {
    font-size:28px;
    display: block;
    font-family: 'ClashGrotesk-Regular', sans-serif;
}
.main_btn_card {
    padding: 50px 0;
    padding-bottom: 30px;
    border-top: 1px solid #ffffff42;
    border-bottom: 1px solid #ffffff42;
    text-align: center;
    position: relative;
    z-index: 9;
}
.main_btn_card .btn_card .cta_button {
    margin-top: 40px;
}
.main_btn_card h6 {
    font-family: 'ClashGrotesk-Regular', sans-serif;
    font-size: 17px;
}
.main_btn_card h5 {
    font-family: 'ClashGrotesk-Regular', sans-serif;
    font-size: 24px;
}
.faq_section {
    padding: 80px 0;
    position: relative;
    z-index: 9;
}
.faq_heading h5 {
    text-align: center;
    font-size: 17px;
    font-family: 'ClashGrotesk-Regular', sans-serif;

}

.faq_main_card {
    max-width: 900px;
    margin: 0 auto;
    margin-top:30px;
}

.faq_item_card {
    border-radius: 8px;
    border: 1px solid var(--white-color);
}

    /*.faq_item_card:has(.faq-question.active) {
        border: 2px solid #FF7841;
    }*/


.faq-item {
    padding:20px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-radius:8px;
    background: #2B2B2B;
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-question {
    font-size: 16px;
    font-weight:500;

}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0px 20px;
}

    .faq-answer.active {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .faq-answer p {
        font-size: 16px;
        color: var(--second-white-color);
        line-height: 28px;
        margin-bottom:0;
    }

.icon-container img {
    max-width:22px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

    .icon-container img.active {
        transform: rotate(90deg);
    }


.faq_item_card {
    border-radius: 8px;
    background: var(--background-color);
    margin-bottom: 25px;
}
.footer {
    padding-bottom: 130px;
    position: relative;
    z-index: 9;
}
.footer h5 {
    font-family: 'ClashGrotesk-Semibold', sans-serif;
    font-size: 36px;
    text-align: center;
}
.footer h5 span {
    display: block;
}
.footer .btn_card .cta_button {
    margin-top: 30px;
}
img.circle-cut {
    max-width:100%;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: 0 auto;
    z-index: 1;
}
.trainer_mob, .left_mob {
    display: none;
}
.banner_top h6.left_mob {
    display: none;
}

.fix_footer {
    padding:10px 0px;
    position: fixed;
    left: 0;
    right: 0;
    max-width: 100%;
    margin: 0 auto;
    bottom: 0;
    background-color: #F45742;
    z-index: 999;
}
.fix_footer_head {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.fix_footer_head h6 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.footer_btn {
    display: flex;
    gap:20px;
    align-items: center;
}
.fix_footer_head p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}
.fix_footer_head p span {
    font-weight: 400;
    text-decoration: line-through;
}
.cta_reg {
    font-size: 16px;
    font-weight: 500;
    background: #000000;
    color: var(--white-color);
    padding: 6px 25px;
    border-radius:6px;
    display: block;
    width: fit-content;
}
.limited_p {
    display: none;
}

/*----Responsive Design Start----*/

@media(max-width: 991px){
    .trainer-banner img {
        max-width: 100%;
    }
    .banner_top h1 {
        font-size: 54px;
    }
    .who_card {
        padding: 10px 0px;
    }
    .webinar_card {
        padding: 30px 10px;
    }
    .trainer-content {
        padding-right: 0;
        text-align: center;
    }
    .col-lg-4.b {
        display: none;
    }
    .trainer_mob {
        display: block;
        max-width: 220px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    h3.section_heading {
        font-size: 30px;
    }
}

@media(max-width: 767px){
    .who_card h4 {
        font-size: 16px;
    }
    .webinar_card img {
        max-width: 45px;
        margin-bottom: 15px;
    }
    .webinar_card h5 {
        font-size: 16px;
        line-height: 26px;
    }
    .webinar_card ul li p {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .footer h5 {
        font-size: 26px;
    }
}

@media(max-width: 575px){
    .left_desk {
        display: none;
    }
    .left_mob {
        display: block;
        font-size: 12px;
    }
    header {
        padding: 5px 0;
    }
    .banner_top h6.left_desk {
        display: none;
    }
    .banner_top h6.left_mob {
        display: flex;
        font-size: 12px;
    }
        .banner_top h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .banner_section {
        padding: 80px 0;
        position: relative;
    }
    .banner_top p {
        font-size: 15px;
        margin-top: 10px;
        line-height: 26px;
    }
    .btn_card .cta_button {
        padding: 4px 15px;
        gap: 10px;
        margin-bottom: 15px;
        margin-top: 20px;
        font-size: 18px;
    }
    .btn_card .cta_button img {
        max-width: 22px;
    }
    .btn_card p {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .btn_card h6 {
        font-size: 14px;
    }
    .trainer-banner img {
        margin-top: 20px;
    }
    .banner_top h6 img {
    max-width: 46px;
}
h3.section_heading {
        font-size:40px;
    }
    .logo_slide img {
    max-width: 100px;
    width: 100px;
    height: auto;
}
.logo_slide {
    gap: 40px;
}
.mark_main_card {
    padding: 10px 0;
}
.who_section {
    padding: 20px 0;
    
}
.who_card {
        margin: 0px 50px;
    }
    .who_card h4 {
        font-size:20px;
        height: auto;
        padding:25px 15px;
    }
    .who_main_card, .webinar_main_card {
    margin-top: 0px;
    padding-bottom: 30px;
}
.webinar_section {
    padding: 20px 0;
}
.faq_section {
    padding: 40px 0;
}
.footer_btn p {
    display: none;
}
.limited_p {
    display: block;
    font-size: 15px !important;
}

}

@media(max-width: 479px){
    p {
        font-size: 14px;
        line-height: 24px;
    }
    .banner_top h1{
        font-size: 32px;
        line-height: 46px;
    }
    h3.section_heading {
        font-size: 26px;
    }
    p.section_paragraph {
        font-size: 14px;
        line-height: 22px;
    }
        .who_card {
        margin: 0px 30px;
    }
    .who_card h4 {
        font-size: 16px;
        height: auto;
        padding: 15px 10px;
        border-radius: 12px;
    }
    .trainer-content h2 {
    font-size: 32px;
}
.trainer-content h2 span {
    font-size: 20px;
}
.trainer_mob {
        display: block;
        max-width: 180px;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .main_btn_card h6 {
    font-size: 15px;
}
.main_btn_card h5 {
    font-size: 20px;
}
.main_btn_card{
    padding: 30px 0;
    padding-bottom: 20px;
}
.faq_heading h5 {
    font-size: 15px;
}
.faq-answer p {
    font-size: 14px;
    line-height: 24px;
}
.faq-item {
    padding: 10px 15px;
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0px 15px;
}
.faq-answer.active {
    margin-top: 10px;
    margin-bottom: 10px;
}
.icon-container img {
    max-width: 18px;
}
.footer h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .faq_section {
    padding: 40px 0;
    padding-bottom: 20px;
}
.fix_footer_head h6 {
    font-size: 16px;
}
.fix_footer_head {
    gap: 10px;
}
.cta_reg {
    font-size: 14px;
    padding: 6px 15px;
}
.footer {
    padding-bottom:90px;
}
.limited_p {
        font-size: 14px !important;
    }
}

/*----Responsive Design End----*/