
@font-face {
    font-family: 'Outfit-Black';
    src: url("../fonts/Outfit-Black.ttf") format("truetype");
}

@font-face {
    font-family: 'Outfit-Bold';
    src: url("../fonts/Outfit-Bold.ttf") format("truetype");
}

@font-face {
    font-family: 'Outfit-ExtraBold';
    src: url("../fonts/Outfit-ExtraBold.ttf") format("truetype");
}

@font-face {
    font-family: 'Outfit-ExtraLight';
    src: url("../fonts/Outfit-ExtraLight.ttf") format("truetype");
}

@font-face {
    font-family: 'Outfit-Light';
    src: url("../fonts/Outfit-Light.ttf") format("truetype");
}

@font-face {
    font-family: 'Outfit-Medium';
    src: url("../fonts/Outfit-Medium.ttf") format("truetype");
}

@font-face {
    font-family: 'Outfit-Regular';
    src: url("../fonts/Outfit-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'Outfit-SemiBold';
    src: url("../fonts/Outfit-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: 'Outfit-Thin';
    src: url("../fonts/Outfit-Thin.ttf") format("truetype");
}

@font-face {
    font-family: "Gilroy-Regular";
    src: url("../../frontend/fonts/Gilroy-Regular.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Gilroy-Semibold";
    src: url("../../frontend/fonts/Gilroy-Semibold.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Gilroy-Bold";
    src: url("../../frontend/fonts/Gilroy-Bold.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Gilroy-Medium";
    src: url("../../frontend/fonts/Gilroy-Medium.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "BebasNeueBold";
    src: url("../../frontend/fonts/BebasNeueBold-w1w42.otf") format("truetype");
    font-style: normal;
}
/* * {
    padding: 0px;
    margin: 0px;
    font-family: "Gilroy-Regular";
} */

body{
    padding: 0px;
    margin: 0px;
    color: #000000;
    font-family: 'Outfit-Medium';
}

p,a,li{
    font-size: 17px;
}

p{
   font-family: 'Outfit-Regular'; 
}

img{
    max-width: 100%;
}

/*anousment bar css*/

.anousment_bar {
    background: #03045E;
    padding: 5px 0px;
}

.anousment_text p {
    color: #fff;
    margin: 0px;
    font-size: 14px;
    font-family: 'Outfit-SemiBold';
    letter-spacing: 1px;
}

span.orange_color {
    color: #F06722;
}

span.green_color {
    color: #2CA25E;
}

/*anousment bar css*/

/*header css*/

header.header_section {
    border-top: 4px solid #F06722;
    /*padding: 13px 0px;*/
    background: #fff;
    position: sticky;
    top: 0px;
    z-index: 1200; /* Higher than toast z-index */
    box-shadow: 0px 3px 6px #00000029;
}

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

.logo a {
    display: block;
    text-decoration: none;
}

.logo a img {
    width: 215px;
}
p[data-f-id="pbf"] {
    display: none !important;
}


.header_menu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
}

.header_menu ul li {
    margin-right: 33px;
}

.header_menu ul li:last-child {
    margin-right: 0px;
}

.header_menu ul li a {
    text-decoration: none;
    color: #000;
    line-height: 75px;
    display: block;
}

.header_menu ul li a:hover {
    color: #F06722;
}

.login_button a {
    display: inline-block;
    background: #2CA25E;
    color: #fff;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 30px;
}

.login_button a:hover {
    background: #F06722;
}

.toggle_button {
    width: 30px;
    margin-left: 10px;
    display: none;
}

.login_button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

li.dropdown_have_menu {
    position: relative;
}

.submenu_bar {
    position: absolute;
    background: #fff;
    width: 200px;
    left: 0px;
    top: 100%;
    box-shadow: 0px 6px 6px rgba(0 0 0/14%);
    display: none;
    z-index: 1000;
}

/* Show dropdown on hover */
.dropdown_have_menu:hover > .submenu_bar {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.submenu_bar a {
    display: block;
    padding: 7px 15px;
}

li.dropdown_have_menu > a {
    padding-right: 18px;
    position: relative;
}

li.dropdown_have_menu > a i {
    position: absolute;
    right: 0px;
        top: 50%;
    transform: translateY(-50%);
}

.submenu_bar a {
    line-height: initial !IMPORTANT;
}

/*header css*/

/*hero section css*/

section.hero_section {
    background: url(../image/hero_bg.jpg);
    background-size: cover;
    padding: 75px 0px;
}

.hero_content h5 {
    background: #DEDEFF;
    display: inline-block;
    font-size: 17px;
    padding: 7px 15px;
    border-radius: 30px;
}

.hero_content h1, .capcut_content h1 {
    font-family: 'Outfit-Bold';
    font-size: 54px;
    margin: 15px 0px;
    margin-top: 0px;
}

.hero_content p {
    /* font-family: 'Outfit-Medium'; */
    font-size: 18px;
}

.hero_content ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
}

.hero_content ul li {
    background: url(../image/check.png);
    width: 248px;
    font-family: 'Outfit-Medium';
}

.hero_content ul li {
    padding: 5px;
    background-repeat: no-repeat;
    background-size: 23px;
    padding-left: 30px;
    background-position-y: 5px;
}

.hero_content ul {
    margin: 20px 0px;
}

.button__group a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    min-width: 165px;
    margin-right: 13px;
    border-radius: 30px;
    height: 45px;
    padding: 0px 15px;
    transition: 0.5s;
}

.button__group a img {
    height: 24px;
}

a.green_button img {
    margin-left: 9px;
}

a.light_button img {
    margin-right: 9px;
}

.button__group a:last-child {
    margin: 0px;
}

a.green_button {
    border: 1px solid #2CA25E;
    background: #2CA25E;
    color: #fff;
}


.button__group a:hover {
    background: #F06722;
    border-color: #F06722;
}

a.light_button {
    border: 1px solid #F06722;
    background: #fff;
    color: #03045E;
}

a.light_button:hover {
    color: #fff;
}

a.light_button:hover img {
    filter: brightness(0) invert(1);
}

.hero_image {
    padding-right: 5%;
}

.hero_image img{
    animation: slider 2s ease-in-out infinite;
}

@keyframes slider{
    0%{
        transform: translateY(20px);
    }

    50%{
        transform: translateY(0px);
    }

    100%{
        transform: translateY(20px);
    }
}


/*hero section css*/


/*why css*/

section.why_choose_section {
    margin: 60px 0px;
}

.title_text h5.orange_bg {
    background: #FFEEE5;
}

.why_block {
    border: 4px solid #F2F2F2;
    border-radius: 15px;
    padding: 28px;
    height: 100%;
    text-align: center;
    background: #fff;
    transition: .5s;
}

.why_block h2 {
    color: #101F32;
    font-size: 46px;
    font-family: 'Outfit-Bold';
}

.why_block img {
    height: 80px;
}

.why_block p {
    margin: 0px;
}

.why_block span.counter:after {
    content: '+';
    color: #F06722;
}

.why_block:hover {
    box-shadow: 0px 0px 20px rgba(0 0 0/20%);
    border-color: #2ca25e;
}

/*why css*/


/*package css*/

.package_block {
    background-color: #fff;
    border-radius: 17px;
    overflow: hidden;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0px 0px 15px rgba(0 0 0 / 20%);
    background-image: url(../image/package-bg.png);
    background-size: cover;
    transition: 0.5s;
    height: 100%;
}

.package_block:hover{
    background-image: url(../image/package-bg-2.png);
    box-shadow: none;
}

.package_image {
    width: 200px;
    padding-right: 10px;
}

.package_content {
    width: calc(100% - 200px);
    padding-left: 18px;
}

.package_content h2 {
    font-family: 'Outfit-Medium';
    color: #000;
    font-size: 25px;
}

.package_ratting {
    display: flex;
    align-items: center;
    margin: 10px 0px;
    color: #000000;
    font-size: 16px;
    font-family: 'Outfit-Medium';
}

.package_ratting img {
    height: 21px;
    margin-right: 5px;
}

.package_content h3 span {
    font-family: 'Outfit-Bold';
    margin-right: 10px;
}

span.selle_price {
    color: #F06722;
    font-size: 30px;
}
.package__details span.selle_price {
    font-size: 15px !important;
}
.package__details h3{
    line-height: 20px;
    margin-bottom: 0px;
}
.package__details .full_button a {
    display: flex !IMPORTANT;
    min-width: unset;
    width: 100%;
    align-items: center;
    height: 40px;
}
.package__details .full_button{
    margin-top: 20px;
}
.package__details span.regular_price{
    font-size: 15px !important;
    text-decoration: none;
}
.package__details{
    display: flex;
    flex-wrap: nowrap;
}
span.regular_price {
    font-size: 24px;
    color: #7A7A7A;
    text-decoration: line-through;
}

.package_content h3 span:last-child {
    margin: 0px;
}

.package_content ul {
    list-style: none;
    padding: 0px;
    margin: 15px 0px;
}

.package_content ul li {
    font-family: 'Outfit-Medium';
    color: #000;
    padding: 6px;
    padding-left: 28px;
    background: url(../image/checklist.png);
    background-repeat: no-repeat;
    background-size: 23px;
}

.full_button a {
    display: flex !IMPORTANT;
    min-width: unset;
    width: 100%;
}

.package_content ul li {
    background-position-y: 6px;
}

.button_green_hover a:hover {
    background: #2ca25e;
    border-color: #2ca25e;
}

.why_choose_section .col-md-6 {
    margin-bottom: 35px;
}

/*package css*/


/*banefits css*/

section.benefits_section {
    padding: 60px 0px;
    background: #F9F9F9;
}

.benefits_block {border: 2px solid #FFEEE5;border-radius: 15px;padding: 28px;height: 100%;text-align: center;background: #fff;transition: .5s;}

.benefits_block img {
    height: 80px;
    margin-bottom: 15px;
}

.benefits_block h2 {
    font-family: 'Outfit-SemiBold';
    font-size: 23px;
}

.benefits_block p {
    margin: 0px;
}

.benefits_block:hover {
    border-color: #2ca25e;
}

/*banefits css*/


/*animated css*/

.service_slide_section{
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 0;
    background: #FFE1D1; /* adjust */
  }

  .service_slide_block{
    width: 100%;
  }

  /* The wrapper that will be duplicated and translated */
  .service_inner_slide_wrap{
    display: flex;
    gap: 18px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
  }

  .service_inner_slide{
    flex: 0 0 auto;
    padding: 5px 18px;
    border-radius: 8px;
    font-weight: 600;
    
  }

  .service_inner_slide a{
    color: #000000;
    text-decoration: none;
    display: inline-block;
    font-family: 'Outfit-SemiBold';
    font-size: 30px;

  }

  /* Optional: make the block look continuous by removing gap when wrapping */
  .service_inner_slide_wrap .service_inner_slide + .service_inner_slide{
    margin-left: 0;
  }

  .service_slide_section.animated_one {
        top: 50%;
        position: absolute;
        transform: translateY(-50%) rotate(3deg);
    }

    .service_slide_section.animated_two {
        position: absolute;
        top: 50%;
        transform: translateY(-50%) rotate(-5deg);
    }

    section.animated_section {
        height: 230px;
        background: #F9F9F9;
        overflow: hidden;
        position: relative;
        margin-top: -60px;
    }

/*animated css*/


/*choose section css*/

.wt_max_why {
    max-width: 594px;
    margin-bottom: 25px;
}

.image_box {
    background: #F5F5FF;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.image_box_image {
    width: 55px;
}

.image_box_content {
    width: calc(100% - 55px);
    padding-left: 15px;
}

.image_box_content h2 {
    font-family: 'Outfit-SemiBold';
    font-size: 24px;
}

.image_box_content p {
    margin: 0px;
}

.choose_section .col-md-8 .row .col-md-6 {
    margin-bottom: 20px;
}

section.choose_section {
    padding: 50px 0px;
}

.row.baseline_section {align-items: end;}

/*choose section css*/

/*instructors section css*/

section.instructors_section {
    padding: 50px 0px;
    background: url(../image/infra-bg.png);
    background-size: cover;
    margin-bottom: 50px;
}

.instructors_block {
    background: #fff;
    border: 1px solid #FFEEE5;
    padding: 10px;
    border-radius: 19px;
    position: relative;
}

.instructors_block_image img {
    height: 298px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.instructors_block_content {
    position: absolute;
    background: #F2F2F2;
    border-radius: 16px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    padding: 14px;
    margin-top: -37px;
}

.instructors_block_content h4 {
    text-transform: uppercase;
    font-family: 'Outfit-SemiBold';
    font-size: 19px;
}

.instructors_block_content p {
    margin: 0px;
    color: #F06722;
    font-size: 14px;
}

.instructors_main .swiper-pagination {
    margin-top: 75px;
}

.instructors_main .swiper-pagination span.swiper-pagination-bullet-active:before {
    background:#F06722;
}

/*instructors section css*/


/*founder css*/

.founder_row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.founder_image {
    width: 40%;
}

.founder_content {
    width: 60%;
    padding: 20px;
    padding-left: 50px;
    padding-right: 50px;
}

.founder_main {
    background: #F9F9F9;
    border-radius: 25px;
    position: relative;
}

section.founder_section {
    margin: 65px 0px;
    margin-bottom: 95px;
}

.founder_content_border {
    border-bottom: 2px solid #0096C7;
    margin-bottom: 15px;
}

.founder_content_border p {
    font-family: 'Outfit-SemiBold';
}

.founder_main:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    width: 95%;
    height: 100%;
    transform: translateX(-50%);
    background: #ECECEC;
    border-radius: 25px;
    z-index: -1;
}

.founder_main:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    width: 90%;
    height: 100%;
    transform: translateX(-50%);
    background: #DEDEDE;
    border-radius: 25px;
    z-index: -2;
}


/*founder css*/


/*feedback css*/

section.feedback_section {
    padding: 75px 0px;
    position: relative;
    background: url(../image/testimonial_bg.png);
    background-size: cover;
}

.feedback_inner {
    position: relative;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #ddd;
    margin-top: 31px;
}

.name_feddback_block {
    background: #000;
    padding: 28px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 0px 0px 15px 15px;
}

.name_feddback_block h4 {
    color: #fff;
    font-size: 17px;
    margin: 0px;
}

img.feed_rate {
    height: 19px;
}

img.quate_feed {
    position: absolute;
    top: -35px;
    height: 68px;
    left: 30px;
}

.content_feedback {
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 268px;
}

img.ratting_feed {
    margin-left: auto;
    height: 50px;
    margin-bottom: 15px;
}

.swiper-pagination {
    position: relative !IMPORTANT;
    margin-top: 30px;
}

.swiper-pagination span {
    height: 15px;
    width: 15px;
    opacity: 1;
    background: transparent;
    border: 1px solid #000;
    position: relative;
}

.swiper-pagination span.swiper-pagination-bullet-active:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 70%;
    width: 70%;
    border-radius: 50%;
    background: #2CA25E;
    transform: translate(-50%, -50%);
}

img.image_absolute {
    position: absolute;
    width: 70px;
}

section.feedback_section .container {
    position: relative;
}

.top_right {
    right: 3%;
}

.bottom_left {
    bottom: 46px;
    left: 3%;
}

/*feedback css*/


/*faq css*/

section.faq_section {
    margin: 75px 0px;
}

.title_text h5 {
    background: #F2F2F2;
    display: inline-block;
    font-size: 17px;
    padding: 7px 15px;
    border-radius: 30px;
}

.faq_block .accordion-item {
    margin-bottom: 15px;
    border: none !IMPORTANT;
    background: #F2F2F2;
    border-radius: 27px !IMPORTANT;
    overflow: hidden;
}

.faq_block .accordion-item:last-child {
    margin: 0px;
}

.faq_block .accordion-item .accordion-header button {
    background: #F2F2F2;
    color: #000;
    font-size: 18px;
    font-family: 'Outfit-Regular';
    outline: none !important;
    box-shadow: none;
}

.faq_block .accordion-item .accordion-header button:after {
    filter: brightness(0) invert(0);
}

.accordion-body p {
    font-family: 'Outfit-Regular';
}

/*faq css*/


/*cta css*/

section.cta_section {
    margin: 75px 0px;
}

.title_text h2 {
    color: #000000;
    font-family: 'Outfit-Bold';
    font-size: 40px;
    margin-bottom: 13px;
}

.cta_block {
    background: url(../image/cta_bg.png);
    background-size: cover;
    padding: 50px;
    border-radius: 23px;
}

.subscription_block {
    position: relative;
    max-width: 77%;
}

.subscription_block input {
    width: 100%;
    height: 45px;
    border-radius: 30px;
    padding: 5px 18px;
    border: 1px solid #FFEEE5;
    background: #fff;
    color:#000;
    outline: none;
    box-shadow: none;
}

.subscription_block input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
.subscription_block input::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
.subscription_block input:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
.subscription_block input:-moz-placeholder { /* Firefox 18- */
  color: #000;
}

button.submit_button {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 45px;
    border: none !IMPORTANT;
    outline: none;
    box-shadow: none;
    background: #2CA25E;
    color: #fff;
    font-family: 'Outfit-Medium';
    padding: 5px 20px;
    border-radius: 30px;
}

button.submit_button:hover {
    background: #F06722;
}

/*cta css*/




/*footer css*/

.border_block {
    display: block;
    height: 16px;
    position: relative;
}

.border_block:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 6px;
    background: #2CA25E;
    width: 100%;
}

.border_block:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 4px;
    background: #F06722;
    width: 100%;
}

footer.footer_section {
    background: #000000;
    padding: 50px 0px;
}

.footer_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.footer1 {
    width: 390px;
}

.footer2, .footer3 {
    width: 188px;
}

.footer_widget p {
    color: #fff;
}

.footer_widget h4 {
    color: #fff;
    font-family: 'Outfit-SemiBold';
    font-size: 20px;
    margin-bottom: 15px;
}

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

.footer_widget ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-family: 'Outfit-Regular';
    font-size: 15px;
    padding: 5px 0px;
}

