/* Color Code */

/* #8e55c2;
#7552f6; */

/* Global Css */

body {
    font-family: "Mukta", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #5F5F5F;
}

a:hover {
    color: #001B49;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

/* 
.btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, rgb(64, 151, 249), rgb(10, 240, 199));
    color: white;
    text-decoration: none;
    text-decoration-line: none;
    transition: .4s linear;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    border-radius: 30px;
    border: 0;
}

.btn:hover {
    color: white;
}

.btn:hover::before {
    transform: scaley(1);
    color: black;
    z-index: -1;
}

.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a93bfe, #584efd);
    z-index: 1;
    transition: transform .5s;
    transition-timing-function: ease;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(.5, 1.6, .4, .7);
    transform: scaley(0);
}

.button a {
    text-decoration: none;
    color: #7552f6;
} */

.default-padding {
    padding: 50px 0px;
}

.bg-image-left {
    left: 0;
    top: 5%;
}

.bg-image-right {
    right: 0;
    bottom: 5%;
}

.bg-image-left img {
    transform: rotate(180deg);
}

.title-description-wrapper .discription {
    color: #979797;
    padding-top: 10px;
    max-height: 60px;
    min-height: 60px;
    overflow: hidden;
}

.title-description-wrapper .title {
    position: relative;
    color: rgb(36 198 223);
}

.title-description-wrapper .title h1 {
    font-weight: 600;
}

.title-description-wrapper .title::after {
    position: absolute;
    content: '';
    height: 6px;
    width: 75px;
    transform: translate(-37px, -3px);
    background: linear-gradient(135deg, rgb(64, 151, 249), rgb(10, 240, 199));
}

.card:hover {
    cursor: pointer;
}

.title {
    display: table;
    position: relative;
    background-color: #D40004;
}

#sidebar .content a {
    text-decoration: none;
}

.sidebar-content-wrapper li {
    border-bottom: 1px solid #D8D8D8;
}

.light-blue {
    background-color: #001B49;
}

/* Global Css End */

/* #Navigation
================================================== */

.start-header {
    opacity: 1;
    transform: translateY(-1px);
    /* padding: 20px 0; */
    box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 10px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
    height: 24px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-wrap {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: #001B49;
}

#navigation-wrapper .navbar {
    padding: 0;
}

#navigation-wrapper .navbar-brand img {
    max-height: 52px;
    min-height: 52px;
    width: auto;
    /* display: block; */
    object-fit: contain;
    object-position: center;
    /* filter: brightness(10%); */
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#navigation-wrapper .navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

#navigation-wrapper .navbar-toggler:active,
#navigation-wrapper .navbar-toggler:focus {
    outline: none;
}

#navigation-wrapper .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid rgb(255, 255, 255);
    transition: all 300ms linear;
}

#navigation-wrapper .navbar-toggler-icon:after,
#navigation-wrapper .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: rgb(255, 255, 255);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

#navigation-wrapper .navbar-toggler-icon:after {
    top: 8px;
}

#navigation-wrapper .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

#navigation-wrapper .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

#navigation-wrapper .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

#navigation-wrapper .nav-link {
    color: white !important;
    font-weight: 500;
    transition: all 200ms linear;
}

#navigation-wrapper .nav-item:hover .nav-link {
    color: #009ACD !important;
}

#navigation-wrapper .nav-item.active .nav-link {
    color: #009ACD !important;
}

#navigation-wrapper .nav-link {
    position: relative;
    padding: 5px 15px !important;
    display: inline-block;
    font-size: 16px;
}

#navigation-wrapper .nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    content: '';
    background-color: #F81904;
    opacity: 0;
    transition: all 200ms linear;
}

#navigation-wrapper .nav-item:hover:after {
    bottom: -14px;
    opacity: 1;
}

#navigation-wrapper .nav-item.active:hover:after {
    opacity: 0;
}

#navigation-wrapper .nav-item {
    position: relative;
    transition: all 200ms linear;
}

#navigation-wrapper .nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

#navigation-wrapper .nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

#navigation-wrapper .dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}

#navigation-wrapper .dropdown-toggle::after {
    display: none;
}

#navigation-wrapper .dropdown-item {
    padding: 3px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all 200ms linear;
}

#navigation-wrapper .dropdown-item:hover,
#navigation-wrapper .dropdown-item:focus {
    color: #fff;
    background-color: rgba(129, 103, 169, .6);
}

