@font-face {
    font-family: 'TT Hoves Pro Trial Regular';
    src: url("../fonts/TT-Hoves-Pro-Trial-Regular.ttf");
}

@font-face {
    font-family: 'TT Hoves Pro Trial Medium';
    src: url("../fonts/TT-Hoves-Pro-Trial-Medium.ttf");
}

@font-face {
    font-family: 'TT Hoves Pro Trial Bold';
    src: url("../fonts/TT-Hoves-Pro-Trial-Bold.ttf");
}

@font-face {
    font-family: 'TT Hoves Pro Trial DemiBold';
    src: url("../fonts/TT-Hoves-Pro-Trial-DemiBold.ttf");
}

@font-face {
    font-family: 'NomosSansTest-Regular';
    src: url("../fonts/NomosSansTest-Regular-BF670de63654359.otf");
}

@font-face {
    font-family: 'NomosSansTest-Medium';
    src: url("../fonts/NomosSansTest-Medium-BF670de63653ed7.otf");
}

@font-face {
    font-family: 'NomosSansTest-SemiBold';
    src: url("../fonts/NomosSansTest-SemiBold-BF670de63658914.otf");
}

/* common-css-start */
:root {
    --color-black: #000000;
    --color-secondblack: #141414;
    --color-white: #ffffff;
    --color-lightblack: #3B3B3B;
    --color-grey: #E5E5E5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: 'NomosSansTest-Regular';
}

section {
    position: relative;
}

html.myClass {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    display: inline-block;
}

.section-heading {
    position: relative;
    z-index: 3;
}