.footer1 p {
    margin-top: 10px;
    margin-bottom: 25px;
}

ul.soclial__media {
    display: flex;
    flex-wrap: wrap;
}

ul.soclial__media li {
    margin-right: 8px;
}

ul.soclial__media li:last-child {
    margin: 0px;
}

ul.soclial__media li a {
    padding: 0px;
}

ul.soclial__media li a img {
    height: 39px;
}

ul.soclial__media li a img:hover {
    opacity: 0.5;
}

.footer_widget ul li a:hover {
    color: #2CA25E;
}

.footer_info_inner {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer_info_icon {
    width: 40px;
}

.footer_info_content {
    width: calc(100% - 40px);
    padding-left: 9px;
}

.footer_info_content p {
    margin: 0px;
    font-family: 'Outfit-Regular';
    font-size: 14px;
}

.footer_info_content a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-family: 'Outfit-SemiBold';
}

.footer_info_inner:last-child {
    margin-bottom: 0px;
}

.footer4 {
    width: 310px;
}

.footer_info_content a:hover {
    color: #2CA25E;
}

.copyright_section {
    background: #3D3D3D;
    padding: 10px 0px;
}

.copyright_text p {
    margin: 0px;
    color: #fff;
}

/*footer css*/



/*detail page css*/

.detail_image {
    text-align: right;
}

