body{
    font-family: 'Mukta-Regular';
    font-size: 15px;
    font-weight: normal;
    background-color: #ffffff;
    cursor: default;
    color: #080808;
    line-height: 1.6;
}

a, ul, li{ text-decoration: none; list-style: none; padding: 0;margin: 0;}
a:hover{text-decoration: none; color: #272263}
@font-face {
    font-family: 'Mukta-ExtraBold';
    src: url('../fonts/Mukta-ExtraBold.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mukta-Bold';
    src: url('../fonts/Mukta-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mukta-SemiBold';
    src: url('../fonts/Mukta-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mukta-Medium';
    src: url('../fonts/Mukta-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mukta-Regular';
    src: url('../fonts/Mukta-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
.mukta-regular{font-family: 'Mukta-Regular';}
.mukta-medium{font-family: 'Mukta-Medium';}
.mukta-semibold{font-family: 'Mukta-SemiBold';}
.mukta-bold{font-family: 'Mukta-Bold';}
.mukta-extrabold{font-family: 'Mukta-ExtraBold';}
/* .mukta-semibold{color: #292929;} */

.bg-red {background-color: #DE2426;}
.bg-blue1 {background-color: #0d4da1;}
.bg-blue {background-color: #272263;}
.bg-blue-dark{background-color: #1A154E;}
.bg-black {background: #010100;}
.bg-gray{background-color: #F3F6F7}
.text-white{color: #ffffff}
.text-gray{color: #A1A0A0;}
.text-gray-white{color: #d4d4d4}
.text-blue{color: #272263;}
.txt-black{color: #282828}
.bg-white{background-color: #ffffff;}
.border-round{border-radius: 2px;}
.border-100{border-radius: 1000px; font-size: 20px; padding: 5px 20px;}
hr{ border-top: 1px solid rgb(241, 241, 241);}
.pad-lr{padding: 15px;}
@media(min-width: 768px){
    .pad-lr{
        padding: 0 120px;
    }
}
@media(min-width: 992px){
    .pad-lr{
        padding: 0 120px;
    }
}

/****Topbar*****/
ul.top-links li a {
    background-color: #DE2426;
    margin: 10px;
    padding: 11px 6px;
}
ul.top-links li a:hover{
    background-color: #C81113;
}
ul.social-links li .fab {
    border: 2px solid #ffffff;
    border-radius: 50%;
    padding: 8px;
    font-size: 8px;
    text-align: center;
}
ul.social-links li a .fab:hover{
    background-color: #ffffff;
    color: #DE2426;
    transition: all 0.5s ease;
}

/***Navbar***/
.navbar{
    padding: 0 16px;
}
.navbar-dark .navbar-nav .nav-link{
    color: #fff;
    text-transform: uppercase;
    padding: 15px 13px;
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus,  .navbar-dark .navbar-nav .nav-link:active{
    background-color: #DE2426;
    color: #ffffff;
}
.nav-item{
    padding-right: 15px;
}
.nav-link {
    font-family: 'Mukta-Medium';
    font-size: 16px;
}
.navbar-collapse ul{
    margin-top: 20px;
    font-size: 16px;
}
.dropdown-menu {
    padding: 0;
    border-radius: 0;
}
.dropdown:hover>.dropdown-menu {
    margin-top: -1px;
    display: block;
    background-color: #DE2426;
}
.dropdown>.dropdown-toggle:active {
/*Without this, clicking will make it sticky*/
    pointer-events: none;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #272263;
}
.dropdown-item {
    color: #ffffff;
    padding: 8px 12px;
}
.dropdown-item:hover{
    background: #C81113;
    color: #ffffff;
}
@media(min-width: 768px){
    .sticky {
        position: fixed;
        top: 0;
        width: 100%;
        box-shadow: 0px 2px 20px 0px #202122;
    }
    .navbar-collapse ul{
        margin-top: 0;
    }
    .navbar{
        background-color: #272263;
        color: #fff;
        z-index: 1111;
        padding: 0 120px;
    }
    .navbar .navbar-brand img {
        width: 100%;
    }
}

.ser-input{
    border-color: transparent;
    border-bottom-color: #fff;
    color: #fff;
}
.ser-input:focus {
    border-color: transparent;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.search-full-view {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(39, 34, 99, 0.95);
    opacity: 0;
    z-index: -1;
    transition: .5s all;
    transform: scale(0);
}
.search-full-view.search-normal-screen {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.search-full-view .input-group {
    width: 80%;
    margin: 0 auto;
    top: 40%;
}
.search-full-view .input-group .form-control {
    background: transparent;
    border-bottom: 1px solid #f8f8f8;
    font-size: 20px;
    padding: 0 20px;
    vertical-align: unset;
    color: #ffffff;
}
.search-full-view .input-group .form-control:focus{
    border-color: #f8f8f8;
    padding: 0 20px;
    border-bottom: 1px solid #fff !important;
    box-shadow: none;
}
.search-full-view .input-group .input-group-addon {
    background: #DE2426;
    font-size: 3em;
    color: #fff;
    border: 0;
    text-align: center;
    padding:0 30px;
    cursor: pointer;
}
.search-full-view .btn-close {
    background: transparent;
    border: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.search-full-view .btn-close img { width: 30px; }
.fa .fa-search {
    background-color: #DE2426;
}

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;
}

/*****News-ticker****/
.notice h3{
    font-family: 'Mukta-Medium';
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

/****Top news****/
h2.news-heading a, h2.news-heading{
    font-family: 'Mukta-ExtraBold';
    font-size: 30px;
    color: #282828;
}
h2.news-heading a:hover{
    color: #272263;
    text-decoration: none;
}
p.short-desc{
    font-size: 24px;
    color: #3B3B3B;
    line-height: 1.4;
}
p.desc-details{
    color: #7E7E7E;
    font-size: 20px;
    line-height: 1.5;
}
.category {
    background-color: #DE2426;
    padding: 5px 20px;
    font-size: 18px;
}
.news-cat-head, .view-all-link{
    font-family: 'Mukta-Bold';
    font-size: 22px;
}
.view-all-link{
    border-radius: 1000px;
    padding: 0px 20px;
    font-size: 20px;
    background-color: #f8f8f8;
    color: #272263;
}
.view-all-link:hover{
    background-color: #272263;
    color: #ffffff;
    transition: all 0.6s ease;
}
.fa-stop {font-size: 20px;}

.outer {
    position: relative;
    width:100%;
 }
 .inner {
     position:absolute;
     bottom: 0;
     left: 0;
 }
 h3.news-heading{
     color: #dddddd;
     font-size: 18px;
     font-family: 'Mukta-Bold';
 }
 h3.news-heading:hover{
    color: #ffffff;
}
h5.news-heading{
    font-size: 18px;
    line-height: 1.5;
}
 .bg-gradient{
    background: linear-gradient(to bottom, transparent 0%, black 90%);
    width: 100%;
 }

@media(min-width: 768px){
    h2.news-heading a, h2.news-heading{
        font-size: 38px;
    }
}
@media(min-width: 992px){
    h2.news-heading a, h2.news-heading{
        font-size: 45px;
    }
}

/* news nav pills */
.nav-tabs {
    border-bottom: none;
}
.nav-tabs .nav-item{
    padding-right: 10px;
}
.nav-tabs .nav-link{
    font-family: 'Mukta-Bold';
    font-size: 18px;
    padding: 3px 16px;
    color: #282828;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover{
    color: #ffffff;
    border-radius: 1000px;
    background-color: #272263;
    border-color: #f8f8f8 #f8f8f8 #f8f8f8;
    transition: all 0.6s ease;
}
@media(min-width: 768px) {
    .nav-tabs .nav-item{
        padding-left: 12px;
    }
}

/* Blogs */
.blogs img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* Model Slider */
.model-list img {
    width: 100%;
    padding: 0 20px;
}

.slider {
    width: 100%;
    /* margin: 100px auto; */
}

/* Video */
.fa-play-circle{
    font-size: 30px;
}
.fa-play-circle:hover{
    color: #272263;
}
.icon-play{
    margin-bottom: 30px;
}

footer .publisher h5, .editorial h5, .team h5{
    font-size: 16px;
}

/* Author */
.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.row-hover:hover{
    background-color: #F3F6F7;
}
p.desc{
    font-size: 17px;
}