/* Navigation end */

#breadcrumb {
    background-image: url(./image/banner/banner2.png);
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

/* Index Page Starts */

/* Top Header Starts */

#top-header {
    background-color: #001B49;
}

#top-header ul li a i.fa {
    color: white;
}

/* Top Header Ends */

/* Logo Ads Section Starts */

#logo-ads .logo img {
    max-height: 100px;
    min-height: 50px;
    object-fit: contain;
    object-position: center;
}

#logo-ads .ads img {
    max-height: 100px;
    min-height: 50px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

/* Logo Ads Section Ends */

/* Banner Section Starts */

/* #banner .row {
    background-color: #;
} */

#banner .carousel-item img {
    /* max-height: 600px;
    min-height: 600px; */
    height: 80vh;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

#banner .carousel-indicator li {
    padding: 15px 0;
    border-bottom: 1px solid #D8D8D8;
    border-width: 20%;
    color: #D8D8D8;
}

#banner .carousel-indicator li a:hover {
    color: white;
}

#banner .carousel-indicator li h5 {
    max-height: 70px;
    min-height: 70px;
    overflow: hidden;
    font-weight: bold;
    margin-bottom: 15px;
}

#banner .carousel-indicator li:last-child {
    border: none;
}

#banner .carousel-indicator li a {
    text-decoration: none;
    color: #D8D8D8;
}

#banner .overlay-video {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#banner .video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

#banner .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ba1f24;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

#banner .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fa183d;
    border-radius: 50%;
    transition: all 200ms;
}

#banner .video-play-button:hover:after {
    background-color: #da0528;
}

#banner .video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

#banner .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#banner .video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
    opacity: 0;
    transition: all ease 500ms;
}

#banner .video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
}

#banner .video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

#banner .video-overlay-close:hover {
    color: #fa183d;
}

#banner .video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

#banner .font-weight-bold,
.b-date {
    text-align: center;
}

/* Banner Section Ends */

/* Ads Section Starts*/

#ads .image img {
    max-height: 150px;
    min-height: 50px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

/* Ads Section Ends */

/* News Content Section Starts */

.news-content .block a {
    text-decoration: none;
    color: #5F5F5F;
}

.news-content .block a:hover {
    color: #001B49;
}

.news-content .block .image img {
    max-height: 220px;
    min-height: 220px;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.news-content .discription.date {
    color: #969696;
}

.news-content .discription a {
    text-decoration: none;
}

.news-content .discription2 p {
    color: #969696;
    max-height: 90px;
    min-height: 90px;
    overflow: hidden;
}

/* tab section starts */

.news-content .nav-pills a {
    display: table;
    position: relative;
    background-color: #D40004;
    border-radius: 0;
    margin-right: 3px;
    color: white;
}

.news-content .nav-pills a:hover {
    background-color: #009ACD;
}

.news-content .nav-pills a.active {
    background-color: #009ACD;
}

/* tab section ends */

.news-content .block-lg .image img {
    max-height: 400px;
    min-height: 400px;
    object-fit: fill;
    object-position: center;
    width: 100%;
}

.news-content .block-lg a {
    text-decoration: none;
}

#sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 10%;
}

.sidebar-content-wrapper li a {
    text-decoration: none;
}

.sidebar-content-wrapper .content .image img {
    max-height: 100px;
    min-height: 100px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

/* News Content Section Ends */

/* Videos Section Starts */

#videos .row {
    background-color: #001B49;
}

#videos .carousel-item img {
    /* max-height: 600px;
    min-height: 600px; */
    height: 80vh;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

#videos .carousel-indicator li {
    padding: 15px 0;
    border-bottom: 1px solid #D8D8D8;
    border-width: 20%;
    color: #D8D8D8;
}

#videos .carousel-indicator li a:hover {
    color: white;
}

#videos .carousel-indicator li h5 {
    max-height: 70px;
    min-height: 70px;
    overflow: hidden;
    font-weight: bold;
    margin-bottom: 15px;
}

#videos .carousel-indicator li:last-child {
    border: none;
}

#videos .carousel-indicator li a {
    text-decoration: none;
    color: #D8D8D8;
}

#videos .overlay-video {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#videos .video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

#videos .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ba1f24;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