section.page_detail_section {
    margin: 70px 0px;
}

.pack_inner {
    border: 3px solid #ddd;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.5s;
    height: 100%;
}

.pack_inner_image {
    position: relative;
}

a.play_button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #F06722;
    height: 60px;
    width: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    box-shadow: 0px 0px 20px rgba(0 0 0/20%);
}

.pack_inner_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pack_inner_profile_inf {
    width: calc(100% - 60px);
    padding-right: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.pack_inner_content {
    padding: 18px;
    /*padding-top: 43px;*/
}

.pack_inner_content h2, .pack_inner_content h2 a {
    text-decoration: none;
    font-size: 19px;
    display: block;
    color: #000;
    font-family: 'Outfit-SemiBold';
}

.pack_inner_content h2:hover, .pack_inner_content h2 a:hover {
    color: #2ca25e;
}

.pack_inner_row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.pack_inner_row img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.pack_inner_content h2 {
    margin-bottom: 19px;
}

.pack_inner:hover {
    border-color: #2ca25e;
}

.pack_inner_content {
    display: flex;
    flex-wrap: wrap;
}

.pack_inner_content h2 {
    /*width: calc(100% - 60px);
    padding-right: 10px;*/
    margin: 0px;
}

.pack_inner_button_video {
    margin-top: -32px;
    position: relative;
}

a.play_button:hover {
    color: #2ca25e;
}

section.page_detail_section .col-md-3 {
    margin-bottom: 15px;
}

.pack_inner_name p, .pack_inner_name p a {
    margin: 0px;
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.pack_inner_name {
    width: calc(100% - 45px);
    padding-left: 11px;
}

.model_video .btn-close {
    position: absolute;
    right: 0px;
    top: -30px;
    filter: invert(1) !IMPORTANT;
    opacity: 1;
    outline: none !IMPORTANT;
    box-shadow: none !IMPORTANT;
}

.model_video iframe, .model_video video {
    width: 100% !IMPORTANT;
    height: 450px;
    display: block;
    border-radius: 15px;
}

.model_video_section .modal-content {
    background: transparent !IMPORTANT;
}

.hero_content h2 {
    font-family: 'Outfit-Bold';
    font-size: 40px;
    margin: 0px;
}

/*detail page css*/


/*capcut page csss*/

section.capcut_section {
    background: linear-gradient(to left, #2ca25e7a, #f067224d);
    padding: 75px 0px;
}


.capcut_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 15px 0px;
}

.capcut_row img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.capcut_profile {
    width: calc(100% - 65px);
    padding-left: 15px;
}

.capcut_profile a, .capcut_profile a h4 {
    text-decoration: none;
    display: block;
    color: #000;
    font-size: 16px;
}

/*.capcut_content h1 {
    color: #fff;
}

.capcut_content p {
    color: #fff;
}*/

.capcut_content p i {
    color: #ffc017;
}

.capcut_profile p {
    margin: 0px;
}

.certificate_block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.certificate_block p {
    margin: 0px;
    margin-right: 25px;
}

.certificate_block p img {
    /*filter: invert(1);*/
    height: 22px;
    margin-right: 3px;
}

.certificate_block p strong {
    font-family: 'Outfit-SemiBold';
}

img.global_image {
    margin-right: 15px !Important;
}

.capcut_detail_iframe {
    background: #fff;
    padding: 8px;
    border-radius: 15px;
}

.capcut_detail_iframe iframe {
    width: 100% !IMPORTANT;
    height: 387px !IMPORTANT;
    border-radius: 15px;
    display: block;
}

.capcut_overview {
    border: 4px solid #F2F2F2;
    border-radius: 15px;
    padding: 28px;
    height: auto;
    background: #fff;
    transition: .5s;
    position: sticky;
    top: 100px;
}

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

.capcut_overview_row {
    margin-bottom: 10px;
}

.capcut_overview_title {
    font-family: 'Outfit-SemiBold';
    font-size: 17px;
}

.capcut_overview_number {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 7px;
    min-height: 31px;
}

.capcut_overview_row:last-child {
    margin: 0px;
}

.capcut_overview a.green_button {
    display: flex;
    width: 100%;
}

.capcut_overview .button__group {
    margin-top: 20px;
}

section.capcut_detail_section {
    padding: 75px 0px;
}

.capcut_detail_image img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.capcut_detail_image {
        margin-bottom: 20px;
    height: 400px;
    width: 400px;
}

.capcut_detail_tab ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.capcut_detail_tab ul li {
    margin-right: 10px;
}

.capcut_detail_tab ul li:last-child {
    margin-right: 0px;
}

.capcut_detail_tab ul li a {
    display: inline-block;
    text-decoration: none;
    min-width: 159px;
    border: 1px solid #2ca25e;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    font-size: 15px;
    background: #fff;
    color: #2ca25e;
}

.capcut_detail_tab {
    margin-bottom: 20px;
    background: #f3f3f3;
    border-radius: 30px;
    padding: 9px;
    position: sticky;
    top: 100px;
    z-index: 99;
}

.capcut_detail_tab ul li a.active, .capcut_detail_tab ul li a:hover {
    background: #2ca25e;
    color: #fff;
}

.overview_content {
    margin-bottom: 20px;
    padding: 25px;
    background: #f6f6f6;
    border-radius: 15px;
}

.overview_content:last-child {
    margin: 0px;
}

h2.overview_title {
    font-family: 'Outfit-SemiBold';
    font-size: 24px;
    margin-bottom: 30px;
    color: #f06722;
}

.overview_inner {
    max-height: 250px;
    overflow: hidden;
    position: relative;
}

a.show_more_button {
    text-decoration: none;
    color: #f06722;
}

a.show_more_button:hover {
    color: #2ca25e;
}

.overview_inner:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 100px;
    background: linear-gradient(0deg, #f6f6f6, transparent);
    width: 100%;
}

.row_capcut_deta {
    display: flex;
    flex-wrap: wrap;
}

.capcut_deta.col-md-6 {
    padding: 0px 10px;
}

.capcut_deta ul li {
    font-family: 'Outfit-Regular';
}

.instructor_row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.instructor_image {
    width: 140px;
}

.instructor_image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor_content {
    width: calc(100% - 140px);
    padding-left: 30px;
}

.instructor_content a, .instructor_content a h4 {
    text-decoration: none;
    font-family: 'Outfit-SemiBold';
    font-size: 20px;
    color: #000;
}

.instructor_content a:hover, .instructor_content a h4:hover {
    color: #f06722;
}

.instructor_content h3 {
    font-family: 'Outfit-Regular';
    font-size: 27px;
}

.instructor_content_rate {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.instructor_content_rate p {
    margin: 0px;
    margin-right: 15px;
}

.instructor_content_rate p i{
    color: #f06722;
}

.instructor_content_rate p span {
    background: #fff;
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 7px;
}

.instructor_content_rate a {
    font-size: 14px;
    font-family: 'Outfit-Regular';
}

.instructor_content_rate a img {
    height: 20px;
    margin-right: 6px;
}

.review_row_deta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.review_row_deta_block {
    background: #f067221a;
    text-align: center;
    width: 195px;
    padding: 20px;
    border-radius: 15px;
}

.review_row_deta_block h2 {
    font-family: 'Outfit-Bold';
    font-size: 50px;
}

.review_row_deta_block i {
    color: #f06722;
    font-size: 20px;
}

.review_row_deta_block h4 {
    margin-top: 5px;
    font-size: 19px;
    color: #f06722;
}

.review_row_deta_block_right {
    width: calc(100% - 195px);
    padding-left: 30px;
}

.review_row_deta_block_right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.rattings_deta_block i {
    color: #f06722;
    font-size: 20px;
}

.ratting_line_block p {
    margin: 0px;
    padding-left: 10px;
}

.ratting_line_block {flex: 1;display: flex;align-items: center;padding-left: 12px;}

.ratting_line {
    height: 15px;
    flex: 1;
    background: #f06722;
}


.course_content_row a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-decoration: none;
    color: #000;
}

.course_content_video {
    width: 165px;
}

.course_content_video iframe {
    width: 100%;
    height: 85px;
    border-radius: 10px;
    display: block;
}

.course_content_row {
    margin-bottom: 15px;
}

.course_content_row:last-child {
    margin-bottom: 0px;
}

.course_content_title {
    width: calc(100% - 165px);
    padding-left: 15px;
}

.course_content_title h2 {
    text-decoration: none;
    font-size: 22px;
    font-family: 'Outfit-SemiBold';
    margin: 0px;
}

.overview_inner.active {
    max-height: none;
}

.overview_inner.active:before {
    display: none;
}

.overview_inner {
    transition: 0.5s;
}

/*capcut page css*/

/*checkout page css*/

ul.bradcrumb_bar {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.capcut_content.text-center.mb-0 h1 {
    margin: 0px;
}

ul.bradcrumb_bar li {
    margin-right: 8px;
    color: #000;
}

ul.bradcrumb_bar li a {
    color: #F06722;
    text-decoration: none;
}

ul.bradcrumb_bar li:last-child {
    margin-right: 0px;
}

ul.bradcrumb_bar li a:hover {
    color: #000;
}


section.checkout_section {
    margin: 75px 0px;
}

.checkout_login {
    padding: 15px;
    background: #fff;
    margin-top: 15px;
    border-radius: 10px;
    display: none;
}

.checkout_billink_address input {
    height: 20px;
    width: 20px;
    margin-right: 5px;
}

.checkout_billink_address {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form_row_checkout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
}

.login_button_checkout button {
    width: 100px;
    border: none;
    outline: none;
    box-shadow: none;
    background: #2ca25e;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 45px;
}

.login_button_checkout button img {
    height: 25px;
    margin-left: 6px;
}

.form_block {
    width: 41%;
}

.form_deta label {
    display: block;
    font-family: 'Outfit-SemiBold';
    color: #000;
    margin-bottom: 6px;
}

.login_button_checkout button:hover {
    background: #f06722;
}

.form_deta input {
    width: 100%;
    height: 45px;
    padding: 5px 15px;
    border-radius: 5px;
    border: 2px solid #ddd;
    outline: none;
    box-shadow: none;
}

.form_deta input:focus, .form_deta input:active, .form_deta input:focus-visible {
    border-color: #f06722;
}


.capcut_deta label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Outfit-SemiBold';
    font-size: 16px;
    color: #000;
}

.capcut_deta input, .capcut_deta select {
    width: 100%;
    height: 45px;
    padding: 5px 15px;
    border-radius: 5px;
    border: 2px solid #ddd;
    outline: none;
    box-shadow: none;
    font-family: 'Outfit-Regular';
}

.capcut_deta input:focus-visible, .capcut_deta select:focus-visible{
    border-color: #f06722;
}

.capcut_deta {
    margin-bottom: 15px;
}

.password_checkout_inner {
    position: relative;
}

.password_checkout_inner a {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 45px;
    background: #f0f0f0;
    width: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    border: 2px solid #ddd;
    color: #000;
}

.password_checkout_inner input {
    padding-right: 50px;
}

.sponser_block {
    position: relative;
}

.sponser_block button.apply_button {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 45px;
    padding: 5px 20px;
    border: none !IMPORTANT;
    outline: none;
    box-shadow: none;
    background: #2ca25e;
    color: #fff;
    border-radius: 4px;
}

.sponser_block button.apply_button:hover {
    background: #f06722;
}

.sponser_block input {
    padding-right: 88px;
}

.capcut_deta input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.capcut_deta.col-md-12 {
    padding: 0px 10px;
    font-family: 'Outfit-Regular';
}

.checkout_info_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.checkout_info, .checkout_info_total {
    font-size: 20px;
    font-family: 'Outfit-SemiBold';
    color: #f06722;
}

.checkout_info_deta {
    font-family: 'Outfit-Medium';
    font-size: 16px;
}

.checkout_info_deta_price {
    font-family: 'Outfit-Regular';
}

.checkout_info_deta_price {
    font-size: 16px;
}

.info_checkout_total {
    margin: 15px 0px;
}

.checkout_main_button button {
    height: 45px;
    padding: 5px 20px;
    border: 1px solid #F06722;
    outline: none;
    box-shadow: none;
    background: #fff;
    color: #03045E;
    width: 100%;
    border-radius: 30px;
    font-size: 18px;
    font-family: 'Outfit-SemiBold';
}

.checkout_main_button button:hover {
    background: #2ca25e;
    border-color: #2ca25e;
    color: #fff;
}

.capcut_deta.col-md-12 a {
    text-decoration: none;
    color: #000;
}

.capcut_deta.col-md-12 a:hover {
    color: #f06722;
}

.password_checkout_inner a:hover {
    color: red;
}

section.related_packages {
    margin: 75px 0px;
}

/* Hide video play icon from card content */
.capcut_detail_iframe::before,
.capcut_detail_iframe::after,
.capcut_detail_iframe *::before,
.capcut_detail_iframe *::after {
    display: none !important;
    content: none !important;
}

/* Hide any play icons in the hero section YouTube video */
.capcut_section .capcut_detail_iframe .play-icon,
.capcut_section .capcut_detail_iframe .play_button,
.capcut_section .capcut_detail_iframe [class*="play"],
.capcut_section .capcut_detail_iframe [id*="play"] {
    display: none !important;
}

/* Keep play icon in Course Videos section */
#course .video-item::before {
    display: block !important;
}

/* Hide duplicate play icons in Course Videos section */
#course .video-item .play-icon:not(:first-child),
#course .video-item .play_button:not(:first-child),
#course .video-item [class*="play"]:not(:first-child) {
    display: none !important;
}

