/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face {
    font-family: 'Jost Light';
    src: url('../fonts/jost-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Jost Book';
    src: url('../fonts/jost-book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Jost Medium';
    src: url('../fonts/jost-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Jost Bold';
    src: url('../fonts/jost-bold.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("fonts/RobotoRegular.eot");
    src: url("fonts/RobotoRegular.eot") format("embedded-opentype"), url("fonts/RobotoRegular.woff2") format("woff2"), url("fonts/RobotoRegular.woff") format("woff"), url("fonts/RobotoRegular.ttf") format("truetype"), url("fonts/RobotoRegular.svg#RobotoRegular") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("fonts/RobotoMedium.eot");
    src: url("fonts/RobotoMedium.eot") format("embedded-opentype"), url("fonts/RobotoMedium.woff2") format("woff2"), url("fonts/RobotoMedium.woff") format("woff"), url("fonts/RobotoMedium.ttf") format("truetype"), url("fonts/RobotoMedium.svg#RobotoMedium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RobotoCondensedBold';
    src: url('fonts/RobotoCondensedBold.eot');
    src: url('fonts/RobotoCondensedBold.eot') format('embedded-opentype'), url('fonts/RobotoCondensedBold.woff2') format('woff2'), url('fonts/RobotoCondensedBold.woff') format('woff'), url('fonts/RobotoCondensedBold.ttf') format('truetype'), url('fonts/RobotoCondensedBold.svg#RobotoCondensedBold') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RobotoCondensed';
    src: url('fonts/RobotoCondensed-Regular.woff2') format('woff2'), url('fonts/RobotoCondensed-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --leftGap: 64px;
}

@media (max-width: 767px) {
    :root {
        --leftGap: 13px;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    color: #f47920;
    text-decoration: none !important;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

body {
    margin: 0;
    padding: 72px 0 0 92px;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* -------------- Header Start --------------- */
/*header {
    padding: 12px 15px;
    position: fixed;
    z-index: 5;
    left: 0;
    right: 0;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.logo-wrapper, .logo-wrapper img {
    line-height: 0;
}

.user-profile-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.profile-icon-n-name-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-icon {
    width: 47px;
    height: 47px;
    border-radius: 47px;
    background-color: #D9D9D9;
    overflow: hidden;
}

.user-name {
    font-size: 18px;
    font-weight: 400;
    color: #54534D;
}

.dropdown .icon {
    font-size: 12px;
    color: #A8A8A8;
}

.dropdown-arrow:before {
    content: "";
    display: inline-block;
    border: 12px #A8A8A8 solid;
    border-left: 7px transparent solid;
    border-bottom: 0;
    border-right: 7px transparent solid;
    width: 0;
    height: 0;
}

.select-option {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    position: absolute;
    top: 80%;
    width: 224px;
    right: 0;
    z-index: 999999;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    visibility: hidden;
}

.user-profile-wrapper:hover .select-option {
    visibility: visible;
}

.select-option ul {
    padding: 0;
    list-style: none;
}

    .select-option ul li, .select-option ul li.active {
        padding: 1.25rem 0 0 1.8rem !important;
        position: relative;
        background-color: white !important;
    }

        .select-option ul li a, .select-option ul li.active a {
            font-family: 'Roboto', sans-serif !important;
            display: block;
            background-color: white;
            color: #54534A !important;
            text-decoration: none;
            font-weight: 400 !important;
            font-size: 12pt;
            line-height: 32px;
            text-align: left;
        }

        .select-option ul li:hover::before {
            content: "";
            left: 0;
            top: 60%;
            position: absolute;
            border-style: solid;
            border-width: 7px 0 7px 10px;
            border-color: transparent transparent transparent #F47920;
        }0705*/
/* ---------------- Header End ----------------- */
/* --------------------------------------------- */
/* -------------- Sidebar Start ---------------- */
/*.sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    min-height: calc(100vh - 72px);
    background-color: #F2F2F2;
    padding: 10px 16px;
    z-index: 2;
    bottom: 0;*/
    /*overflow: auto;*/
/*}

    .sidebar:before {
        content: ""; 
        position: fixed;
        left: 0;
        width: 102px;
        bottom: 0;
        top: 0;
        background-color: #F2F2F2;
        z-index: -1;
        transition: all .2s ease-in;
    }

    .sidebar.active:before {
        width: 228px;
    }

    .sidebar .close-icon-wrapper, .close-icon-wrapper {
        display: flex;
        justify-content: flex-end;
        margin: 10px;
    }

        .sidebar .icon-close, .close-icon-wrapper .icon-close {
            color: #54534D;
            font-size: 19px;
        }

    .sidebar .user-profile-wrapper {
        gap: 15px;
        margin: 15px 0 25px;
    }

    .sidebar .profile-icon-n-name-wrapper {
        gap: 10px;
    }

    .sidebar .dropdown .icon {
        color: #54534D;
    }

    .sidebar .user-name {
        font-size: 20px;
    }

    .sidebar ul {
        margin: 0;
        padding: 0;
        list-style: none;
        max-height: 100%;
        overflow: auto;
    }

        .sidebar ul li {
            margin: 0;
            padding: 0;
            display: flex;
            padding: 22px 20px 22px 22px;
            border-radius: 10px;
        }

            .sidebar ul li a {
                display: flex;
                align-items: center;
                gap: 15px;
                color: #54534D;
                font-size: 18px;
                font-family: 'Roboto Condensed', sans-serif;
                font-weight: 500;
                width: 28px;
                height: 26px;
                transition: all .2s ease-in;
                overflow: hidden;
                white-space: nowrap;
                text-decoration: none;
            }

    .sidebar [class^="icon-"]::before {
        width: 18px;
        height: 18px;
        display: block;
        text-align: center;
    }

    .sidebar ul li a span {
        font-size: 18px;
        width: 19px;
    }

    .sidebar:before {
        content: "";
        position: fixed;
        left: 0;
        width: 102px;
        bottom: 0;
        top: 0;
        background-color: #F2F2F2;
        z-index: -1;
        transition: all .2s ease-in;
    }

    .sidebar.active ul li {
        padding-right: 22px;
    }

        .sidebar.active ul li a {
            width: 152px;
            text-decoration: none;
        }

    .sidebar ul li:hover, .sidebar ul li.active {
        background-color: #E6E6E6;
        color: #F47920;
    }

        .sidebar ul li:hover a, .sidebar ul li.active a, .sidebar ul li:hover a > span, .sidebar ul li.active a > span {
            color: #F47920;
        }

.menu-wrapper {
    position: absolute;
    left: 30px;
    top: 50%;
    color: black;
    transform: translateY(-50%);
    font-size: 14px;
}

@media (max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }

    body {
        padding: 52px 0 0;
    }

    header {
        justify-content: center;
        min-height: 52px;
    }

    .logo-wrapper, .logo-wrapper img {
        max-height: 25px;
        width: auto;
    }

    .nav-overlay, .filter-overlay {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,.5);
        z-index: 5;
    }

    .show {
        display: block !important;
    }

    .sidebar {
        top: 0;
        left: -262px;
        min-height: 100vh;
        z-index: 6;
        transition: all .3s ease-in;
    }

        .sidebar:before {
            left: -262px;
            width: 171px;
        }

        .sidebar.active {
            left: 0;
        }

            .sidebar.active:before {
                left: 0;
                width: 301px;
            }

            .sidebar.active ul li a {
                width: 225px;
                font-size: 16px;
            }

        .sidebar ul {
            height: calc(100vh - 146px);
        }

            .sidebar ul li a span {
                font-size: 18px;
            }

    .select-option {
        width: 50%;
        top: 100%;
        left: 0;
        right: inherit;
    }

        .select-option ul {
            margin-bottom: 1rem;
            overflow: hidden;
        }
}

@media (min-width: 768px) {
    .hidden-desktop {
        display: none !important;
    }

    .search__wrapper {
        padding: 0 50px !important;
    }
}

@media all and (max-height: 1200px) {
    .sidebar ul li {
        padding: 22px 20px 22px 22px !important;
    }
}

@media all and (max-height: 900px) {
    .sidebar ul li {
        padding: 20px 20px 20px 22px !important;
    }
}

@media all and (max-height: 800px) {
    .sidebar ul li {
        padding: 18px 20px 18px 22px !important;
    }
}

@media all and (max-height: 750px) {
    .sidebar ul li {
        padding: 14px 20px 14px 22px !important;
    }
}

@media all and (max-height: 700px) {
    .sidebar ul li {
        padding: 10px 20px 12px 22px !important;
    }

        .sidebar ul li a {
            font-size: 16px !important;
        }

    .sidebar [class^="icon-"]::before {
        width: 16px;
        height: 16px;
    }

    .sidebar ul li a span {
        font-size: 16px !important;
    }
}

@media all and (max-height: 600px) {
    .sidebar ul li {
        padding: 9px 20px 10px 22px !important;
    }

        .sidebar ul li a {
            font-size: 14px !important;
        }

    .sidebar [class^="icon-"]::before {
        width: 18px;
        height: 18px;
    }

    .sidebar ul li a span {
        font-size: 18px;
    }
}

@media all and (max-height: 500px) {
    .sidebar ul li {
        padding: 8px 20px 6px 22px !important;
    }

        .sidebar ul li a {
            font-size: 14px !important;
        }

    .sidebar [class^="icon-"]::before {
        width: 18px;
        height: 18px;
    }

    .sidebar ul li a span {
        font-size: 18px;
    }
}0705*/
/* -------------------------------- */
.main-content-wrapper {
    width: 100%;
    min-height: calc(100vh - 72px);
    padding-top: 100px;
}

.od-heaer {
    position: fixed;
    padding: 30px;
    left: 102px;
    right: 0;
    top: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 1;
    border-bottom: 1px solid rgba(216, 216, 216, 1);
}

    .od-heaer ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 30px;
    }

@media (min-width: 1024px) {
    .main-content-wrapper {
        padding-top: 0;
    }

    .od-heaer {
        position: relative;
        padding: 0;
        left: 0;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        z-index: 9;
        border-bottom: 0;
    }

        .od-heaer ul {
            top: 0;
            position: fixed;
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 30px;
            left: 50%;
            transform: translate(-50%, 16px);
        }
}

.od-heaer ul li a {
    display: flex;
    padding: 7px 15px;
    width: 170px;
    background-color: #F4F4F4;
    border: 1px solid #F4F4F4;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #54534A;
    font-size: 20px;
    line-height: 24px;
    border-radius: 10px;
}

@media (max-width: 1159px) and (min-width: 1024px) {
    .od-heaer ul {
        gap: 20px;
    }

        .od-heaer ul li a {
            width: 135px;
        }
}

.od-heaer ul li a:hover, .od-heaer ul li a.active {
    color: #F47920;
    background-color: #FFF5EE;
    border: 1px solid #F47920;
}

.od-heaer ul li a .od-nav-link-text {
    font-size: 18px;
    font-family: 'RobotoCondensedBold';
    font-weight: 500;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
    .od-heaer ul li a {
        width: 120px;
        padding: 7px 10px;
    }
}

@media screen and (max-width: 767px) {
    .main-content-wrapper {
        /*padding-top: 50px;*/
        padding-top: 35px;
    }

    .od-heaer {
        padding: 15px;
        left: 0;
        top: 72px;
    }

        .od-heaer ul {
            width: 100%;
            gap: 0;
            justify-content: space-between;
        }

            .od-heaer ul li a {
                padding: 0;
                width: auto;
                background-color: transparent;
                border: 0;
                justify-content: center;
                align-items: center;
                gap: 10px;
                text-decoration: none;
                color: #54534A;
                font-size: 18px;
                line-height: 22px;
                border-radius: 0;
            }

                .od-heaer ul li a:hover, .od-heaer ul li a.active {
                    color: #F47920;
                    background-color: transparent;
                    border: 0;
                }

                .od-heaer ul li a .od-nav-link-text {
                    font-size: 18px;
                }
}

@media screen and (max-width: 400px) {
    .od-heaer ul li a span.icon {
        display: none;
    }
}
/* ------------------------------------ */
.FeaturedVideo-module_featured-video-wrapper_2Nn2i {
    background: #DEE2E6;
    width: 100%;
}

.FeaturedVideo-module_featured-video_1NNLi {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1440px;
    padding: 33px 90px;
    margin: 0 auto;
}

.FeaturedVideo-module_video-info_3iB0x {
    padding-right: 48px;
    width: 35%;
    display: grid;
    grid-template-rows: min-content min-content min-content 1fr min-content;
    row-gap: 26px;
    font-family: 'Jost Book', sans-serif;
    font-style: normal;
}

    .FeaturedVideo-module_video-info_3iB0x > h3 {
        color: #54534A;
        font-family: 'Jost Medium', sans-serif;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 19px;
    }

    .FeaturedVideo-module_video-info_3iB0x > h2 {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-size: 32px;
        line-height: 37px;
        color: #2D2D2D;
    }

    .FeaturedVideo-module_video-info_3iB0x > p {
        font-weight: normal;
        font-size: 20px;
        line-height: 23px;
        color: #707070;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: normal;
    }

    .FeaturedVideo-module_video-info_3iB0x > a {
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 24px;
        line-height: 28px;
        color: #FFFFFF;
        background: #F47920;
        border: 2px solid #F47920;
        padding: 13px 41px;
        white-space: nowrap;
        width: min-content;
        text-decoration: none;
        border-radius: 10px;
    }

.FeaturedVideo-module_thumbnailContainer_Y83ge {
    width: 65%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: Lightcoral;
    border-radius: 15px;
    overflow: hidden;
}

    .FeaturedVideo-module_thumbnailContainer_Y83ge iframe {
        width: 100%;
        /*height: 100vh;*/
    }

iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-main-content .FeaturedVideo-module_thumbnailContainer_Y83ge {
    width: 100%;
    padding-top: 56%;
    position: relative;
    margin: 10px 0px 18px 6px;
    background-color: transparent;
}

.FeaturedVideo-module_thumbnailContainer_Y83ge img {
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .FeaturedVideo-module_featured-video_1NNLi {
        flex-direction: column;
        padding: 33px 7.5vw;
    }

    .FeaturedVideo-module_video-info_3iB0x {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
    }

    .FeaturedVideo-module_thumbnailContainer_Y83ge {
        width: 100%;
    }

        .FeaturedVideo-module_thumbnailContainer_Y83ge img {
            max-height: 400px;
            object-fit: cover;
        }
}

@media screen and (max-width: 768px) {
    .FeaturedVideo-module_featured-video_1NNLi {
        padding: 15px;
    }
}

@media screen and (max-width: 576px) {
    .FeaturedVideo-module_video-info_3iB0x > h2 {
        font-size: 27px;
        line-height: 32px;
    }

    .FeaturedVideo-module_video-info_3iB0x > p {
        font-size: 18px;
        line-height: 18px;
    }

    .FeaturedVideo-module_video-info_3iB0x > a {
        font-size: 20px;
        line-height: 24px;
        padding: 10px 34px;
    }
}
/* -------------------------------------------------- */

.BrowsePage-module_video-collection_1u_6s {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.BrowsePage-module_video-category_2zVWB {
    margin: 25px 0px;
    /* padding-left: var(--leftGap); */
}

.od-categories-wrapper > .BrowsePage-module_video-category_2zVWB {
    /* padding-right: var(--leftGap); */
}

.BrowsePage-module_menu-title_29_c9 {
    position: relative;
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 33px;
    margin-bottom: 14px;
    /* padding: 0 var(--leftGap) 0 0; */
    padding: 0px 90px;
}

.BrowsePage-module_category-title_3jI6I {
    font-family: 'RobotoCondensedBold';
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 29px;
    color: #54534A;
    cursor: pointer;
    text-decoration: none;
}

.BrowsePage-module_view-all-button_1DsX- {
    position: relative;
    height: 30px;
    background-color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #F47920;
    border-radius: 5px;
    padding: 6px 24px;
    white-space: nowrap;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #F47920;
}

    .BrowsePage-module_view-all-button_1DsX-:hover {
        background-color: #F47920;
        color: #fff;
    }

.VideoCollection-module_video-carousel-wrapper_1ULlc {
    position: relative;
    overflow-y: visible;
    --vertical-offset: 0px;
    --button-width: 90px;
    --item-gap: 38px;
    z-index:0;
}

.VideoCollection-module_carousel-container_kYc0Y {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: var(--vertical-offset) 0;
}

    .VideoCollection-module_carousel-container_kYc0Y .swiper {
        padding-top: 10px;
        padding-left: var(--button-width);
        transition: all .3s;
    }

.VideoCollection-module_video-carousel_qWzRb > div.swiper-wrapper {
    /* display: flex;
    flex-direction: row; */
    /* padding: 0 0 0 var(--button-width); */
}

    .VideoCollection-module_video-carousel_qWzRb > div.swiper-wrapper > div.swiper-slide {
        /* width: 350px;
    min-width: 350px;
    min-height: 100%;
    margin-right: var(--item-gap); */
    }

.VideoCollection-module_video-carousel_qWzRb .VideoCard-module_link-wrapper_3RjYD {
    display: block;
    width: 100%;
    height: 100%;
    padding-bottom: 15px;
}

.VideoCard-module_video-card_3Gvrd {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

    .VideoCard-module_video-card_3Gvrd:hover {
        box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.15);
    }

.VideoCard-module_video-thumbnail_Ff9j1 {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

    .VideoCard-module_video-thumbnail_Ff9j1 > img {
        width: 100%;
        display: block;
        object-fit: contain;
        margin: 0;
        padding: 0;
    }

.VideoCard-module_video-thumbnail-overlay_11Nhr {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: linear-gradient(47.59deg, #000000cc 14.47%, rgba(199, 199, 199, 0) 89.05%);
    width: 100%;
    height: 100%;
}

    .VideoCard-module_video-thumbnail-overlay_11Nhr > span {
        font-family: 'Roboto', sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
        line-height: 16px;
        color: #FFFFFF;
        padding: 7px;
        position: absolute;
        bottom: 0;
    }

.VideoCard-module_video-info_f0178 {
    padding: 16px;
    height: auto;
    margin-bottom:-10px;
}

    .VideoCard-module_video-info_f0178 > h3 {
        font-family: 'Roboto', sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 15px;
        line-height: 20px;
        /* white-space: nowrap; */
        color: #54534A;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .VideoCard-module_video-info_f0178 > h4 {
        font-family: 'Jost Book', sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
        line-height: 16px;
        margin: 5px 0px;
        /* white-space: nowrap; */
        color: #707070;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.swiper-button {
    position: absolute;
    height: calc(100% - var(--vertical-offset) * 2);
    width: var(--button-width);
    z-index: 100;
    top: var(--vertical-offset);
    border: none;
    background-color: rgba(20, 20, 20, 0.5);
    outline: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.swiper:hover .swiper-button {
    visibility: visible;
    opacity: 1;
}

.swiper-button.right {
    right: 0;
}

.swiper-button.left {
    left: 0;
}

.swiper-button:disabled {
    display: none;
}

.swiper-button.left img {
    transform: rotate(180deg);
}

.swiper-button > img {
    object-fit: contain;
    width: 50%;
}
/* ---------------------------------- */
.instructor-anchor {
    display: block;
}

.instructor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

    .instructor-image-wrapper img {
        width: 118px;
        height: 118px;
        border-radius: 118px;
        overflow: hidden;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    }

.instructor-anchor:hover .instructor-image-wrapper img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
}

.instructor-name-wrapper {
    display: flex;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #54534A;
}

@media (max-width: 480px) {
    .instructor-image-wrapper img {
        width: 100px;
        height: 100px;
    }
}
/* ---------------------------- */
.od-categories-wrapper {
    display: flex;
}

.od-categories-container {
    width: calc(100%);
    padding: 10px 90px 0 90px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .od-categories-container a {
        display: flex;
        flex-direction: column;
        width: calc(20% - 8px);
        /* min-width: 158px; */
        /* max-width: 215px;
    max-height: 215px; */
        border-radius: 15px;
        box-shadow: 0 4px 4px 0 rgba(0,0,0, .25);
    }

        .od-categories-container a:hover {
            box-shadow: 0 3px 10px 5px rgba(0,0,0, .25);
        }

@media (max-width: 1023px) and (min-width: 550px) {
    .od-categories-container a {
        width: calc(33.33% - 8px);
    }
}

@media (max-width: 549px) {
    .od-categories-container a {
        width: calc(50% - 8px);
    }
}

.od-category-tile {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
}

    .od-category-tile img {
        width: 100%;
        height: 100%;
    }

.od-category-title-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .4);
    color: #fff;
    font-family: 'RobotoCondensedBold', sans-serif;
    font-size: 28px;
    line-height: 30px;
    padding: 10px;
    text-align: center;
}
/* ---------------------------------------- */
.od-search-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 35px 0 0;
    gap: 20px;
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input {
    height: 46px;
    width: 390px;
    padding: 5px 15px;
    max-width: 100%;
    background-color: #f5f5f5;
    box-shadow: none;
    border: 0;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    outline: 0;
}

.search-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 46px;
    min-height: 46px;
    background-color: #f47920;
    color: #fff;
    box-shadow: none;
    border: 0;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}

.search-img {
    width: 1rem;
    height: 1rem;
    color: #fff;
}

.od-filter-link {
    color: rgba(84, 83, 74, 1);
    font-family: 'Jost Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: flex;
}

    .od-filter-link img {
        max-width: 25px;
    }

@media screen and (max-width: 576px) {
    .search-filter-wrapper {
        padding: 0 15px;
    }

    .search-form {
        width: 100%;
    }

    .search-input {
        width: 100%;
    }
}

/* ------------------------------------- */
.od-searchnfilter_wrapper {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 100px);
    /* border-top: 1px solid rgba(216, 216, 216, 1); */
    color: rgba(84, 83, 74, 1);
}
/* --- */
.filter__wrapper {
    flex: 1 1 25%;
    background-color: rgba(233, 233, 233, 1);
    padding: 75px 25px 25px;
}

@media screen and (max-width: 767px) {
    .filter__wrapper {
        display: none;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: 99;
        overflow: auto;
        padding-top: 15px;
    }

        .filter__wrapper .close-icon-wrapper {
            margin: 0;
            margin-bottom: 15px;
        }
}

.filter__container {
    width: 100%;
}

.filter__content {
   /* min-height: 400px;*/
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    padding: 25px 20px;
}

.filter__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.filter__heading-1 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.filter__clear-all {
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    color: #f47920;
    background: none;
    cursor: pointer;
}

.filter__type-wrapper {
    border-bottom: 1px solid rgba(191, 191, 191, 1);
    margin-bottom: 15px;
}

.filter__type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

    .filter__type-header:not(.active) .icon-up-arrow {
        display: none;
    }

    .filter__type-header.active .icon-down-arrow {
        display: none;
    }

.filter__type-list {
    /*padding: 0 0 15px;*/
    display: none;
    flex-direction: column;
   /* gap: 12px;*/
}

    .filter__type-list.show {
        display: flex !important;
    }

.filter__title {
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
}

.filter__type-header .icon {
    color: rgba(244, 121, 32, 1);
    font-size: 18px;
}

.filter__checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 24px;
}

    .filter__checkbox:before, .filter__checkbox:after {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
        width: 16px;
        height: 16px;
    }

    .filter__checkbox:before {
        content: "";
        border: 1px solid rgba(223, 226, 230, 1);
        background-color: white;
    }

input:checked + .filter__checkbox::before {
    background-color: #f47920;
    border-color: #f47920;
}

input:checked + .filter__checkbox::after {
    /*    content: "";
    left: 6px;
    top: 3px;
    width: 3px;
    height: 8px;
    border-style: solid;
    border-color: white;
    border-image: initial;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);*/
    content: "";
    left: 5px;
    top: 3px;
    width: 4px;
    height: 10px;
    border-style: solid;
    border-color: white;
    border-image: initial;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
}

.filter__list-item-title {
    font-family: 'Jost Book', sans-serif;
    font-family: 'Jost Book';
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.filter__action-wrapper {
    display: flex;
    width: 100%;
}

.filter__apply-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px;
    background-color: #f47920;
    color: #fff;
    border: 0;
    box-shadow: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
}

    .filter__apply-button:hover {
        opacity: 0.9;
    }
/* --- */
.search__wrapper {
    flex: 1 1 75%;
    background-color: #fff;
    padding: 0 30px;
}

.search-inner-wrapper {
    display: flex;
}

.result__wrapper {
    width: 100%;
    position: relative;
}

    .result__wrapper h2 {
        font-size: 24px;
        font-weight: 700;
        line-height: 28px;
        margin: 30px 0 15px;
        padding: 0;
        color: rgba(84, 83, 74, 1)
    }

.filter__mobile-button {
    width: 29px;
    height: 25px;
    border-radius: 4px;
    box-shadow: none;
    background: white;
    border: 1px solid #f47920;
    fill: #f47920;
}

    .filter__mobile-button .ml-3 {
        margin-left: 0rem !important;
    }


.od-search-filter-wrapper {
    flex-direction: row;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .od-search-filter-wrapper {
        padding: 0;
    }

    .search-inner-wrapper {
        display: block;
    }

    .VideoCollection-module_carousel-container_kYc0Y .swiper {
        padding: 0;
    }

    .od-categories-wrapper .BrowsePage-module_menu-title_29_c9,
    .od-categories-wrapper .od-categories-container,
    .od-slider-wrapper .BrowsePage-module_menu-title_29_c9,
    .od-slider-wrapper .VideoCollection-module_video-carousel-wrapper_1ULlc {
        padding-right: var(--leftGap);
        padding-left: var(--leftGap);
    }
}
/* --- */

/* ------------------------------ */
.Range-module_range_C8194 input[type="range"] {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    height: 8px;
    background-color: #efefef;
    border-radius: 8px;
    outline: none;
}

    .Range-module_range_C8194 input[type="range"]::-webkit-slider-runnable-track {
        -webkit-appearance: none;
        height: 8px;
    }

    .Range-module_range_C8194 input[type="range"]::-moz-track {
        -moz-appearance: none;
        height: 8px;
    }

    .Range-module_range_C8194 input[type="range"]::-ms-track {
        appearance: none;
        height: 8px;
    }

    .Range-module_range_C8194 input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 14px;
        width: 14px;
        background-color: #fff;
        border-radius: 100%;
        cursor: pointer;
        margin-top: -3px;
        border: none;
        filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.15));
    }

    .Range-module_range_C8194 input[type="range"]::-moz-range-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        background-color: #f47920;
        border-radius: 50%;
        cursor: pointer;
        margin-top: -6px;
        border: none;
    }

    .Range-module_range_C8194 input[type="range"]::-ms-thumb {
        appearance: none;
        height: 20px;
        width: 20px;
        background-color: #f47920;
        border-radius: 50%;
        cursor: pointer;
        margin-top: -6px;
        border: none;
    }

    .Range-module_range_C8194 input[type="range"]:active::-webkit-slider-thumb {
        background-color: #fff;
        border: 2px solid #f47920;
    }

.Range-module_relative_3KeQ2 {
    position: relative;
}

.Range-module_flexItemCenter_3D6LP {
    font-family: "Jost Book";
    display: flex;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 1rem;
    gap: 5px;
    justify-content: flex-start;
    align-items: center;
}

.Range-module_borderStyle_XsoN5 {
    padding: 5px 3px;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    outline-style: none;
    width: 3.5rem;
    text-align: center;
    border-color: rgba(223, 226, 230, 1);
    background-color: #fff;
    color: #F47920;
}

.Range-module_relativeMb1_1fCd0 {
    position: relative;
    margin-bottom: 0.25rem;
    margin-right: 2px;
    margin-left: 2px;
}

.Range-module_relativeZ10_3P44H {
    position: relative;
    z-index: 10;
    width: 100%;
}

.Range-module_flexBetween_4lJfH {
    font-family: "Jost Book";
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 400;
}
/* category search start */
.result__wrapper .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5rem;
}

@media all and (max-width: 767px) {
    .result__wrapper .swiper-wrapper {
        grid-template-columns: 1fr;
    }

    .video-info {
        grid-template-columns: 1fr;
        padding: 33px 1rem;
    }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
    .result__wrapper .swiper-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
/* category search end */

/* video page start */
.video-main-content .FeaturedVideo-module_thumbnailContainer_Y83ge {
    width: 100%;
}

.video-main-content .FeaturedVideo-module_featured-video-wrapper_2Nn2i {
    background: #fff;
}

.video-main-content .FeaturedVideo-module_featured-video_1NNLi {
    margin-top: 2rem;
}

.video-main-content .BrowsePage-module_menu-title_29_c9 {
    height: auto;
}

.video-info {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1440px;
    padding: 33px 90px;
    margin: 0 auto;
}

.duration {
    display: grid;
    grid-template-columns: 25px 1fr;
    color: #54534A;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: left;
    margin: 5px 0 25px 0;
}

    .duration::before {
        content: '';
        background-image: url(../images/timer.svg);
        display: block;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
    }

.tags-info {
    display: grid;
    grid-template-columns: 20% 80%;
    padding: 7px 0;
    grid-gap: 1rem;
    align-items: center;
}

.tags a {
    display: inline-block;
    padding: 5px;
    border-radius: 4px;
    font-family: 'Jost Medium';
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: left;
    color: #54534D;
    background: #FFF5EE;
    transition: all 0.3s;
    margin-right: 5px;
    margin-bottom: 5px;
}

    .tags a:hover {
        color: #fff;
        background: #F47920;
    }

.video-info-right p, .video-info-title p {
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    color: #54534A;
}

.video-info-title p {
    font-family: 'Jost Medium';
    padding: 1rem 0;
    line-height: 26px;
}

    .video-info-title p a {
        font-family: 'Jost Medium';
        padding: 1rem 0;
        line-height: 26px;
        color: #54534A;
    }

.video-info-title a:hover {
    color: #F47920;
}

.video-info-right p {
    font-family: 'Jost Book';
}

.video-info-title h2 {
    font-family: 'Roboto';
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
    color: #54534A;
}

.tags-info h3 {
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: #54534A;
}

.related-title {
    font-family: 'RobotoCondensedBold';
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: center;
    color: #54534A;
}

.video-main-content .video-related-classes {
    background: #DEE2E6;
    padding: 2rem 0;
}

.tags-info h3:after {
    content: ":";
    /*margin-left: 5px;*/
}

.end-slide {
    padding-right: 90px;
}

@media all and (max-width: 767px) {
    .video-info {
        grid-template-columns: 1fr;
        padding: 33px 1rem;
    }

    .video-info-right p {
        margin-top: 1rem;
    }

    .tags-info {
        grid-template-columns: 32% 68%;
    }
}
/* video page end */

/* instructor bio start */
.instructor-bio-main {
    padding-bottom: 3rem;
}

    .instructor-bio-main .search-inner-wrapper {
        display: block;
        margin-top: 3rem;
    }

.instructor-description h2 {
    font-family: 'RobotoCondensedBold';
    font-size: 30px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: justify;
    color: #54534A;
}

.instructor-description p {
    font-family: 'Jost Book';
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: justify;
    padding-right: 1rem;
    color: #54534A;
}

.image-decription {
    padding: 0 30px;
}

.instructor-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    width: 400px;
    height: 400px;
}

.instructor-bio-main .od-search-filter-wrapper {
    margin-top: 0;
    margin-bottom: 3rem;
}

@media all and (min-width: 768px) {
    .image-decription {
        padding: 0 50px;
        display: grid;
        grid-template-columns: 40% 60%;
        margin-top: 4rem;
    }

    .instructor-description {
        max-height: 26rem;
        overflow-y: auto;
    }
}

@media all and (max-width: 768px) {
    .image-decription {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .instructor-description {
        margin-top: 2rem;
    }

        .instructor-description p {
            padding-right: 0;
        }

    .instructor-bio-main .search__wrapper {
        padding: 0 1rem;
    }
}

/* instructor bio end */

/* new classes start */
.new-class-title .title-text h1 {
    font-family: 'Roboto Condensed';
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0em;
    text-align: left;
    color: #54534A;
    text-align: center;
    margin-top: 3rem;
}

.new-classess.main-content-wrapper {
    padding-bottom: 2rem;
}

@media all and (min-width: 768px) {
    .new-classess .images-grid {
        padding: 0 6em;
        margin-top: 3em;
    }
}

@media all and (max-width: 767px) {
    .new-classess .images-grid {
        padding: 0 1em;
        margin-top: 2em;
    }

    .new-classess.main-content-wrapper {
        padding-top: 36px;
    }
}
/* new classess end */


/*footer {
    position: absolute;
    width: -webkit-fill-available;
    width: -moz-available;
    bottom: unset !important;
    border-top: 1px solid rgba(78, 79, 85, .1)
}0705*/

button:focus {
    outline: none;
}

@media all and (min-width: 769px) {
    .tags a {
        margin-bottom: 0;
    }
}

@media all and (min-width: 769px) and (max-width: 1024px) {
    .tags-info {
        grid-template-columns: 30% 70%;
    }
}

@media all and (max-width: 767px) {
    .tags a {
        padding-bottom: 10px;
    }
}


@media (max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }

    body {
        padding: 52px 0 0;
    }
}

footer {
    bottom: unset !important;
}
/*@media all and (min-width: 1250px) and (max-width: 1700px) {
    .instructor-img img {
        width: 400px !important;
    }
}*/