/* ===================================== 6 Header Section ===================================== */
div.common_header_1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    box-shadow: none;
}

.sticky {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background: #000;
    box-shadow: 0 0px 10px 6px rgb(0 0 0 / 26%);
    animation: fixedheader 600ms ease 0ms alternate;
    border-bottom: 1px solid #ea2a25;
}

.header_searchbar {
    position: relative;
    top: 0;
    right: 0;
    margin: 0;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.header_toggle_menu_area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    position: relative;
}

.headersearch {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    z-index: 999;
    cursor: pointer;
}

div.search-label {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: 0.5s all ease;
    z-index: 2;
    cursor: pointer;
}

.search_close {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #fff;
    text-align: center;
    display: none;
}

.headersearch:checked + .search-label svg {
    display: none;
}

.headersearch:checked + .search-label .search_close {
    display: block;
}

.search-section {
    position: absolute;
    width: 100%;
    height: 100vh;
    opacity: 0;
    top: 0;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s all ease-in-out;
}

.search-box {
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

.search-input {
    width: 70%;
    border: 2px solid #ea2a25;
    position: relative;
    display: flex;
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

input.input-textarea {
    position: relative;
    background: transparent;
    width: 100%;
    color: #fff;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.open {
    opacity: 1;
    z-index: 0;
    transition: 0.5s all ease-in-out;
    transform: scale(1);
}

input.input-textarea:focus-visible {
    outline: 0;
}

button.btn.sidebar_btn {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    border: 0;
}

.header_tooglemenu .offcanvas.offcanvas-top {
    height: 100%;
    overflow-y: overlay;
    overflow-x: hidden;
    background: url(../images/index/home-header-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFF;
    z-index: 9999;
    background-clip: border-box;
}

.offcanvas-backdrop,
.modal-backdrop {
    height: 100%;
    width: 100%;
}

.offcanvas-header.custome_sidebar_head {
    padding: 0;
    border-bottom: 2px solid #ffffff40;
}

    .offcanvas-header.custome_sidebar_head button.btn-close {
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        margin: 0;
        opacity: 1;
    }

        .offcanvas-header.custome_sidebar_head button.btn-close .sidebar_closed {
            font-size: 24px;
            width: 48px;
            height: 48px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000;
            background: #fff;
        }

        .offcanvas-header.custome_sidebar_head button.btn-close:focus,
        div#Home_banner_2 .banner_slider_list_area,
        .form-check-input:focus {
            box-shadow: none;
        }

.header_area {
    padding: 10px 0px 0px;
}

.desktop_navbar ul.dasktop_navlist {
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
}

li.nav-items {
    position: relative;
    font-family: "League Spartan", serif;
    text-transform: uppercase;
}

ul.dasktop_navlist > li.nav-items > a {
    font-size: 17px;
    padding: 30px;
    gap: 0px;
    display: flex;
    line-height: 1;
    font-weight: 500;
    background: #000;
    color: #fff;
}

@media (max-width: 1500px) {
    ul.dasktop_navlist > li.nav-items > a {
        font-size: 13px !important;
        text-align: center;

    }
}

ul.dasktop_navlist > li.nav-items a.active span svg g path,
.desktop_navbar ul.dasktop_navlist li.nav-items a:hover span svg g path {
    stroke: #ea2a25;
}

ul.custome_dropdown,
ul.custome_inner_dropdown {
    position: absolute;
    top: 100%;
    background-color: #fff;
    visibility: hidden;
    min-width: 200px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    opacity: 0;
    z-index: -1;
    border: 0;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

    .desktop_navbar ul.dasktop_navlist li.nav-items:hover .custome_dropdown.mega_dropdown,
    .desktop_navbar ul.dasktop_navlist li.nav-items:hover ul.custome_dropdown,
    ul.custome_dropdown li.nav-items:hover ul.custome_inner_dropdown {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        z-index: 9;
        transition: all 0.4s ease 0s;
    }

ul.custome_inner_dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    height: max-content;
}

ul.custome_dropdown li.nav-items a {
    font-size: 18px;
    padding: 10px 15px;
    display: flex;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    transition: all .4s ease-out 0s;
    border-bottom: 1px solid rgba(13, 23, 32, .078);
    position: relative;
}

.mega_dropdown.custome_dropdown_1 {
    position: absolute;
    top: 100%;
    left: -170%;
    max-width: 70vw;
    width: max-content;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

    .mega_dropdown.custome_dropdown_1 ul {
        background-color: #fff;
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0px 15px;
    }

        .mega_dropdown.custome_dropdown_1 ul li.nav-items {
            width: 33.33%;
        }

            .mega_dropdown.custome_dropdown_1 ul li.nav-items > a.nav-links {
                display: flex;
                flex-direction: column;
                gap: 10px;
                line-height: 30px;
                font-weight: 500;
                color: #000;
                width: 100%;
                padding: 15px;
                font-size: 18px;
                align-items: center;
            }

.mega_menu_img {
    display: block;
    position: relative;
    width: fit-content;
    height: fit-content;
    overflow: hidden;
}

.mega_dropdown.custome_dropdown_1 ul li.nav-items:last-child .mega_menu_img img {
    height: 100%;
}

.mega_dropdown.custome_dropdown_1 ul li.nav-items a > div {
    padding: 10px;
    position: relative;
}

    .mega_dropdown.custome_dropdown_1 ul li.nav-items a > div::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 15%;
        height: 20%;
        border: 3px solid #181818;
        border-right: 0;
        border-bottom: 0;
        transition: height 0.3s linear, width 0.3s linear 0.3s;
    }

    .mega_dropdown.custome_dropdown_1 ul li.nav-items a > div::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 15%;
        height: 20%;
        border: 3px solid #181818;
        border-top: 0;
        border-left: 0;
        transition: height 0.3s linear, width 0.3s linear 0.3s;
    }

.mega_dropdown.custome_dropdown_1 ul li.nav-items a:hover > div::before {
    width: calc(100% / 1);
    height: 100%;
    border: 3px solid #ea2a25;
    border-right: none;
    border-bottom: none;
    transition: height 0.3s linear, width 0.3s linear 0.3s;
    background: rgb(255 100 13 / 20%);
}

.mega_dropdown.custome_dropdown_1 ul li.nav-items a:hover > div::after {
    width: calc(100% / 1);
    height: 100%;
    border: 3px solid #ea2a25;
    border-left: none;
    border-top: none;
    transition: height 0.3s linear, width 0.3s linear 0.3s;
    background: rgb(255 100 13 / 20%);
}

#header_theme_4 .mega_dropdown.custome_dropdown_1 ul li.nav-items a > div::before,
#header_theme_4 .mega_dropdown.custome_dropdown_1 ul li.nav-items a > div::after {
    border-color: #fff;
}

#header_theme_4 .mega_dropdown.custome_dropdown_1 ul li.nav-items a:hover > div::before,
#header_theme_4 .mega_dropdown.custome_dropdown_1 ul li.nav-items a:hover > div::after {
    border-color: #ea2a25;
}

