* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
    letter-spacing: 0.5px;
    transition: 0.5s ease-in-out;
    color: #007074;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
}

body,
html {
    overflow-x: hidden;
    background-color: #f7f7f7;
}

.trending-grid-row {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 70px;
    margin-bottom: 20px;
}

.trending-today-container {
    border: 1px solid #efefef;
    padding-bottom: 20px;
    margin-top: 60px;
}

.trending-side-row>div>h3 {
    margin: 15px 0px 15px 0px;
}

.trending-today-container>div>h1 {
    font-size: 42px;
    /* color: #1c1c1c; */
    /* font-weight: 600; */
    margin: 20px 0px 20px 0px;
}

.trending-side-row {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #efefef;
}

.trending-side-row>div:nth-child(1)>img {
    width: 100%;
    border-radius: 10px;
    height: 600px;
    object-fit: cover;
    object-position: top;
}


.trending-side-row>div:nth-child(2)>div>img {
    width: 100%;
    border-radius: 10px;
}

.trending-side-row>div:nth-child(2)>div>p {
    margin: 10px 0px 20px 0px;
}


/* Bollyword cards grid row css starts here */
.bollywood-cards-grid-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 10px;
    margin-top: 20px;
}

.bollywood-cards-grid-row>div>img {
    width: 100%;
    border-radius: 10px;
    height: 120px;
    object-fit: cover;
    object-position: top;
}

/* Bollywood cards grid row css ends here */

/* Latest New css starts here */
.heading-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.heading-row>div>h4 {
    font-weight: 600;
    font-size: 32px;
}

.heading-row>div>button {
    border: none;
    background-color: transparent;
    background-color: #007074;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
}

.view-more-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.view-more-cta>button {
    border: none;
    background-color: transparent;
    border: 2px solid #007074;
    color: #1c1c1c;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
}

/* Grid row */
.latest-news-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.latest-news-grid-row>div>div {
    overflow: hidden;
    border-radius: 10px;
}

.latest-news-grid-row>div>div>img {
    width: 100%;
    border-radius: 10px;
    height: 150px;
    object-fit: cover;
    object-position: top;
}

.latest-news-grid-row>div>div>img:hover {
    transform: scale(1.1);
}

.latest-news-grid-row>div>p {
    font-size: 16px;
    margin-top: 10px;
}

.bollywood-cards-grid-row>div>p {
    font-size: 16px;
}

@media screen and (max-width: 992px) {
    .trending-grid-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .trending-side-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .latest-news-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .heading-row {
        /* flex-direction: column; */
        align-items: flex-start;
    }
}

@media screen and (max-width: 598px) {

    .latest-news-grid-row>div>p,
    .bollywood-cards-grid-row>div>p {
        font-size: 14px;
    }

    .trending-today-container>div>h1 {
        font-size: 28px;
    }

    .view-more-cta {
        display: none;
    }

    .heading-row>div>h4 {
        font-size: 24px;
    }

    .trending-grid-row {
        gap: 20px;
    }

    .trending-side-row {
        padding-bottom: 10px;
    }


    .bollywood-cards-grid-row {
        grid-template-columns: 140px 1fr;
    }

    .trending-side-row>div:nth-child(2) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .trending-side-row>div:nth-child(2)>div>p {
        font-size: 14px;
    }
}

/* Grid row */

/* Latest news css ends here */

/* Television Css starts here */
.television-container {
    padding: 40px 0px 40px 0px;
    border-bottom: 1px solid #efefef;
    position: relative;
    top: 0;
    z-index: 222;
}


/* Owl carousel css starts here */
.owl-carousel .item {
    margin: 5px;
}

/* Half cut effect */
.owl-stage-outer {
    margin-left: -40px;
    /* Equal to stagePadding */
    margin-right: -40px;
}

.img-container-carousel {
    overflow: hidden;
    border-radius: 10px;
}

.img-container-carousel>img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top;
}

.carousel-p {
    margin: 10px 0px 10px 0px;
}

.img-container-carousel>img:hover {
    transform: scale(1.1);
}

.heading-carousel-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.heading-carousel-row>div>div>.view-more-cta {
    margin: 0 !important;
    padding: 0 !important;
}

.arrow-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.arrow-cta>div:nth-child(1)>button {
    border: none;
    background-color: transparent;
    border: 2px solid #007074;
    width: 30px;
    height: 30px;
    border-radius: 50px;
}

.arrow-cta>div:nth-child(1)>button {
    color: #007074;
    margin: 5px;
}


/* Owl carousel css ends here */

/* Television css ends here */

/* Celeb css starts here */
.celeb-icon>img {
    width: 140px !important;
    height: 140px !important;
    border-radius: 50%;
}

.celeb-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.celeb-name {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}

/* Celeb css ends here */

/* Reviews css starts here */
.reviews-icons>img {
    height: 280px !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;
}