.img-fluid {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.pd-40 {
    padding: 0 40px;
}




.main-heading {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 700;
    font-size: 34px;
    color: #fff;
}

.btn-all {
    border: 2px solid transparent;
    padding: 9px 20px;
    border-radius: 100px;
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 25px;
    position: relative;
    cursor: pointer;
}

.btn-all:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: 1;
    background: linear-gradient(90deg, #41D098 0%, #3D99E1 100%);
    border-radius: 999px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

.sub-heading {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 30px;
    line-height: normal;
    color: #1c1c1c;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1170px;
    }
}

/* common-css-end */



/*header-css-start*/
.sticky-header {
    position: fixed;
    width: 100%;
    box-shadow: 0px 0px 30px -5px #9698a6;
    animation: goDown 0.5s ease-in-out forwards;
    z-index: 99;
    top: 0;
}

@keyframes goDown {
    0% {
        top: -60px;
    }

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

/*header-css-end*/

/* ======================================header-css-start========================= */

.header {
    background-color: var(--color-black);
    padding: 12px 0;
    border-bottom: 1px solid #898989;
}

.header .navbar-brand img {
    height: 50px;
}

.header .light-dark {
    /* position: absolute; */
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    /* transform: translateY(-50%); */
}

.header .light-dark .white,
.header .black-show .black {

    display: none;

}

.header .black-show .white {

    display: block;

}

.header .nav-link {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 18px;
    color: var(--color-white);
    padding: 0 !important;
    position: relative;
    text-transform: uppercase;
}

.header .navbar-nav .nav-link.active,
.header .navbar-nav .nav-link.show {
    color: var(--color-white);
    background: linear-gradient(90deg, #41D098 0%, #3D99E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

a.nav-link.active {
    transition: all 0.3s ease-in-out;
}


.header .navbar-nav {
    gap: 35px;
}

.header .nav-link:after {
    content: "";
    position: absolute;
    bottom: -1.47rem;
    width: 0;
    left: 0;
    background: linear-gradient(90deg, #41D098 0%, #3D99E1 100%);
    height: 3px;
    border-radius: 100px;
    transition: all 0.5s;
}

.header .nav-link:hover:after {
    left: 0;
    width: 100%;
}

.header .nav-link.active:after {
    content: "";
    position: absolute;
    bottom: -1.47rem;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #41D098 0%, #3D99E1 100%);
    height: 3px;
    border-radius: 100px;
}

.right-header ul {
    display: flex;
    align-items: center;
}

.right-header ul li {
    padding: 0 19px;
    border-right: 1px solid var(--color-white);
}

.right-header ul li:first-child {
    padding-left: 0;
}

.right-header ul li:last-child {
    padding-right: 0;
    border: none;
}

.header .navbar-brand img.theme-logo {
    display: none;
}



@media (max-width: 991px) {
    .header-main .navbar-brand {
        order: 2;
        margin: 0 auto;
    }

    .header-main .navbar-toggler {
        order: 1;
        box-shadow: none !important;
        border: none;
        z-index: 99999;
    }

    .header-main .right-header {
        order: 3;
    }

    .header-main .navbar-toggler-icon {
        background-image: none;
        width: 25px;
        display: block;
        margin: 3px 0;
        height: 0;
        transition: .5s all;
        position: relative;
        border: 1px solid #fff;
        border-radius: 4px;
    }

    .header-main #navbarSupportedContent {
        position: fixed;
        top: 0;
        left: 0;
        background: var(--color-black);
        width: 100%;
        z-index: 999;
        height: 100vh;
        align-items: baseline;
        padding: 100px 40px 56px;
        transform: translatey(-100%);
        transition: all .4s;
    }

    .header-main .navbar-toggler.navbar-closed span:nth-child(1) {
        transform: rotate(45deg);
        margin: 0;
    }

    .header-main .navbar-toggler.navbar-closed span:nth-child(2) {
        display: none;
    }

    .header-main .navbar-toggler.navbar-closed span:nth-child(3) {
        transform: rotate(-45deg);
        margin: -1px 0 0;
    }

    .header-main .navbar-toggler.navbar-closed span:nth-child(4) {
        display: none;
    }

    #navbarSupportedContent.show {
        transform: translateY(0);
    }
}

@media (max-width:767px) {

    .right-header svg,
    .right-header img {
        width: 20px;
        height: 20px;
    }

    .right-header ul li {
        padding: 0 10px;
    }

    .header .nav-link.active:after {
        bottom: -5px;
    }

    .header .navbar-nav {
        gap: 20px;
    }
}

/* ======================================header-css-end========================= */

/* <!-- ======================================banner-section-css-start===================================== --> */
.banner-section {
    padding: 35px 0;
    background: linear-gradient(113.73deg, #09373A 9.27%, #000000 68.48%);
    overflow: hidden;
}

.banner-card {
    border-radius: 30px;
    width: 100%;
    /* height: 540px; */
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: scale(0.8);
}

.banner-card .banner-video-bx {
    /* position: absolute;
    left: 0;
    top: 0; */
    width: 100%;
    height: 100%;
}

.banner-content {
    height: 100%;
    display: flex;
    align-items: end;
    padding: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.banner-card .banner-video-bx video {
    display: block;
    height: 100%;
}

.banner-section .owl-stage {
    display: flex;
    align-items: center;
    gap: 0;
}

.banner-card .main-heading {
    margin-bottom: 20px;
}

.banner-section .owl-item.active.center .banner-video-bx:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url('../images/banner-after-img.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 74%;
}

.banner-section .banner-video-bx:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-section .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.banner-section .owl-dot span {
    border-radius: 100%;
    background: #fff;
    width: 10px;
    height: 10px;
    display: block;
    margin: 0 5px;
}

.banner-section .owl-dot.active span {
    background: #41c2b8;
}

.banner-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: scale(0.8);
    /* small by default */
}



.banner-section .owl-item.active.center .banner-card {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width:1200px) {
    .banner-section .owl-item.active.center {
        border-radius: 30px;
        /* width: 952px !important;  */
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner-card {
        height: auto;
    }

    .banner-section .owl-item.active.center {
        /* width: 700px !important; */
    }

    .banner-content {
        padding: 25px;
    }

    .main-heading {
        font-size: 28px;
    }

}

@media (max-width: 991px) {

    .banner-section .owl-item.active.center .banner-card {
        transform: unset;
    }

    .banner-card {
        height: auto;
        transform: unset;
    }

    .banner-section .container-fluid {
        padding: 0 30px !important;
    }

    .banner-content {
        padding: 20px;
    }

    .main-heading {
        font-size: 27px;
    }


}

@media (min-width: 430px) and (max-width: 500px) {

    .banner-card {
        height: 250px;
    }
}

@media (max-width: 575px) {


    .main-heading {
        font-size: 20px;
    }

    .btn-all {
        font-size: 14px;
        gap: 15px;
    }
}

/* <!-- ======================================banner-section-css-end===================================== --> */

/* <!-- ======================================latest-news-section-css-start===================================== --> */

.latest-news-section {
    padding: 72px 0;
    overflow: hidden;
}

.latest-news-section .container-fluid {
    padding-left: 8.375rem;
}


.latest-left .sub-heading {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.latest-left p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #3a3a3a;
    font-family: 'NomosSansTest-Regular';
}

.latest-slid-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.latest-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 58px;
    border-right: 1px solid #898989;
}

.latest-btns .btn-all {
    color: var(--color-black);
}

.latest-slid-btns button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #f1f1f1;
    stroke: #dadada;
    border: 1px solid #dadada;
}


.latest-imagebx a {
    width: 100%;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.news-datebx p {
    font-family: 'NomosSansTest-Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #3a3a3a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.latest-content {
    padding: 15px 0;
}

.news-datebx h4 a {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #3a3a3a;
}

@media (min-width: 992px) and (max-width: 1199px) {

    .latest-news-section .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 991px) {

    .latest-news-section {
        padding: 40px 0;
    }

    .latest-news-section .container-fluid {
        padding: 0 30px;
    }

    .latest-left {
        gap: 24px;
        border: none;

    }

    .latest-slid-btns {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {}

@media (max-width: 767px) {
    .latest-left {
        border: none;
    }

    .latest-left p {
        font-size: 15px;
    }
}

/* <!-- ======================================latest-news-section-css-end===================================== --> */

/* <!-- ======================================sponsored-section-css-start===================================== --> */
.sponsored-section {
    padding: 20px 0 50px;
}

.sponsored-flx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sponsored-image {
    width: 100%;
}

.sponsored-main {
    margin-top: 30px;
}

.sponsored-card {
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sponsored-card:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 39.79%, rgba(0, 0, 0, 0.4573) 59.59%, #000000 100%);
    z-index: 1;
}

.sponsored-card a {
    display: block;
}

.sponsored-cflx {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: var(--color-black);
}

.sponsored-content {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 2;
}

.cflx-lft p {
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    color: #fff;
    font-family: 'TT Hoves Pro Trial Regular';
}

.cflx-right {
    height: 30px;
}

.cflx-right img {
    height: 100%;
    object-fit: contain !important;
}

.spnsored-content-wrapper {
    margin-top: 55px;
}

.spnsored-content-wrapper .sub-heading {
    font-size: 24px;
    text-transform: capitalize;
}

.spnsored-content-wrapper .sponsored-flx {
    border-bottom: 1px solid #cfcfcf;
    padding-bottom: 15px;
}

.scwrap-image a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.scwrap-span {
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    text-transform: capitalize;
    color: #3a3a3a;
    font-family: 'NomosSansTest-Medium';
    display: block;
    margin-bottom: 8px;
}

.scwrap-h4 {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: #3a3a3a;
}

.scwrap-content {
    padding: 18px 0;
}

.scwrap-btm-item-bx {
    border-top: 1px solid #cfcfcf;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    position: relative;
}

.scwrap-btm-item-bx-right {
    border-radius: 4px;
    width: 104px;
    height: 104px;
    overflow: hidden;
}

.scwrap-btm-item-bx-right a {
    display: block;
    height: 100%;
}

.scwrap-btm-item-bx-right img {
    height: 100%;
}


.scwrap-top .col-lg-4,
.scwrap-bottom .scwrap-btm-item .col-lg-4 {
    border-right: 1px solid #cfcfcf;
}

.scwrap-top .col-lg-4:last-child,
.scwrap-bottom .scwrap-btm-item .col-lg-4:last-child,
.scwrap-bottom .scwrap-btm-item .col-lg-4:nth-child(3) {
    border: none;
}

@media (min-width:768px) and (max-width:991px) {

    .scwrap-top .col-lg-4,
    .scwrap-bottom .scwrap-btm-item .col-lg-4 {
        border-right: none;
    }

}

/* <!-- ======================================sponsored-section-css-end===================================== --> */

/* <!-- ======================================most-popular-section-css-start===================================== --> */

.most-popular-section {
    padding: 75px 0 90px;
    background-color: var(--color-secondblack);
}



.mp-left .sub-heading,
.most-popular-section .sub-heading {
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.mp-lb-item-image a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.news-datebx {
    padding: 14px 3px;
}

.mp-lb-item-content .news-datebx h4 a {
    font-size: 18px;
    line-height: 144%;
    color: #c4c4c4;
}

.mp-lb-item-content .news-datebx p {
    justify-content: center;
    color: #c4c4c4;
}

.mp-lb-item-content {
    text-align: center;
}

.mp-lb-item-content .news-datebx p svg path {
    fill: #c4c4c4 !important;
}

.mp-lb-item {
    margin-bottom: 15px;
}

.mp-lb-item:last-child {
    margin: 0;
}

.mpc-img a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
}



.most-popular-card {
    position: relative;
}

.mpc-content {
    background: #313131;
    border-radius: 6px;
    width: 75%;
    margin: -90px auto 0;
    padding: 20px;
    position: relative;
}

.mpc-content .news-datebx {
    padding: 0;
}

.mpc-content .news-datebx p {
    color: #c4c4c4;
}

.mpc-content .news-datebx p svg path {
    fill: #c4c4c4;
}



.mpc-content .news-datebx h4 a {
    font-size: 24px;
    line-height: 154%;
    color: #d9d9d9;
}


.mp-rbxt-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid rgba(211, 211, 211, 0.32);
}

.mp-rbxti-rght-img {
    border-radius: 4px;
    width: 96px;
    height: 96px;
    overflow: hidden;
}

.mp-rbxti-lf .news-datebx h4 a {
    font-size: 16px;
    color: #c4c4c4;
}

.mp-rbxti-lf .news-datebx p {
    color: #c4c4c4;
}

.mp-rbxti-lf .news-datebx p svg path {
    fill: #c4c4c4;
}

.mp-rbxti-lf .news-datebx {
    padding: 0;
}




.mp-rightbx-bottm {
    padding: 25px;
    background: linear-gradient(131.83deg, #43C4B0 -16.66%, #40C4A8 14.21%, #2277C1 73.62%);
    border-radius: 6px;
    margin-top: 15px;
}

.newsletterbx span {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 13px;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.newsletterbx h5 {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 20px;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
}

.newsletterbx p {
    font-family: 'TT Hoves Pro Trial Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: #fff;
    margin: 10px 0 15px;
}

.newsletterbx .tnp-email {
    border: 1px solid #fff !important;
    border-radius: 100px !important;
    width: 100% !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    font-family: 'NomosSansTest-Regular' !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 143% !important;
    color: var(--color-white) !important;
    padding: 0 18px !important;
    outline: none !important;
}

.newsletterbx form input::placeholder {
    color: var(--color-white);
}

.newsletterbbtn,
.tnp-submit {
    border-radius: 100px !important;
    width: 100% !important;
    height: 40px !important;
    border: none !important;
    font-family: 'TT Hoves Pro Trial DemiBold' !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-transform: capitalize !important;
    color: #1c1c1c !important;
    margin-top: 15px !important;
    background: #fff !important;
}



@media (min-width: 992px) and (max-width: 1199px) {

    .mpc-content {
        width: 95%;
    }


}

@media (min-width: 768px) and (max-width: 991px) {

    .mp-left-bottom,
    .mp-rightbx-top {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .most-popular-section {
        padding: 45px 0 35px;
    }

    .mpc-content {
        width: 95%;
        padding: 25px;
    }

    .mpc-content .news-datebx h4 a {
        font-size: 20px;
        line-height: 130%;
        ;
    }
}

/* <!-- ======================================most-popular-section-css-end===================================== --> */

/* <!-- ======================================latest-shows-section-css-start===================================== --> */
.latest-shows-section {
    padding: 60px 0;
}

.latest-shows {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.latest-shows-content .news-datebx p {
    justify-content: center;
    margin-bottom: 10px;
}

.latest-shows-content .news-datebx {
    text-align: center;

}

.latest-shows-section .latest-left {
    justify-content: center;
}

@media (max-width: 1199px) {
    .latest-shows {
        display: unset;
    }


}

@media (min-width: 992px) and (max-width: 1299px) {

    .vcbr {
        flex: 0 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .vcbr {
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .latest-shows-section {
        padding: 0;
    }


    .sponsored-section .sub-heading {
        font-size: 22px;
    }

    .sponsored-right .sponsored-image {
        width: 75px;
    }

    .spnsored-content-wrapper .sponsored-flx {
        border-bottom: none;
    }

}



/* <!-- ======================================latest-shows-section-css-end===================================== --> */

/* <!-- ======================================latest-features-section-css-start===================================== --> */
.lf-rightbx .lfr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.latest-features-section {
    padding: 60px 0;
    background-color: var(--color-secondblack);
}

.latest-features-section .mp-rbxt-item {
    border: none;
}

.lf-left .sub-heading {
    color: var(--color-white);
}

.lf-left p {
    font-family: 'TT Hoves Pro Trial Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin: 15px 0 25px;
}

.lf-left .latest-btns .btn-all {
    color: var(--color-white);
}

.lf-left .latest-btns .btn-all svg path {
    fill: var(--color-white);
}

.lf-rightbx .lfr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: center;
}



.latest-features-section .mp-rbxt-item {
    border: none;
    padding: 0;
    gap: 20px;
    align-items: center;
}

.lf-left .sub-heading {
    color: var(--color-white);
}

.lf-left p {
    font-family: 'TT Hoves Pro Trial Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin: 15px 0 25px;
}

.lf-left .latest-btns .btn-all {
    color: var(--color-white);
}

.lf-left .latest-btns .btn-all svg path {
    fill: var(--color-white);
}

.news-pst span {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 15px;
    line-height: normal;
    color: #c4c4c4;
    display: block;
    margin-bottom: 10px;
}

.news-pst p {
    font-family: 'TT Hoves Pro Trial Medium';

    font-weight: 500;
    font-size: 16px;
    line-height: 162%;
    color: #c4c4c4;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .lf-rightbx .lfr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 991px) {
    .lf-rightbx .lfr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .lf-rightbx .lfr-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 10px;
    }


}

/* <!-- ======================================latest-features-section-css-end===================================== --> */


/* <!-- ======================================latest-commentaries-section-css-start===================================== --> */

.Latest-commentaries-section {
    padding: 65px 0;
    position: relative;
    z-index: 4;
    background-color: #212121;
}

.Latest-commentaries-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/commentaries-after.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 35%;
    z-index: 1;
}

.Latest-commentaries-section .sub-heading {
    color: var(--color-white);
    text-transform: uppercase;
    padding-bottom: 20px;
    display: inline-block;
}



.Latest-commentaries-section .sub-heading:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 6px;
    border-top: 2px solid var(--color-white);
    margin: 0 auto;
    border-bottom: 2px solid var(--color-white);
}

.commentaries-main {
    position: relative;
    z-index: 5;
    margin-top: 44px;
}

.commentaries-main .latest-shows-content .news-datebx {
    text-align: left;
}

.commentaries-main .latest-shows-content .news-datebx p {
    justify-content: left;
    color: #c4c4c4;
}

.commentaries-main .latest-shows-content .news-datebx p svg path {
    fill: #c4c4c4;
}

.commentaries-main .latest-shows-content .news-datebx h4 a {
    color: #c4c4c4;
}

.commentaries-main .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.commentaries-main .owl-nav button i {
    color: var(--color-white);
    font-size: 20px;
}

.commentaries-main .owl-nav button {
    position: absolute;
}

.commentaries-main .owl-nav button.owl-prev {
    left: -2rem;
}

.commentaries-main .owl-nav button.owl-next {
    right: -2rem;
}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (max-width: 1199px) {

    .lf-rightbx {
        margin-top: 20px;
    }

    .commentaries-main .owl-nav button.owl-next {
        right: -1rem;
    }

    .commentaries-main .owl-nav button.owl-prev {
        left: -1rem;
    }
}


@media (max-width: 767px) {


    .Latest-commentaries-section {
        padding: 40px 30px;
    }

    .Latest-commentaries-section .sub-heading:after {
        width: 100%;
    }

    .commentaries-main .owl-nav {
        justify-content: center;
        position: unset;
        transform: unset;
        gap: 35px;
        display: flex;
        margin-top: 10px;
    }

    .commentaries-main .owl-nav button {
        position: unset;
    }

    .Latest-commentaries-section .sub-heading {
        font-size: 24px;
    }

    .news-datebx h4 a {
        font-size: 18px;
    }
}

/* <!-- ======================================latest-commentaries-section-css-end===================================== --> */

/* <!-- ======================================live-section-css-start===================================== --> */
.live-section {
    padding: 95px 0;
    background: var(--color-secondblack);
}


.live-card {
    background: linear-gradient(126.87deg, #43C4B0 -18.05%, #40C4A8 19.86%, #2277C1 92.79%);
    border-radius: 6px;
    padding-top: 5px;
}

.video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    outline: none;
    background: no-repeat;
    border: none;
    padding: 0;
    width: 60px;
    height: 60px;
}

.video-overlay svg {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video-box {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.video-box video {
    width: 100%;
    object-fit: cover;
    height: 100%;
    display: block;
}

.video-tags {
    position: absolute;
    border-radius: 10px !important;
    height: 34px;
    left: 2rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

span.tag-live {
    background: #f90011;
    font-family: 'NomosSansTest-Regular';
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

span.tag-channel {
    background: #fff;
    font-family: 'NomosSansTest-Regular';
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1c1c1c;
}

.video-tags span {
    padding: 5px 10px;
}

.video-content-bx {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vcbl p {
    font-family: 'NomosSansTest-SemiBold';
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
}

.video-bx-wrrper {
    position: relative;
}

.vcbl h5 {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 25px;
    line-height: normal;
    color: #fff;
    margin-top: 15px;
}

.page-id-56 .live-card {
    background: linear-gradient(45deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

.page-id-8 .live-card {
    background: linear-gradient(to bottom, #00c6fb 0%, #005bea 100%);
}

@media (max-width: 767px) {
    .live-section {
        padding: 40px 0;
    }

    .vcbl p {
        font-size: 14px;
        line-height: 171%;
    }

    .vcbl h5 {
        font-size: 20px;
    }

    .video-content-bx {
        gap: 24px;
        align-items: flex-start;
        flex-direction: column;
        padding: 20px;
    }


}

@media (max-width: 575px) {
    .video-box {
        height: 220px;
    }
}

/* <!-- ======================================live-section-css-end===================================== --> */

/* <!-- ======================================lifestyle-section-css-start===================================== --> */
.lifestyle-section {
    padding: 0 0 90px;
    background: var(--color-secondblack);
}

.lifestyle-section .sub-heading {
    color: var(--color-white);
    text-transform: uppercase;
    padding-bottom: 20px;
    text-align: left;
}

.lifestyle-section .sub-heading:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    border-top: 2px solid var(--color-white);
    margin: 0 auto;
    border-bottom: 2px solid var(--color-white);
}

.lifestyle-main {
    margin-top: 30px;
}

.lifestyle-cardimg a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.lifestyle-content {
    padding: 15px 0;
}


.lifestyle-content span {
    font-family: 'NomosSansTest-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    color: #c4c4c4;
    display: block;
}

.lifestyle-content h4 a {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 30px;
    line-height: 133%;
    color: #c4c4c4;
    display: block;
    margin: 5px 0;
}

.lifestyle-content>p {
    font-family: 'TT Hoves Pro Trial Regular';
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: #c4c4c4;
    margin-top: 20px;
}

.lifestyle-content .news-datebx p,
.lifestyle-content .news-datebx p svg path {
    color: #c4c4c4;
    fill: #c4c4c4;
}

.lifestyle-item {
    display: flex;
}

.lf-rbxt {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    margin-bottom: 24px;
    align-items: center;
}

.lf-rbxti-rght-img {
    width: 190px;
    border-radius: 6px;
    overflow: hidden;
    height: 150px;
}

.lf-rbxti-rght-img img {
    height: 100%;
    width: 100%;
}

.lf-rbxti-lf .news-datebx p,
.lf-rbxti-lf .news-datebx p svg path {
    color: #c4c4c4;
    fill: #c4c4c4;
    margin-bottom: 10px;
}

.lf-rbxti-lf .news-datebx h4 a {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 18px;
    line-height: 156%;
    color: #c4c4c4;
}

.author-name p {
    font-family: 'NomosSansTest-Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #c4c4c4;
}

.lf-rbxti-lf {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lf-rbxti-lf .news-datebx {
    padding: 0;
}

@media (max-width: 767px) {

    .lifestyle-content h4 a {
        font-size: 20px;
    }

    .lf-rbxti-rght-img {
        width: 130px;
        height: 100px;
    }

    .lf-rbxti-lf .news-datebx h4 a {
        font-size: 16px;
        line-height: 150%;
    }

    .lf-rbxti-lf {
        gap: 15px;
    }
}

/* <!-- ======================================lifestyle-section-css-end===================================== --> */

/* <!-- ======================================latest-sports-section-css-start===================================== --> */
.latest-sports-section {
    padding: 55px 0;
}



.latest-left .sub-heading {
    text-transform: uppercase;
    margin-bottom: 10px;
}




.latest-btns .btn-all {
    color: var(--color-black);
}

.latest-slid-btns button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #f1f1f1;
    stroke: #dadada;
    border: 1px solid #dadada;
}




.latest-content {
    padding: 15px 0;
}

.latest-sports-section .news-datebx h4 a {
    font-size: 19px;
}

.latest-sports-imagebx a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

/* <!-- ======================================latest-sports-section-css-end===================================== --> */
/* <!-- ======================================footer-css-start===================================== --> */
.footer {
    padding: 24px 0;
    background: #3b3b3b;
}

.footer-main {
    padding: 75px 0;
}

.footer-main .footer-content .footer-p {
    font-family: 'NomosSansTest-Regular';
    font-weight: 500;
    font-size: 16px;
    line-height: 162%;
    color: #c4c4c4;
    margin: 30px 0;
}

.footer-main .slinks ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-main .slinks ul li a i {
    color: #C4C4C4;
}

.footer-content .footer-heading {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.f-links li a {
    font-family: 'NomosSansTest-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: #c4c4c4;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-content .ul-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.slinks a i {
    font-size: 22px;
}


ul.fd-links i {
    font-size: 20px;
}

.fd-links li a {
    font-family: 'NomosSansTest-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #c4c4c4;
    display: inline-flex;
    gap: 10px;
    margin-bottom: 26px;
}



.fd-links li:last-child a,
ul.f-links li:last-child a {
    margin: 0;
}

.footer-last p {
    font-family: 'NomosSansTest-Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 24px;
}

.footer-logo .navbar-brand img.theme-logo {
    display: none;
}

.footer-content .footer-heading svg {
    filter: invert(1);
    display: none;
}

.footer-content .footer-heading svg {
    transition: all 0.5s;
}

.footer-content .ul-wrap ul {
    padding-top: 20px;
}

@media (max-width: 767px) {



    .footer-main {
        padding: 15px 0;
    }

    .footer-logo,
    .footer-p {
        text-align: center;
    }

    .footer-main .slinks ul {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .footer-content .footer-heading {
        padding: 18px 0;
    }

    .footer-content .footer-heading svg {
        display: block;
    }

    .footer-main .col-lg-3:last-child .footer-heading svg {
        display: none;
    }

    .footer-main .slinks ul {
        justify-content: center;
    }


}

/* <!-- ======================================footer-css-end===================================== --> */
/* <!-- ======================================shows-page-css-start===================================== --> */

/* ===========================================<!-- shows-banner-section-css-start -->=========================================== */
.shows-banner-section {
    padding: 35px 0 65px;
    background: #141414;
}

.shows-banner-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/commentaries-after.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 35%;
    z-index: 1;
}

.shows-banner-section .owl-carousel {
    z-index: 2;
}

.shows-content {
    height: 100%;
    display: flex;
    align-items: end;
    padding: 50px;
    justify-content: center;
    position: absolute;
    bottom: 0;
    width: 70%;
    right: 0;
    left: 0;
    text-align: center;
    margin: 0 auto;
}

.shows-banner-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.shows-banner-card:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 25%);
}

.shows-content .btn-all {
    margin-top: 25px;
}

.shows-video-bx {
    width: 100%;
}

.shows-video-bx video {
    display: block;
}

.shows-banner-section .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.shows-banner-section .owl-dot span {
    border-radius: 100%;
    background: #fff;
    width: 10px;
    height: 10px;
    display: block;
    margin: 0 5px;
}

.shows-banner-section .owl-dot.active span {
    background: #41c2b8;
}

@media (max-width: 767px) {
    .shows-content {
        padding: 20px;
        width: 100%;
    }

    .shows-banner-section {
        padding: 40px 0;
    }

}

@media (max-width:575px) {
    .shows-video-bx {
        height: 250px;
    }

    .shows-video-bx video {
        height: 250px;
    }
}

/* ===========================================<!-- shows-banner-section-css-end -->=========================================== */
/* ===========================================<!-- world-news-section-css-start -->=========================================== */
.world-news-section {
    padding: 75px 0 95px;
    background-color: #141414;
}

.world-news-main {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.world-news-left {
    padding: 25px 35px 25px 30px;
}

.wn-listbx-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    position: relative;
    margin-bottom: 20px;
    align-items: center;
}

.wn-listbx-lf-img {
    border-radius: 4px;
    width: 235px;
    overflow: hidden;
}

.wn-listbx-lf-img a {
    width: 100%;
}

.world-news-left .sub-heading {
    text-transform: uppercase;
    color: #262626;
    margin-bottom: 10px;
}

.wnr-img {
    width: 100%;
    position: relative;
}

.world-news-right:after {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 59.87%, #000 100%);
    opacity: 0.7;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.world-news-right {
    position: relative;
}

.wnr-flx {
    position: absolute;
    z-index: 4;
    height: 100%;
    width: 100%;
    padding: 30px 30px 20px;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wnrc-tp a {
    border: 1px solid #ebeef3;
    border-radius: 3px;
    display: inline-block;
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: #ebeef3;
    padding: 10px 15px;
    line-height: normal;
}

.wnrc-btm .news-datebx p,
.wnrc-btm .news-datebx p svg path {
    color: #fff;
    fill: #fff;
}

.wnrc-btm .news-datebx h4 a {
    font-family: 'TT Hoves Pro Trial Bold';
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    line-height: normal;
}

@media (max-width:1399px) {
    .world-news-left {
        padding: 20px 25px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .wn-listbx-lf-img {
        width: 155px;
    }

    .wn-listbx-rght .news-datebx h4 a {
        font-size: 18px;
    }

    .wn-listbx-rght .news-datebx {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .world-news-section {
        padding: 40px 0;
    }

    .wn-listbx-lf-img {
        width: 180px;
    }

    .world-news-left {
        padding: 20px 25px 0;
    }

    .wnr-flx {
        padding: 20px;
    }

    .wnrc-btm .news-datebx h4 a {
        font-size: 20px;
    }
}

@media (max-width:575px) {
    .wn-listbx-item {
        grid-template-columns: 1fr;
    }

    .wn-listbx-lf-img {
        width: 100%;
    }
}


/* ===========================================<!-- world-news-section-css-end -->=========================================== */
/* ===========================================<!-- sponsored-section.shows-ss-css-start -->=========================================== */

.sponsored-section.shows-ss .scwrap-top .col-lg-4,
.sponsored-section.shows-ss .scwrap-bottom .scwrap-btm-item .col-lg-4 {
    border: none;
}

.sponsored-section.shows-ss {
    padding: 50px 0;
}

/* ===========================================<!-- sponsored-section.shows-ss-css-end -->=========================================== */
/* ===========================================<!-- business-css-start -->=========================================== */
.business-section {
    padding: 95px 0;
    background: #141414;
}

.business-crd-wrapper {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bc-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    z-index: 1;
    width: 60%;
    padding: 30px 45px 25px;
}

.business-crd {
    position: relative;
    background: linear-gradient(126.87deg, #43C4B0 -18.05%, #40C4A8 19.86%, #2277C1 92.79%);
}

.bc-image {
    width: 100%;
    position: relative;
}

.bc-image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.bcc-btm .news-datebx p,
.bcc-btm .news-datebx p svg path {
    fill: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 156%;
    color: #fff;
}

.bcc-btm .news-datebx h4 a {
    font-size: 34px;
    line-height: 126%;
    color: #f9fafc;
    margin-bottom: 20px;
}

.bcc-btm>p {
    font-family: 'NomosSansTest-Regular';
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
}

.business-crd-wrapper .owls-btns {
    padding: 22px;
    background: linear-gradient(126.87deg, #43C4B0 -18.05%, #40C4A8 19.86%, #2277C1 92.79%);
    text-align: end;
    display: flex;
    justify-content: end;
    gap: 30px;
    align-items: center;
}


.business-crd-wrapper .owl-dots button.owl-dot.active {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: #141414;
}

.business-crd-wrapper .owl-nav {
    position: absolute;
    width: 310px;
    right: 0;
    bottom: 3.2rem;
}

.business-crd-wrapper .custom-prev,
.custom-next {
    border-radius: 6px;
    width: 46px;
    height: 32px;
    border: none;
}



.business-crd-wrapper .owl-dots button.owl-dot {
    border: none;
    background: transparent;
}

.business-crd-wrapper .owl-nav button {
    width: 46px;
    height: 32px;
    background: #fff !important;
    border-radius: 6px;
    position: absolute;
}

.business-crd-wrapper .owl-nav button.owl-prev {
    left: 0;
}

.business-crd-wrapper .owl-nav button.owl-next {
    right: 0;
}

.business-crd-wrapper .owl-dots {
    counter-reset: dot-counter;
    display: flex;
    align-items: center;
    gap: 30px;
}

.business-crd-wrapper .owl-dot {
    counter-increment: dot-counter;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 15px;
    line-height: normal;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.61);
    padding: 0 !important;
}

.business-crd-wrapper .owl-dot::before {
    content: counter(dot-counter);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 30px;
}

.business-crd-wrapper .owl-dot.active {
    background-color: #fff !important;
    color: #000 !important;
}

@media (max-width:991px) {
    .bc-content {
        width: 100%;
    }
}

@media (max-width:767px) {
    .business-section {
        padding: 65px 0;
    }

    .bc-content {
        padding: 25px;
    }

    .bcc-btm .news-datebx h4 a {
        font-size: 20px;
    }

    .bc-image {
        height: 300px;
    }

    .bc-image img {
        height: 100%;
    }

    .wnrc-tp a {
        font-size: 14px;
        padding: 5px 10px;
    }

    .bcc-btm .news-datebx p {
        font-size: 14px;
    }
}

@media (max-width:575px) {
    .bc-content {
        padding: 10px;
    }

}

/* ===========================================<!-- business-css-end -->=========================================== */
/* <!-- ======================================Talk Shows-start-css===================================== --> */
.talk-shows-section {
    background-color: #141414;
}

.talk-shows-section .sub-heading {
    color: #fff;
    margin-bottom: 30px;
}

.tsm-image {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.tsm-content .news-datebx p,
.tsm-content .news-datebx p svg path {
    color: #FFf;
    fill: #fff;
}

.tsm-content .news-datebx {
    padding: 0;
}

.tsm-content {
    padding: 25px 0;
}

.tsm-content .news-datebx h4 a {
    line-height: 145%;
    color: #c4c4c4;
}

@media (max-width:767px) {
    .talk-shows-section .container-fluid {
        padding: 0 30px !important;
    }
}

/* <!-- ======================================Talk Shows-end-css===================================== --> */



/* <!-- ======================================shows-page-css-end===================================== --> */
/* <!-- ======================================features-page-css-start===================================== --> */

/* features-banner-section-start */

.features-banner-section {
    padding: 35px 0 30px;
    background: linear-gradient(113.73deg, #09373A 9.27%, #000000 68.48%);
}

.featuresb-card {
    display: block;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.featuresb-content {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgb(0 0 0 / 60%);
}

.featuresb-content .btn-all {
    background: transparent;
    margin-top: 25px;
}

.featuresb-content .sub-heading {
    font-size: 32px;
    line-height: 137%;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-white);
}

.features-banner-section .owl-dot span {
    border-radius: 100%;
    background: #fff;
    width: 10px;
    height: 10px;
    display: block;
    margin: 0 5px;
}

.features-banner-section .owl-dots {
    text-align: center;
    margin-top: 26px;
}

.features-banner-section .owl-dot.active span {
    background: #41c2b8;
}

@media (max-width:767px) {
    .featuresb-content .sub-heading {
        font-size: 20px;
    }

}

/* features-banner-section-end */
/* lfm-section-start */
.lfm-section {
    padding: 60px 0;
    background-color: var(--color-secondblack);
}

.lfm-section .lfm-lft {
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.lfm-section .lfm-lft-content {
    position: absolute;
    left: 0;
    top: 0;
    padding: 25px 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.76) 72.26%, rgba(0, 0, 0, 0.8) 100%);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
}

.lfm-section .lfm-lft-video video {
    display: block;
}

.lfm-section .lfm-lft-content .news-datebx p,
.lfm-section .lfm-lft-content .news-datebx p svg path {
    color: #c4c4c4;
    fill: #c4c4c4;
}

.lfm-section .lfm-lft-content .news-datebx h4 a {
    font-size: 28px;
    line-height: 136%;
    color: var(--color-white);
}

.lfm-section .latest-features-main .col-lg-6:first-child {
    border-right: 1px solid rgba(211, 211, 211, 0.32);
}

.lfm-section .sub-heading {
    color: var(--color-white);
    border-bottom: 0.89px solid var(--color-white);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.lfm-section .vbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    border: none;
    background: transparent;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.lfm-section .lfm-right-rght-img {
    border-radius: 4px;
    width: 270px;
    height: 203px;
    overflow: hidden;
}

.lfm-section .lfm-right-rght-img img {
    height: 100%;
}

.lfm-section .lfm-right-itm {
    border-top: 1px solid rgba(211, 211, 211, 0.32);
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    position: relative;
    align-items: center;
}

.lfm-section .lfm-right-itm:first-child {
    border: none !important;
}

.lfm-section .lfm-right-lf .news-datebx p,
.lfm-section .lfm-right-lf .news-datebx p svg path,
.lfm-section .lfm-right-lf .news-datebx h4 a {
    color: #c4c4c4;
    fill: #c4c4c4;
}

.lfm-section .lfm-mxbx-imagebx a {
    width: 100%;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.lfm-section .lfm-mxbx-content .news-datebx p,
.lfm-section .lfm-mxbx-content .news-datebx p svg path,
.lfm-section .lfm-mxbx-content .news-datebx h4 a {
    color: #c4c4c4;
    fill: #c4c4c4;
}

@media (min-width:992px) and (max-width:1199px) {
    .lfm-section .lfm-right-rght-img {
        border-radius: 4px;
        width: 150px;
        height: 110px;
        overflow: hidden;
    }
}

@media (max-width:991px) {
    .lfm-section .latest-features-main .col-lg-6:first-child {
        border: none;
    }

}

@media (max-width:767px) {

    .lfm-section .lfm-lft-content .news-datebx h4 a {
        font-size: 20px;
    }

    .lfm-section .lfm-right-rght-img {
        width: 200px;
        height: 140px;
    }

}

@media (max-width:575px) {
    .lfm-section .lfm-right-itm {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .lfm-section .lfm-right-rght-img {
        width: 100%;
        height: 100%;
    }
}

/* lfm-section-end */
/* <!-- features-showtalk-section-start=--> */
.features-showtalk-section {
    padding: 15px 0 50px;
    background: #141414;
}

.features-showtalk-section .fss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    border-bottom: 1px solid rgba(211, 211, 211, 0.32);
    padding-bottom: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.features-showtalk-section .sub-heading {
    color: var(--color-white);
    margin-bottom: 34px;
    text-transform: uppercase;
}

.features-showtalk-section .scwrap-btm-item-bx {
    border-top: 1px solid #cfcfcf;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    position: relative;
}

.features-showtalk-section .fss-g-bx {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    position: relative;
    align-items: center;
}

.features-showtalk-section .fss-g-bx-right {
    border-radius: 4px;
    width: 105px;
    height: 105px;
    overflow: hidden;
}

.features-showtalk-section .fss-g-bx-right a {
    display: block;
    width: 100%;
    height: 100%;
}

.features-showtalk-section .fss-g-bx-right img {
    height: 100%;
}

.features-showtalk-section .fss-g-h4 {
    font-family: 'TT Hoves Pro Trial Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: #c4c4c4;
}

.features-showtalk-section .fss-g-h4 a {
    display: block;
    color: inherit;
}

@media (min-width:767px) and (max-width:991px) {
    .features-showtalk-section .fss-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:767px) {
    .features-showtalk-section .fss-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

/* <!--=features-showtalk-section-end=== --> */
/* <!--=top-world-news-section-start=== --> */

.top-world-news-section {
    padding: 75px 0;
}

.top-world-news-section .sub-heading {
    margin-bottom: 44px;
}

.twn-mxbx-imagebx a {
    border-radius: 4px;
    width: 100%;
    display: block;
    overflow: hidden;
}

.twn-mxbx-content .news-datebx {
    padding: 25px 0;
}



.twn-mxbx-content .news-datebx h4 a {
    line-height: 145%;
}

/* <!--=top-world-news-section-end=== --> */



/* <!-- ======================================features-page-css-end===================================== --> */
/* <!-- ======================================btm-live-page-css-start===================================== --> */
.top-world-news-section.btm-live-twns {
    background: var(--color-white);
}

.top-world-news-section.btm-live-twns .twn-mxbx-content .news-datebx p,
.top-world-news-section.btm-live-twns .twn-mxbx-content .news-datebx p svg path,
.top-world-news-section.btm-live-twns .twn-mxbx-content .news-datebx h4 a {
    color: #3A3A3A;
    fill: #3A3A3A;
}

.fancybox-skin {
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #fff !important;
}

.fancybox-image {
    border-radius: 12px !important;
}

/* <!-- ======================================btm-live-page-css-end===================================== --> */
/* <!-- ======================================privacy-policy-page-css-start===================================== --> */
.privacy-policy-banner {
    padding: 70px 0;
    background: linear-gradient(113.73deg, #09373A 9.27%, #000000 68.48%);
}

.privacy-policy-section {
    padding: 70px 0;
}

.privacy-policy-banner .section-heading p {
    color: var(--color-white);
    margin-top: 20px;
}

.ppwrap-inner .sub-heading {
    margin-bottom: 10px;
    color: var(--color-white);
}

.ppwrap-inner {
    margin-bottom: 60px;
}

.ppwrap-inner ul {
    margin: 20px 0;
}

.ppwrap-inner ul li {
    margin-bottom: 8px;
    color: var(--color-white);
}

.ppwrap-inner ul li a {
    color: #43C4B0;
}

.ppwrap-inner .section-heading p a {
    color: #43C4B0;
}

.ppwrapper-banner {
    margin-bottom: 50px;
    /* text-align: center; */
}

@media (max-width:767px) {
    .ppwrap-inner .sub-heading {
        font-size: 22px;
    }
}

/* <!-- ======================================privacy-policy-page-css-end===================================== --> */
/* <!-- ======================================contact-us-page-css-start===================================== --> */
.contact-us-section {
    padding: 100px 0;
    background: linear-gradient(113.73deg, #09373A 9.27%, #000000 68.48%);
    position: relative;
}

.contact-us-section:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    background: #fff;
    height: 100%;
}

.contact-us-main {
    position: relative;
    z-index: 4;
}

.contact-us-form .sub-heading {
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-us-form form .input-group textarea {
    width: 100%;
    height: 150px;
    resize: none;
    padding: 15px;
    border-radius: 6px !important;
    overflow: hidden !important;
    border: none;
    font-family: 'NomosSansTest-Regular';
    font-size: 16px;
    font-weight: normal;
    color: #3A3A3A;
    outline: none;
}

.contact-us-form form .input-group label {
    display: block;
    font-family: 'NomosSansTest-Regular';
    font-size: 16px;
    font-weight: normal;
    color: var(--color-white);
    margin-bottom: 8px;
}

.contact-us-form form .input-group input {
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 6px !important;
    overflow: hidden !important;
    border: none;
    font-family: 'NomosSansTest-Regular';
    font-size: 16px;
    font-weight: normal;
    color: #3A3A3A;
    padding: 0 15px;
    outline: none;
}

.contact-us-form {
    padding: 40px;
}

.contact-us-form form .input-group {
    margin-bottom: 20px;
    display: block;
}

.wpcf7-submit {
    border: 2px solid transparent;
    padding: 9px 20px;
    border-radius: 100px;
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 16px;
    color: var(--color-black) !important;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    position: relative;
    cursor: pointer !important;
}

.wpcf7-submit:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: 1;
    background: linear-gradient(90deg, #41D098 0%, #3D99E1 100%);
    border-radius: 999px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

.contact-information {
    padding: 40px;
}

.contact-information .sub-heading {
    margin-bottom: 20px;
}

.cbx-map {
    height: 400px;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
}

.cbx-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cbx-info ul li {
    margin-bottom: 20px;
}

.cbx-info ul {
    margin: 30px 0;
}

.cbx-info ul li a {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-family: 'NomosSansTest-Medium';
    font-weight: 500;
    line-height: 150%;
    color: #3a3a3a;
}

.cbx-info ul li a p {
    font-size: 16px;
}

@media (max-width:991px) {
    .cbx-info ul li a {
        color: var(--color-white) !important;
    }

    .contact-information .sub-heading {
        color: var(--color-white) !important;
    }

    .contact-us-section:after {
        display: none;
    }

    .contact-us-form,
    .contact-information {
        padding: 0;
    }
}

/* <!-- ======================================contact-us-page-css-end===================================== --> */


/* <!-- ======================================about-us-page-css-start===================================== --> */
/* =============about-banner-css-start=========================== */
.about-banner {
    background: #141414;
    padding: 70px 0;
}

.about-banner .section-heading p {
    margin: 15px 0;
    font-family: 'TT Hoves Pro Trial Regular';
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-white);
    margin-top: 20px;
}

/* =============about-banner-css-end=========================== */


/* =============who-we-are-section-css-start=========================== */

.whoewe-section {
    padding: 70px 0;
    position: relative;
    background: #141414;
}

.section-heading .span {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 15px;
    line-height: normal;
    color: var(--color-white);
    display: block;
    margin-bottom: 10px;
}

.whoewe-main {
    position: relative;
    z-index: 4;
}

.whoewe-content .sub-heading {
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 30px;
    line-height: 133%;
    color: var(--color-white);
    display: block;
    margin: 20px 0;
}

.whoewe-content p {
    margin: 15px 0;
    font-family: 'TT Hoves Pro Trial Regular';
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-white);
    margin-top: 20px;
}

.whoewe-image a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.whoewe-content {
    padding: 20px;
}

.whoewe-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/commentaries-after.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 35%;
    z-index: 1;
}

/* =============who-we-are-section-css-end=========================== */



/* <!-- ======================================about-us-page-css-end===================================== --> */
/* <!-- ======================================career-page-css-start===================================== --> */
.career-section {
    padding: 100px 0;
    background: linear-gradient(113.73deg, #09373A 9.27%, #000000 68.48%);
}

.career-section .sub-heading {
    color: var(--color-white);
    margin-bottom: 30px;
}

.career-section .sub-heading .career-topbx form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.filter-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 20px;
}

.search-box,
.custom-select {
    width: 100%;
    height: 40px;
    border-radius: 6px !important;
    overflow: hidden !important;
    border: none;
    font-family: 'NomosSansTest-Regular';
    font-size: 16px;
    font-weight: normal;
    color: #3A3A3A;
    padding: 0 15px;
    outline: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.search-box input {
    border: none;
    height: 100%;
    width: 100%;
    outline: none;
}

.custom-select select {
    width: 100%;
    border: none;
    appearance: none;
    outline: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 15px;
    z-index: 1;
    background: transparent;
}

.custom-select .input-box {
    width: 100%;
}

.career-main {
    margin-top: 50px;
}

.career-bx {
    height: 100%;
}

.career-bx .career-anchor {
    padding: 25px;
    border-radius: 6px;
    border: 1px solid var(--color-white);
    display: block;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 5%);
    transition: all 0.5s;
    height: 100%;

}

.career-bx .career-anchor:hover {
    box-shadow: 0 3px 15px -5px rgb(0 0 0 / 20%);
}

.career-innerbx h4 {
    font-family: "TT Hoves Pro Trial DemiBold";
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: var(--color-white);
}

.career-innerbx ul {
    margin: 20px 0;
}

.career-innerbx ul li p {
    font-size: 16px;
    line-height: 150%;
    color: var(--color-white);
    font-family: 'TT Hoves Pro Trial Regular';
    display: inline-flex;
    gap: 10px;
}

.career-innerbx ul li p b {
    font-family: 'TT Hoves Pro Trial DemiBold';
}

.career-innerbx .pbtn {
    border-radius: 100px;
    font-family: 'TT Hoves Pro Trial DemiBold';
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    cursor: pointer;
}

.career-innerbx .pbtn svg path {
    fill: var(--color-white);
}

@media (min-width:992px) and (max-width:1199px) {
    .filter-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width:768px) and (max-width:991px) {
    .filter-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:576px) and (max-width:767px) {
    .filter-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:575px) {
    .filter-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* <!-- ======================================career-page-css-end===================================== --> */