ul.custome_dropdown.custome_dropdown_4 {
    min-width: 260px;
}

ul.custome_inner_dropdown.inner_dropdown_10 {
    width: 280px;
}

ul.custome_dropdown li.nav-items a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    background: linear-gradient(90deg, #fff, #ea2a25, #fff);
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s ease-in;
    z-index: 1;
}

ul.custome_dropdown li.nav-items a:hover::before {
    transform: scale(1);
}

div#header_theme_1 .header_sec.sticky .header_area {
    padding: 10px 0;
}

    div#header_theme_1 .header_sec.sticky .header_area ul.custome_dropdown,
    .header_theme_2 ul.custome_dropdown,
    .header_theme_4 ul.custome_dropdown {
        top: 110%;
    }

    div#header_theme_1 .header_sec.sticky .header_area div.custome_dropdown {
        top: 112%;
    }

.custome_sidebar_upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}
/* Inner-Navbar */
.get_touch_text .text {
    -webkit-animation: stroke 6s infinite linear;
    animation: stroke 6s infinite linear;
    stroke-dasharray: 70 330;
    stroke-width: 6px;
}

.header_get_touch_contact {
    margin: 35px 0px 60px;
}

.header_single_get_touch_box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header_get_touch_icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
    border: 1px solid #fff;
    padding: 8px;
}

.header_single_get_touch_box:hover .header_get_touch_icon svg g path {
    stroke: #000;
}

.header_get_touch_contact > .row {
    gap: 40px 0px;
}