.bg-content {
    background-color: #007074;
    height: 200px;
    padding: 10px 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.bg-content>p {
    color: white;
}

.rating-star>i {
    color: white;
}

.filled {
    color: yellow !important;
}

/* Reviews css ends here */

/* Navbar css starts here */
.navbar-brand {
    position: relative;
}

header {
    position: relative;
    top: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.65);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    /* apply blur to background only */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand>img {
    width: 90px;
    position: absolute;
    border-radius: 50%;
    top: -20px;
    /* border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; */
}

.nav-item {
    margin: 0px 8px;
}

.nav-item>a {
    color: white !important;
}

.navbar-expand-lg .navbar-collapse {
    margin-left: 6rem;
}

.input-search {
    width: 380px;
    border-radius: 2px;
    height: 40px;
    border: none !important;
    outline: none;
    background-color: rgba(255, 255, 255, 0.45);
    padding: 0px 20px 0px 40px;
    font-size: 14px;
    backdrop-filter: blur(40px);
    color: white;
}

::placeholder {
    color: white;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12-18 */
    color: white;
}

.hide-on-scroll {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Navbar css ends here */

/* Footer css starts here */
.foooter_section {
    position: relative;
    height: auto;
    background-color: rgb(253, 253, 253);
    overflow: hidden;
}

.foooter_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url('https://blue-dart-dhl.vercel.app/Assets/Images/common/38f955e95230c48d618d764f467235204a424381.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    background-position: left top;
}

.fb_site_footer {
    display: grid;
    grid-template-columns: 320px 1fr 1.3fr 1fr;
    position: relative;
    grid-gap: 20px;
}


.section_cont {
    max-width: 1250px;
    margin: auto;
    padding: 50px 20px;
}

.logo_container img {
    width: 90px;
    max-width: 90px;
    margin-bottom: 20px;
    border-radius: 50%;
}


.logo_container p {
    font-size: 16px;
    font-weight: 400;
}

.covers li {
    list-style: none;
    padding-bottom: 10px;
}

.covers li a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
}


.covers li a:hover {
    color: #d62976;
}

.covers li span {
    vertical-align: middle;
    margin-left: 6px;
}

.covers li i {
    font-size: 10px;
    vertical-align: middle;
}

.socials i {
    font-size: 30px;
    margin-right: 10px;
}

.socials>a>img {
    width: 32px;
    margin: 0px 10px;
}

.socials {
    display: flex;
    align-items: center;
}

.socials .fa-square-youtube {
    color: #FF0000;
}

.socials .fa-square-whatsapp {
    color: #128C7E;
}

.socials .fa-square-instagram {
    color: #d62976;
}





.Languages li a:hover i {
    transition: .3s ease-in;
    opacity: 1;
    margin-left: 10px;
}

.Languages i {
    opacity: 0;
    margin-left: 0px;
}


@media screen and (max-width: 992px) {
    .fb_site_footer {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .fb_site_footer {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }
}


.divder {
    background-color: #F5F5F5;
    opacity: 1;
    margin: 30px 0px;
}

/* start */

.fb_footer_links {
    text-align: center;
    position: relative;
    z-index: 999;
}

.fb_footer_links a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    margin-right: 4px;
}

.fb_copyright_text {
    text-align: center;
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    z-index: 999;
}

@media screen and (max-width: 1080px) {
    .hide-mobile {
        display: none;
    }
}

.navbar-light .navbar-toggler-icon {
    background-image: none;
}

.navbar-light .navbar-toggler {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none !important;
    box-shadow: none;
}

.navbar-light .navbar-toggler>span>i {
    font-size: 2rem;
    color: white;
}

@media screen and (max-width: 992px) {
    .covers>ul {
        padding-left: 0rem;
    }

    .nav-item {
        text-align: center;
        margin-bottom: 20px;
    }

    .navbar-brand>img {
        width: 70px;
    }
}

.input-row {
    position: relative;
    top: 0;
}

.input-row>i {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    position: relative;
    z-index: 222;
    left: 15px;
}

/* Footer css ends here */


.loading,
.no-data {
    text-align: center;
    padding: 2rem;
}

.loading img,
.no-data img {
    width: 80px;
    height: 80px;
    mix-blend-mode: multiply;
    margin-bottom: 0.5rem;
}

.no-data {
    display: none;
}

.hidden {
    display: none !important;
}

.fixed-height {
    min-height: 600px;
}

.trespassing {
    margin: 30px 0px;
    text-align: justify;
}

.trespassing>p {
    font-weight: 500;
    font-size: 18px;
}

.reviews-icons>a>img {
    height: 280px;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    object-position: top;
}

.bg-content>a>p {
    color: white;
}

.hidden-form {
    display: none;
}

#password-section {
    max-width: 600px;
    margin: 6rem auto;
    text-align: center;
}

#password-section>input {
    height: 48px;
    outline: none;
    padding: 0px 30px;
    width: 100%;
    border: 1px solid #f7f7f7;
    margin-bottom: 20px;
    border-radius: 50px;
    margin-top: 20px;
}

#password-section>button {
    background-color: #ffae1a;
    border: none;
    color: white;
    padding: 10px 20px !important;
    width: auto !important;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

@media screen and (max-width: 598px) {
    #password-section {
        padding: 0px 15px;
    }
}

.nav-link>font>font {
    color: white !important;
}

.goog-te-gadget .goog-te-combo {
    height: 40px !important;
    border-radius: 30px !important;
    padding: 0px 10px !important;
    outline: none !important;
    border: 1px solid #f7f7f7 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.goog-te-gadget .goog-te-combo {
    -webkit-appearance: none;
    appearance: none;
}

.bg-content>a>p>font>font {
    color: white;
}

.goog-te-combo,
.VIpgJd-ZVi9od-ORHb *,
.VIpgJd-ZVi9od-SmfZ *,
.VIpgJd-ZVi9od-xl07Ob *,
.VIpgJd-ZVi9od-vH1Gmf *,
.VIpgJd-ZVi9od-l9xktf * {
    font-family: "Lexend", sans-serif !important;
}

.pagination-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0px 40px 0px;
}

.table>:not(:last-child)>:last-child>* {
    color: white !important;
}

#articles-body>tr>td>button>i {
    color: white;
}

.owl-carousel.owl-drag .owl-item {
    width: 235.2px !important;
}

.celeb-carousels {
    height: 180px !important;
}

.external_links {
    list-style: disc !important;
}

.truncate-multi-line {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Change to 1, 3, etc. as needed */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