#videos .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fa183d;
    border-radius: 50%;
    transition: all 200ms;
}

#videos .video-play-button:hover:after {
    background-color: #da0528;
}

#videos .video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

#videos .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videos .video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
    opacity: 0;
    transition: all ease 500ms;
}

#videos .video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
}

#videos .video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

#videos .video-overlay-close:hover {
    color: #fa183d;
}

#videos .video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

#videos .content .image img {
    max-height: 110px;
    min-height: 110px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

/* Videos Section Ends */

/* Footer Section Starts */

#footer {
    background-color: #001B49;
}

#footer p,
#footer a {
    font-size: 18px;
    color: white;
}

#footer a:hover {
    color: #009ACD;
    text-decoration: none;
}

/* Footer Section Ends */

/* copyright Section Ends */

#copyright {
    background-color: #009ACD;
    color: white;
}

/* copyright Section Ends */

/* Index Page Ends */

/* News Details Page Starts */

.news-content .block2 .image img {
    max-height: 500px;
    min-height: 500px;
    object-fit: fill;
    object-position: center;
}

.news-content .block paragraph p {
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.8rem;
}

/* News Details Page Ends */

/* About Us Page Ends */

.news-content #about-us h6 {
    font-size: 1.10rem;
}

.news-content #about-us p {
    font-size: 1.05rem;
    line-height: 1.8rem;
    color: #5F5F5F;
}

/* About Us Page Ends */

/* Contact Us Page Starts */

#contact-page .btn {
    background-color: #009ACD;
    border-radius: 0px;
    color: white;
}

/* Contact Us Page Ends */

/* Responsive Start */

@media (min-width: 1400px) {

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

@media (max-width: 1399px) {}

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

@media (max-width: 1024px) {

    .nav-item:nth-child(8),
    .nav-item:nth-child(9),
    .nav-item:nth-child(10),
    .nav-item:nth-child(11),
    .nav-item:nth-child(12),
    .nav-item:nth-child(13),
    .nav-item:nth-child(14) {
        display: none;
    }
}

@media (max-width: 991px) {

    .nav-item:nth-child(8),
    .nav-item:nth-child(9),
    .nav-item:nth-child(10),
    .nav-item:nth-child(11),
    .nav-item:nth-child(12),
    .nav-item:nth-child(13),
    .nav-item:nth-child(14) {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    #navigation-wrapper .nav-item:after {
        background-color: transparent;
    }

    .nav-item:after {
        display: none;
    }

    .nav-item::before {
        position: absolute;
        display: block;
        top: 15px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: transparent;
        vertical-align: 0;
    }

    .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 10px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .dropdown-menu {
        padding: 0 !important;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 600px) {}

@media (max-width: 426px) {}

@media (max-width: 375px) {}

/* Responsive Ends */


.object-fit-cover {
    object-fit: cover;
}

.h-7 {
    height: 7rem;
}

.gallery>a>img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
}


.header-logo {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.header-logo.visible {
    opacity: 1;
}

.nav-height {
    height: 4rem;
    display: flex;
    align-items: center;
}

.padding-header {
    padding: 35px 0px;
}

.bg-blue {
    background-color: #001b49; 
}


.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999999;
    top: 0px;
    left: 0;
    background-color: #001b49;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

/* 
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
} */

a.nav-link {
    color: white;
}

a.nav-link:hover {
    color: #4170c2;
}


.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: white
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.InputContainer {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding-left: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.075);
    margin: 50px 0px 20px 5px;
    width: 220px;
}

.input {
    width: 170px;
    height: 100%;
    border: none;
    outline: none;
    font-size: 0.9em;
    caret-color: rgb(255, 81, 0);
}

.labelforsearch {
    cursor: text;
    padding: 0px 12px;
}

.searchIcon {
    width: 13px;
}

.border {
    height: 40%;
    width: 1.3px;
    background-color: rgb(223, 223, 223);
}



.searchIcon path {
    fill: rgb(114, 114, 114);
}

.categories-menu {
    display: block;
}

@media (max-width: 990px) {
    .categories-menu {
        display: none;
    }
}

.tags > a:hover {
    color: white !important;
}


.three-line-truncate {
    line-height: 1.3;
    height: 3.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.two-line-truncate {
    line-height: 1.4;
    height: 2.7em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.w-100 {
    width: 100% !important;
}