.header_get_touch_detail a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.header_get_touch_detail span {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.header_single_get_touch_box:hover .header_get_touch_icon {
    background: #fff;
}

a.header_gettouch_icons {
    /*    border: 1px solid #ea2a25;
*/ border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 7px 15px;
    transition: .35s;
    justify-content: space-between;
}

.header_get_touch_sociallink .row {
    gap: 15px 0;
}

    .header_get_touch_sociallink .row > div {
        width: 34%;
    }

a.header_gettouch_icons:hover {
    background-color: #ea2a25;
    color: #fff;
}

ul.mobile_navlist {
    /*    border: 2px solid #ffffff40;
*/ border-bottom: 0;
}

    ul.mobile_navlist > li > a.nav-link-mobile {
        display: none;
        /*        border-bottom: 1px solid #404040;
*/ text-transform: uppercase;
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        line-height: 1;
        padding: 25px 20px 25px 40px;
        transition: transform .4s ease, box-shadow .4s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

a.nav-link-mobile span {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.drop_down_menu,
ul.inner_dropdown_menu {
    display: none;
}

ul.drop_down_menu {
    border-bottom: 1px solid #404040;
}

    ul.drop_down_menu li a {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        transition: .35s;
        border-bottom: 1px solid #404040;
        padding: 15px 20px 15px 55px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

ul.inner_dropdown_menu li a {
    padding: 15px 20px 15px 70px;
}

ul.drop_down_menu li a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    background: linear-gradient(90deg, #fff, #ea2a25, #fff);
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s ease-in;
    z-index: 1;
}

ul.drop_down_menu li a:hover::before {
    transform: scale(1);
}

ul.drop_down_menu li a span {
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
}

.offcanvas-body.custome_sidebar {
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 40px 1rem;
}

ul.mobile_navlist > li > a:hover span {
    background: #ea2a25;
    border: 1px solid #ea2a25;
}

    ul.mobile_navlist > li > a:hover span svg g path,
    ul.drop_down_menu li a:hover span svg g path {
        stroke: #fff;
        transition: .35s;
    }

ul.drop_down_menu li a:hover span svg g path {
    stroke: #ea2a25;
}
/* Header_2 */
.header_theme_2 ul.dasktop_navlist > li.nav-items > a {
    background: transparent;
    padding: 30px 0px;
}

div#header_theme_2 .mega_dropdown.custome_dropdown_1 {
    left: -400%;
    top: 110%;
}

.header_theme_2 .desktop_navbar ul.dasktop_navlist,
.client_say_slider_v2_area > .row,
.header_theme_4 .desktop_navbar ul.dasktop_navlist,
.our_training_image_list,
.our_program_V3 > .row,
.yoga_training_content_image_info,
div#our_training_Programpage > .row,
.single_img_project_individualtraning > .row,
.individualtraning_single_project_images_area > .row,
.single_slider_project_individualtraning > .row,
.our_blogs_sec_area > .row,
.our_blog_siderbar_content_area > .row {
    gap: 30px;
}

.header_theme_2 .header_area {
    background: #000;
    padding: 10px;
}

.header_theme_2 .header_toggle_menu_area {
    justify-content: center;
}
/* Header_3 */
.header_3_fixhead {
    background: #000;
    padding: 60px;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    overflow: scroll;
    scrollbar-width: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

    .header_3_fixhead.sticky {
        animation: none;
        border: 0;
        box-shadow: none;
    }

    .header_3_fixhead::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 3px;
        height: 0px;
        background: #ea2a25;
        transition: all 0.75s;
    }

    .header_3_fixhead.sticky::before {
        height: 100%;
    }

.header_3_allarea_content {
    width: calc(100% - 350px);
    position: relative;
    z-index: 10;
    height: auto;
    display: flex;
    overflow-x: hidden;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-left: auto;
}

.header_v3_area nav {
    flex-direction: column;
}

.header_content_area .offcanvas-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 100%;
    width: 230px;
}

ul.navbar_v3 {
    display: flex;
    flex-direction: column;
    padding: 80px 0;
}

    ul.navbar_v3 li.nav-items a {
        font-size: 20px;
        color: #fff;
        display: flex;
        gap: 10px;
        line-height: 30px;
        padding: 20px 0px;
        font-family: "Satoshi Medium", sans-serif;
        font-weight: 500;
    }
/* Header_4 */
.header_theme_4 {
    padding: 10px 0px;
    background: #fff;
}

    .header_theme_4 .header_area {
        padding: 0;
    }

    .header_theme_4 ul.dasktop_navlist > li.nav-items > a {
        background: transparent;
        color: #000;
        padding: 30px 0;
    }

    .header_theme_4 ul.custome_dropdown,
    .header_theme_4 ul.custome_inner_dropdown {
        background: #000;
    }

        .header_theme_4 ul.custome_dropdown li.nav-items a {
            color: #fff;
            border-bottom: 1px solid rgb(255 255 255 / 50%);
        }

div#header_theme_4 {
    position: relative;
}

.mega_dropdown.custome_dropdown_1 a.active > span,
ul.dasktop_navlist > li.nav-items a.active,
.desktop_navbar ul.dasktop_navlist li.nav-items a:hover,
ul.navbar_v3 > li.nav-items a.active,
ul.navbar_v3 li.nav-items a:hover,
.header_get_touch_detail a:hover,
ul.mobile_navlist > li > a:hover,
ul.drop_down_menu li a:hover,
.hader_v3_bottom_contact a:hover,
.we_offer_box:hover .we_offer_info h5,
.our_training_image_box:hover h5,
.triners_info h5 a:hover,
.footer_mid_area a:hover,
.footer_bottom_area a:hover,
.common_banner_bg a:hover {
    color: #ea2a25;
}

    ul.navbar_v3 > li.nav-items a.active span svg g path,
    ul.navbar_v3 li.nav-items a:hover span svg g path {
        stroke: #ea2a25;
    }

#header_theme_4 .mega_dropdown.custome_dropdown_1 {
    top: 110%;
    left: -350%;
}

    #header_theme_4 .mega_dropdown.custome_dropdown_1 ul {
        background-color: #000;
    }

        #header_theme_4 .mega_dropdown.custome_dropdown_1 ul li.nav-items > a.nav-links {
            color: #fff;
        }

.dropdown-logo {
    max-width: 8vw;
}

@media screen and (max-width: 768px) {
    .grid {
        height: auto !important; /* Adjust height to fit content */
        flex-direction: column !important; /* Stack items vertically */
    }

        .grid .column {
            width: 100% !important; /* Full width for each column */
            height: 50vh !important; /* Adjust height for better visibility */
        }
}