/* Ensure only one play icon shows per video item */
#course .video-item .play-icon,
#course .video-item .play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Hide any extra play icons that might be added dynamically */
#course .video-item > * > .play-icon,
#course .video-item > * > .play_button {
    display: none !important;
}

#course .video-item .video-thumbnail .play-icon,
#course .video-item .video-thumbnail .play_button {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Course Videos Styles */
/* Hide play icon when video is playing */
#youtube-player.playing ~ .play-icon {
    display: none !important;
}

/* Global rule to prevent duplicate play icons */
.video-thumbnail .play-icon:not(:only-child):not(:first-child),
.video-thumbnail .play_button:not(:only-child):not(:first-child) {
    display: none !important;
}

/* Ensure single play icon per video thumbnail */
.video-thumbnail {
    position: relative;
}

.video-thumbnail .play-icon:only-child,
.video-thumbnail .play_button:only-child,
.video-thumbnail .play-icon:first-child,
.video-thumbnail .play_button:first-child {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 5 !important;
}
.course-videos-list {
    margin-top: 20px;
}

.video-item {
    display: flex;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    /* position: relative; */
    width: 200px;
    min-width: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.video-locked .video-thumbnail img:not(.blurred) {
    filter: blur(3px);
}

.video-locked-overlay {
        width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-locked-overlay .blurred {
    width: 100%;
    height: 120px;
    object-fit: cover;
    filter: blur(3px);
    opacity: 0.7;
}

.lock-icon {
    /* position: absolute; */
    top: 30%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    color: #fff;
    font-size: 24px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.buy-now-btn {
        /* position: absolute; */
    top: 50%;
    left: 50%;
    /* transform: translateX(-50%); */
    background: #F06722;
    border: 1px solid #F06722;
    color: white !important;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    /* opacity: 0; */

    /* transition: opacity 0.3s ease, background 0.3s ease; */
}
.buy-now-btn:hover{
    background: #2CA25E;
    border-color: #2CA25E;
    color: white !important;
}

.video-locked:hover .buy-now-btn {
    opacity: 1;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F06722;
    font-size: 20px;
    transition: all 0.3s ease;
}

.play-video-btn:hover .play-icon {
    background: #F06722;
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
    font-family: 'Outfit-SemiBold';
    transition: filter 0.3s ease;
}

.video-info h4.blurred-text {
    color: transparent;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
    user-select: none;
}

.video-info h4.blurred-text .free-preview-badge {
    color: transparent !important;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

.free-preview-badge {
    color: #F06722;
    font-size: 0.85em;
    margin-left: 5px;
    font-weight: normal;
}

.video-duration {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
}

.video-duration i {
    margin-right: 5px;
    color: #F06722;
}

/* Video Modal */
.video-modal .modal-dialog {
    max-width: 900px;
}

.video-modal .modal-body {
    padding: 0;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-modal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-item {
        flex-direction: column;
    }
    
    .video-thumbnail {
        width: 100%;
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-thumbnail img,
    .video-locked-overlay .blurred {
        height: 180px;
    }
}

.related_package_block {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius:10px;
    overflow: hidden;
}

.elated_package_image img {
    height:250px;
    object-fit:contain;
    width:100%;
}

.elated_package_image a {
    padding: 15px;
    display:block;
}

.related_package_content {
    text-align: center;
    background: #fff;
}

.related_package_content a {
    text-decoration: none;
}

.related_package_content h2, .related_package_content h2 a {
    font-size: 17px;
    color:#000;
}

.related_package_content {
    padding: 15px;
}

.related_package_content h4 {
    font-size: 20px;
}

span.line_through {
    text-decoration: line-through;
}

a.related_button {
    display: inline-block;
    background: #2CA25E;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
}

a.related_button:hover{
    background:#f06722;
}

.checkout_total h2 {
    color: #2ca25e;
    font-family: 'Outfit-Bold';
    font-size: 28px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

/*checkout page css*/



.capcut_detail_view_deta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.certificate_block {
    flex: 1;
    padding-left: 20px;
}

.certificate_block p {
    margin: 0px;
    display: block;
    width: 100%;
    margin-bottom: 6px;
}


.before_remove .overview_inner:before {
    display: none;
}

.btn.theme__btn {
    background: linear-gradient(180deg, #F06722 0%, #FF0000 100%);
    border: 1px solid #F06722;
    border-radius: 28px;
    color: #ffffff;
    font-family: "Gilroy-Semibold";
    /* text-transform: uppercase; */
    padding: 10px 28px;
    font-size: 14px;
}
.btn.theme__btn:hover {
    background: #ffffff;
    color: #FF0000;
}
.login__screen .btn-text.forgot__password {
    color: #F06722;
}
.login__screen .custom-checkbox {
    display: flex;
    gap: 10px;
    align-items: center;
}
.login__screen .card-body {
    /* background: linear-gradient(90deg, #F06722 0%, #2CA25E 100%); */
    border: none;
    box-shadow: 0px 0px 10px #F06722;
    border-radius: 10px;
}

.login__screen .card-body .card-title {
    text-align: center;
    font-family: "Gilroy-Bold" !important;
}

.login__screen .card-body .label-text {
    font-family: "Gilroy-Semibold" !important;
    margin-bottom: 10px;
}

.login__screen .card-body .form-control {
    font-family: "Gilroy-Regular";
    margin-bottom: 0px;
    height: 50px;
}

.login__screen .card-body .input-box {
    margin-bottom: 20px;
}

.dont__account a {
    font-family: "Gilroy-Semibold";
    color: #F06722;
}
.dont__account a:hover {
    color: #F06722;
}
.btn.theme__btn {
  background: linear-gradient(180deg, #F06722 0%, #FF0000 100%);
  border: 1px solid #F06722;
  border-radius: 28px;
  color: #ffffff;
  font-weight: 700;
  /* text-transform: uppercase; */
  padding: 10px 28px;
  font-size: 14px;
}

.btn.theme__btn:hover {
  background: #ffffff;
  color: #FF0000;
}
.forgot-back-login{
    color: #F06722;
}
.forgot-back-login:hover{
    color: #F06722;
}
@media(max-width: 1400px){

    .hero_content h1, .capcut_content h1{
        font-size: 46px;
    }

    .why_block h2 {
        font-size: 34px;
    }

    .why_block img {
        height: 70px;
    }

    .package_image {
        width: 150px;
    }
    .package__details  .package_image {
        min-width: 120px;
    }
    .package__details  .package_content {
    width: 100%;
}
    .package_content {
        width: calc(100% - 150px);
    }

    .benefits_block img {
        height: 70px;
    }

    .benefits_block h2 {
        font-size: 20px;
    }

    p, a, li {
        font-size: 16px;
    }

}



@media(max-width: 1200px){

    .logo a img {
        width: 180px;
    }

    .header_menu ul li {
        margin-right: 20px;
    }

    .hero_content h1, .capcut_content h1 {
        font-size: 40px;
    }

    .title_text h2 {
        font-size: 32px;
    }

    .title_text h5 {
        font-size: 14px;
    }

    .why_block {
        padding: 20px;
    }

    .package_image {
        width: 120px;
    }

    .package_content {
        width: calc(100% - 120px);
    }

    .package_content h2 {
        font-size: 22px;
    }

    .package_ratting img {
        height: 15px;
    }

    .package_ratting {
        font-size: 14px;
    }

    span.selle_price {
        font-size: 24px;
    }

    span.regular_price {
        font-size: 20px;
    }

    .service_inner_slide a {
        font-size: 23px;
    }

    .image_box_content h2 {
        font-size: 21px;
    }

    .instructors_block_content h4 {
        font-size: 17px;
    }

    .swiper-pagination span {
        height: 12px;
        width: 12px;
    }

    .founder_image {
        height: 100%;
    }

    .founder_row {
        /* align-items: stretch; */
    }

    .founder_image {
        width: 30%;
    }

    .founder_content {
        width: 70%;
        padding: 23px;
    }

    .footer_widget {
        width: 50% !IMPORTANT;
        margin-bottom: 15px;
    }

    section.page_detail_section .col-md-3 {
        width: 33.3%;
    }

    .hero_content h2{
        font-size: 31px;
    }

}


@media(max-width: 992px){
    .header_menu ul {
        flex-direction: column;
    }

    header.header_section {
        padding: 10px 0px;
    }

    .header_menu {
        position: absolute;
        left: 0px;
        top: 100%;
        background: #fff;
        width: 100%;
        display: none;
        max-height: 300px;
        overflow-y: scroll;
    }

    .header_menu ul li {
        margin: 0px;
        padding: 8px 15px;
    }

    .header_menu ul li a {
        display: block;
        line-height: 26px;
    }

    .toggle_button {
        display: block;
        cursor: pointer;
    }

    .hero_section .col-md-6 {
        width: 100%;
    }

    section.hero_section .row {
        flex-direction: column-reverse;
    }

    section.hero_section {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .hero_content {
        margin-top: 45px;
    }

    section.why_choose_section .col-md-3 {
        width: 50%;
        margin-bottom: 15px;
    }

    .anousment_text p {
        font-size: 12px;
    }

    .why_choose_section .col-md-6 {
        width: 100%;
    }

    section.benefits_section .col-md-3 {
        width: 50%;
        margin-bottom: 15px;
    }

    .choose_section .col-md-8 .row .col-md-6 {
        width: 100%;
    }

    .founder_image {
        width: 100%;
    }

    .founder_image img {
        width: 100%;
        border-radius: 25px;
    }

    .founder_content {
        width: 100%;
    }

    section.cta_section .col-md-6 {
        width: 100%;
    }

    .subscription_block {
        max-width: 100%;
    }

    section.cta_section .col-md-6 h2 {
        text-align: center;
    }

    .cta_block {
        padding: 25px;
    }

    .copyright_text p {
        text-align: center;
    }

    .model_video iframe, .model_video video{
        height: 305px;
    }

    section.capcut_section {
        padding: 50px 0px;
    }

    .capcut_detail_iframe iframe {
        height: 245px !IMPORTANT;
    }

    section.capcut_detail_section .col-md-8, section.capcut_detail_section .col-md-4 {
        width: 100%;
    }

    .capcut_overview {
        margin-top: 25px;
    }

    .capcut_detail_tab ul li a {
        min-width: 127px;
        font-size: 13px;
    }

    .submenu_bar {
        position: static;
        box-shadow: none;
        width: 100%;
    }
}


@media(max-width: 767px){
    .faq_image {
        margin-bottom: 25px;
    }

    .title_text {
        text-align: center;
    }

    section.benefits_section .col-md-3 {
        width: 100%;
    }

    section.why_choose_section .col-md-3 {
        width: 100%;
    }

    img.image_absolute {
        width: 42px;
    }

    .footer_widget {
        width: 100% !IMPORTANT;
    }

    section.page_detail_section .col-md-3 {
        width: 100%;
    }

    .detail_image {
        text-align: center;
    }

    .detail_page h5 {
        font-size: 14px;
    }

    .detail_page h1 {
        font-size: 31px;
        margin-bottom: 10px;
    }

    .detail_page .hero_content {
        text-align: center;
    }

    .detail_page .hero_content .button__group {
        justify-content: center;
    }

   .hero_content h2 {
      font-size: 24px;
    }

    .capcut_content {
        margin-bottom: 25px;
    }

    section.capcut_detail_section {
        padding: 50px 0px;
    }

    .course_content_video {
        width: 100px;
    }

    .course_content_video iframe {
        height: 60px;
    }

    .course_content_title h2 {
        font-size: 18px;
    }

    h2.overview_title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .overview_content {
        padding: 15px;
    }

    .instructor_image {
        width: 100px;
    }

    .instructor_image img {
        width: 100px;
        height: 100px;
    }

    .instructor_content {
        width: calc(100% - 100px);
        padding-left: 15px;
    }

    .instructor_content a, .instructor_content a h4 {
        font-size: 16px;
    }

    .instructor_content h3 {
        font-size: 19px;
    }

    .instructor_content_rate p span {
        padding: 2px 5px;
    }


    .instructor_content_rate a {
        font-size: 14px;
    }

    .instructor_content_rate p {
        margin-right: 5px;
    }

    .review_row_deta_block {
        padding: 10px;
    }

    .review_row_deta_block h2 {
        font-size: 26px;
        margin: 0px;
    }

    .review_row_deta_block i {
        font-size: 14px;
    }

    .review_row_deta_block h4 {
        margin: 0px;
        font-size: 14px;
    }

    .review_row_deta_block {
        width: 120px;
    }

    .review_row_deta_block_right {
        width: calc(100% - 120px);
        padding-left: 10px;
    }

    .rattings_deta_block i {
        font-size: 13px;
    }

    .ratting_line {
        height: 10px;
    }

    .ratting_line_block p {
        font-size: 13px;
    }

    .capcut_overview {
        padding: 25px 10px;
    }

    .capcut_overview_title {
        font-size: 15px;
    }

    .capcut_overview_number {
        font-size: 11px;
        line-height: 18px;
    }

    .capcut_detail_tab ul {
        white-space: nowrap;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .capcut_row img {
        height: 50px;
        width: 50px;
    }

    .capcut_profile a, .capcut_profile a h4 {
        margin: 0px;
        font-size: 14px;
    }

    .capcut_profile p {
        font-size: 13px;
    }

    .certificate_block p img {
        height: 17px;
    }

    .certificate_block p {
        font-size: 13px;
        margin-right: 10px;
    }

    .certificate_block p img {
        margin-right: 10px;
    }

    .capcut_deta.col-md-6 {
        width: 100%;
    }

    .capcut_deta.col-md-12 a {
        display: inline-block;
    }

    .form_block {
        width: 100%;
        margin-bottom: 10px;
    }

    section.checkout_section, section.related_packages{
        margin: 50px 0px;
    }

    .capcut_deta.col-md-12.d-flex.align-items-center {
        flex-wrap: wrap;
    }
}


@media(max-width: 510px){
    .hero_content ul li {
        width: 100%;
    }

    .login_button a {
        font-size: 13px;
        padding: 8px 10px;
    }

    .logo a img {
        width: 160px;
    }

    p, a, li {
        font-size: 15px;
    }

    .button__group.d-flex {
        flex-wrap: wrap;
        gap: 5px;
    }

    .package_block {
        padding: 15px;
    }

    .package_image {
        width: 80px;
        padding: 0px;
    }

    .package_content {
        width: calc(100% - 80px);
    }

    .package_content ul {
        margin: 5px 0px;
    }

    .package_ratting {
        margin: 0px;
    }

    .package_content h2 {
        font-size: 20px;
    }

    .button__group a {
        height: 40px;
    }

    .title_text h2 {
        font-size: 28px;
    }

    .model_video iframe, .model_video video {
        height: 250px;
    }

    .course_content_title h2 {
        font-size: 16px;
    }

    .certificate_block {
        flex: auto;
    }

    .capcut_row {
        width: 100%;
    }
}


@media(max-width: 350px){
    .logo a img {
        width: 140px;
    }
}