@font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 100 900;
        src: url('/fonts/Mulish-VariableFont_wght.woff2') format('woff2'),
            url('/fonts/Mulish-VariableFont_wght.woff') format('woff'),
            url('/fonts/Mulish-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    font-style: italic;
    font-weight: 100 900;
        src: url('/fonts/Mulish-Italic-VariableFont_wght.woff2') format('woff2'),
            url('/fonts/Mulish-Italic-VariableFont_wght.woff') format('woff'),
            url('/fonts/Mulish-Italic-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}

a,
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: currentColor;
    outline: none;
}

a:hover {
    color: currentColor;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    background-color: #fdfdfd;
    font-family: 'Roboto', sans-serif;
}

.bg-bo-pa {
    padding: 15px;
    background-color: white;
    border: 1px solid #d3d3d354;
    border-radius: 5px;
    position: sticky;
    top: 120px;
}

.bg-bo-pa-1 {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: white;
    border: 1px solid #d3d3d354;
    border-radius: 5px;
}


/* --- 
Web loader Css
--- */
.web-loader {
    background-color: #003366;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1200;
    /* display: none; */
}

.web-loader span.web-inner {
    width: 150px;
    height: 150px;
    line-height: 150px;
    margin: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    z-index: 0;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: #fff;
}

.web-loader span.web-inner>div::after,
.web-loader span.web-inner>div::before {
    opacity: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 0 50px #fff, inset 0 0 50px #fff;
    box-shadow: 0 0 50px #fff, inset 0 0 50px #fff;
}

.web-loader span.web-inner>div::before {
    z-index: -2;
    animation: gogoloader 2s infinite;
    -webkit-animation: gogoloader 2s infinite;
    -moz-animation: gogoloader 2s infinite;
    -o-animation: gogoloader 2s infinite;
}

.web-loader span.web-inner>div::after {
    z-index: -1;
    animation: gogoloader 2s infinite 1s;
    -webkit-animation: gogoloader 2s infinite 1s;
    -moz-animation: gogoloader 2s infinite 1s;
    -o-animation: gogoloader 2s infinite 1s;
}

@-webkit-keyframes gogoloader {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes gogoloader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.deactivate span.web-inner {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s 0.5s ease-in-out;
    -o-transition: all 0.3s 0.5s ease-in-out;
    transition: all 0.3s 0.5s ease-in-out;
}

.deactivate {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s 1s ease-in-out;
    -o-transition: all 0.3s 1s ease-in-out;
    transition: all 0.3s 1s ease-in-out;
}

/* ---
Loader Design CSs
--- */

.ld-box {
    box-shadow: none !important;
}

.loader-design {
    background-image: -o-linear-gradient(90deg, #f2f2f2 40%, #dedede 50%, #f2f2f2 60%);
    background-image: linear-gradient(90deg, #f2f2f2 40%, #dedede 50%, #f2f2f2 60%);
    /* background-position: left !important; */
    background-repeat: repeat !important;
    background-size: 900px !important;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-animation: shine-lines 1.6s infinite linear;
    animation: shine-lines 1.6s infinite linear;
}

.loader-design.p4,
.loader-design.p3,
.loader-design.p2,
.loader-design.p1 {
    margin: 8px 0 !important;
    border-radius: 50px;
    height: 12px;
    width: 100%;
    display: block !important;
}

.loader-design.p2 {
    width: 100%;
    max-width: 150px;
    height: 10px;
}

.loader-design.p4,
.loader-design.p3 {
    height: 16px;
    margin: 3px 0 !important;
}

.loader-design.p4 {
    margin: 8px 0 0px !important;
}

.loader-design.p2.lm-auto,
.loader-design.p1.lm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

@-webkit-keyframes shine-lines {
    0% {
        background-position: -100px;
    }

    100% {
        background-position: 800px;
    }
}

@keyframes shine-lines {
    0% {
        background-position: -100px;
    }

    100% {
        background-position: 800px;
    }
}



/* ---
Header css 
--- */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1024;
    box-shadow: 0px 0px 0px 1px #d3d3d354, rgb(33 35 38 / 10%) 0px 10px 10px -10px;
}

.nav-bar {
    background-color: #036;
    height: 50px;
}

.nav-bar>div>div,
.nav-bar>div {
    height: 100%;
    position: relative;
}

.nav-bar>div .site-logo {
    position: absolute;
    width: 85px;
    left: 25px;
    top: 8px;
    z-index: 2;
    /* border: 1px solid white; */
    border-radius: 5px;
    box-shadow: 0px 0px 20px #00000038;
}

.nav-bar>div .nb-inner {
    padding-left: 125px;
    padding-right: 165px;
}

.nav-bar>div .nav-bar-inner {
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.nav-bar>div .nav-bar-inner .nav-lk {
    padding: 3px 10px;
    font-weight: 500;
    color: white;
    font-size: 14px;
    margin-right: 10px;
    border-radius: 3px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.nav-bar>div .nav-bar-inner .nav-lk:hover {
    background-color: #40668c;
    color: #edf6ff;
}

.nav-bar>div .nav-bar-inner .more-lk {
    padding: 3px 10px 5px;
    font-weight: 500;
    color: white;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-bar>div .nav-bar-inner .more-lk.active,
.nav-bar>div .nav-bar-inner .more-lk:hover {
    opacity: 1;
}

.nav-bar>div .nav-bar-inner .more-lk .more-dots {
    background-color: white;
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    margin: 0px 0px;
    transition: background-color 0.3s ease;
}


/* --- 
Nav btns 
--- */
.nav-bar>div .nav-btns {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0px;
    top: 0;
    height: 100%;
}

.nav-bar>div .nav-btns .search-link {
    font-weight: 600;
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 18px;
    margin-right: 15px;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.nav-bar>div .nav-btns .search-link.active,
.nav-bar>div .nav-btns .search-link:hover {
    color: #ffffff;
}

.nav-bar>div .nav-btns .live-tv {
    padding: 0px 5px;
    font-weight: 500;
    color: white;
    font-size: 15px;
    border-radius: 3px;
    background-color: #c20017;
    transition: background-color 0.3s ease;
    display: inline-block;
    line-height: 24px;
}

.nav-bar>div .nav-btns .live-tv:hover {
    background-color: #ff001e;
}

.nav-bar>div .nav-btns .live-tv.active {
    animation: change-background 2s ease infinite;
}


/* --- 
More Links 
--- */
.more-links {
    background-color: #002850;
    min-height: 50px;
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    padding: 5px 195px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity, visibility, 0.3s linear;
}

.more-links.active {
    opacity: 1;
    visibility: visible;
}

.more-links .nav-lk {
    padding: 3px 10px;
    font-weight: 500;
    color: white;
    font-size: 14px;
    margin: 5px 5px;
    border-radius: 3px;
    background-color: transparent;
    transition: background-color, opacity, visibility, top, 0.3s linear;
    position: relative;
    top: 5px;
    opacity: 0;
    visibility: hidden;
}

.more-links.active .nav-lk {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.more-links.active .nav-lk:nth-child(1) {
    -webkit-transition-delay: 0.10s;
    -moz-transition-delay: 0.10s;
    -ms-transition-delay: 0.10s;
    -o-transition-delay: 0.10s;
    transition-delay: 0.10s;
}

.more-links.active .nav-lk:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    -moz-transition-delay: 0.15s;
    -ms-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.more-links.active .nav-lk:nth-child(3) {
    -webkit-transition-delay: 0.20s;
    -moz-transition-delay: 0.20s;
    -ms-transition-delay: 0.20s;
    -o-transition-delay: 0.20s;
    transition-delay: 0.20s;
}

.more-links.active .nav-lk:nth-child(4) {
    -webkit-transition-delay: 0.25s;
    -moz-transition-delay: 0.25s;
    -ms-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.more-links.active .nav-lk:nth-child(5) {
    -webkit-transition-delay: 0.30s;
    -moz-transition-delay: 0.30s;
    -ms-transition-delay: 0.30s;
    -o-transition-delay: 0.30s;
    transition-delay: 0.30s;
}

.more-links.active .nav-lk:nth-child(6) {
    -webkit-transition-delay: 0.35s;
    -moz-transition-delay: 0.35s;
    -ms-transition-delay: 0.35s;
    -o-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.more-links.active .nav-lk:nth-child(7) {
    -webkit-transition-delay: 0.40s;
    -moz-transition-delay: 0.40s;
    -ms-transition-delay: 0.40s;
    -o-transition-delay: 0.40s;
    transition-delay: 0.40s;
}

.more-links.active .nav-lk:nth-child(8) {
    -webkit-transition-delay: 0.45s;
    -moz-transition-delay: 0.45s;
    -ms-transition-delay: 0.45s;
    -o-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.more-links.active .nav-lk:nth-child(9) {
    -webkit-transition-delay: 0.50s;
    -moz-transition-delay: 0.50s;
    -ms-transition-delay: 0.50s;
    -o-transition-delay: 0.50s;
    transition-delay: 0.50s;
}

.more-links.active .nav-lk:nth-child(10) {
    -webkit-transition-delay: 0.55s;
    -moz-transition-delay: 0.55s;
    -ms-transition-delay: 0.55s;
    -o-transition-delay: 0.55s;
    transition-delay: 0.55s;
}

.more-links.active .nav-lk:nth-child(11) {
    -webkit-transition-delay: 0.60s;
    -moz-transition-delay: 0.60s;
    -ms-transition-delay: 0.60s;
    -o-transition-delay: 0.60s;
    transition-delay: 0.60s;
}

.more-links.active .nav-lk:nth-child(12) {
    -webkit-transition-delay: 0.65s;
    -moz-transition-delay: 0.65s;
    -ms-transition-delay: 0.65s;
    -o-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.more-links.active .nav-lk:nth-child(13) {
    -webkit-transition-delay: 0.70s;
    -moz-transition-delay: 0.70s;
    -ms-transition-delay: 0.70s;
    -o-transition-delay: 0.70s;
    transition-delay: 0.70s;
}

.more-links.active .nav-lk:nth-child(14) {
    -webkit-transition-delay: 0.75s;
    -moz-transition-delay: 0.75s;
    -ms-transition-delay: 0.75s;
    -o-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.more-links.active .nav-lk:nth-child(15) {
    -webkit-transition-delay: 0.80s;
    -moz-transition-delay: 0.80s;
    -ms-transition-delay: 0.80s;
    -o-transition-delay: 0.80s;
    transition-delay: 0.80s;
}

.more-links.active .nav-lk:nth-child(16) {
    -webkit-transition-delay: 0.85s;
    -moz-transition-delay: 0.85s;
    -ms-transition-delay: 0.85s;
    -o-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.more-links.active .nav-lk:nth-child(17) {
    -webkit-transition-delay: 0.90s;
    -moz-transition-delay: 0.90s;
    -ms-transition-delay: 0.90s;
    -o-transition-delay: 0.90s;
    transition-delay: 0.90s;
}

.more-links.active .nav-lk:nth-child(18) {
    -webkit-transition-delay: 0.95s;
    -moz-transition-delay: 0.95s;
    -ms-transition-delay: 0.95s;
    -o-transition-delay: 0.95s;
    transition-delay: 0.95s;
}

.more-links.active>.nav-lk:hover,
.more-links>.nav-lk:hover {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}


.more-links .nav-lk:hover {
    background-color: #40668c;
    color: #edf6ff;
}


/* --- 
Responsive Links 
--- */
.responsive-links {
    background-color: #002850;
    min-height: 50px;
    padding: 13px 0px 13px 130px;
    z-index: 1022;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    display: none;
    box-shadow: 0px 0px 20px #00000038;
}

.responsive-links::-webkit-scrollbar {
    display: none;
}


.responsive-links .nav-lk {
    padding: 5px 10px;
    font-weight: 500;
    color: white;
    font-size: 14px;
    margin: 5px 5px;
    border-radius: 3px;
    background-color: transparent;
    transition: background-color 0.3s linear;
}

.responsive-links .nav-lk:hover {
    background-color: #40668c;
    color: #edf6ff;
}


/* --- 
Breaking Slider
--- */
.breaking-news-bar {
    z-index: 1020;
    background-color: white;
    height: 50px;
    overflow: hidden;
    position: sticky;
    top: 50px;
    box-shadow: 0px 0px 0px 1px #d3d3d354, rgb(33 35 38 / 10%) 0px 10px 10px -10px;
}

.breaking-news-bar>div {
    padding-left: 80px;
    overflow: hidden;
}

.breaking-news-bar .breaking-inner {
    padding: 0 0 0 118px;
}

.bn-slider {
    white-space: nowrap;
}

.bn-slider a {
    font-weight: 500;
    font-size: 16px;
    color: #363636;
    margin-right: 25px;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    line-height: 50px;
    transition: all 0.3s ease-in-out;
}

.bn-slider a span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border-radius: 50%;
    background-color: #c20017;
}

.bn-slider a:hover {
    color: #c20017;
}

.bn-slider a img {
    width: 42px;
    /* height: 27px; */
    margin-right: 4px;
}


/* --- 
Live Tv Css
--- */
.left-tv .live-tv-iframe {
    padding-bottom: 56.25%;
    background-color: lightgray;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.left-tv .live-tv-iframe iframe {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0px;
    top: 0;
}

.left-tv .live-tv-link {
    padding: 10px 0 0;
    display: flex;
}

.left-tv .live-tv-link img {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 5px;
    box-shadow: 0px 0px 20px #00000038;
}

.left-tv .live-tv-link>div {
    margin-left: 10px;
}

.left-tv .live-tv-link>div span {
    display: inline-block;
    padding: 4px 5px 2px;
    font-weight: 500;
    color: white;
    font-size: 10px;
    border-radius: 3px;
    background-color: #c20017;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 5px;
    animation: change-background 2s ease infinite;
}

@keyframes change-background {
    0% {
        background: #c20017;
    }

    50% {
        background: #ff001e;
    }

    100% {
        background: #c20017;
    }
}

.left-tv .live-tv-link>div h3 {
    display: block;
    font-weight: 500;
    color: #036;
    font-size: 16px;
    margin: 0;
}


/* --- 
Exclusive clips Css 
--- */
.exclusive-clips-bx {
    position: sticky;
    top: 115px;
}


/* --- 
Ad Section Css 
--- */
.ad-bx {
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
    margin: auto;
}

.ad-sticky {
    position: sticky;
    top: 120px;
}

.ad-bx img {
    /* width: 100%; */
    max-width: 100%;
    margin: auto;
    display: block;
}


/* --- 
Center Section css 
--- */
.center-section {
    background-color: white;
    border: 1px solid #d3d3d354;
    border-radius: 5px;
    overflow: hidden;
    height: fit-content;
    padding-bottom: 20px !important;
}

/* --- 
Latest section css
--- */
.latest-section {
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.latest-section .news-item {
    flex: 0 0 48%;
}


/* ---
Featured Sub Section Css
--- */

.featured-sub {
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.featured-sub .news-sub {
    flex: 0 0 48%;
}

/* ---
Trending section css
--- */
.trending-bx a {
    display: block;
    margin-bottom: 15px;
    border-bottom: 1px solid #d3d3d354;
    padding: 0 0 10px;
    transition: color 0.3s ease;
}

.trending-bx a .date {
    color: #737373;
    font-size: 11px;
    display: block;
    text-transform: capitalize;
    /* text-align: center; */
    font-weight: 500;
}

.trending-bx a .date .author-name {
    color: #d8361e;
    font-weight: 500;
}

.trending-bx a h5 {
    display: block;
    color: #333333;
    font-weight: 500;
    line-height: 1.7;
    font-size: 14px;
    overflow: hidden;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 0;
    margin-bottom: 5px;
}

.trending-bx a:hover h5 {
    color: #036;
    text-decoration: underline;
}

.trending-bx a h5 svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-right: 10px;
    margin-top: 0px;
    fill: currentColor;
}

.trending-bx a:nth-last-child(1) {
    margin-bottom: 0px;
    border-bottom: none;
    padding: 0 0;
}

/* ---
Newsletter section css
--- */
.newsletter-bx h5 {
    font-size: 16px;
    text-transform: capitalize;
    color: #036;
    /* letter-spacing: 0.5px; */
    font-weight: 500;
    margin-bottom: 11px;
    line-height: 1.4;
}

.form-gorup-search {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.form-gorup-search input {
    width: 100%;
    border: 1px solid lightgray;
    border-radius: 0 0 0 0;
    height: 45px;
    padding: 0 10px 0 10px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px 0 0 5px;
}

.form-gorup-search input::placeholder {
    color: #a8a8a8;
    font-weight: 400;
}

.form-gorup-search button {
    border-radius: 0px 0px 0px 0px;
    padding: 7px 7px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: #c20017;
    color: white;
    height: 45px;
    opacity: 0.9;
    width: 70px;
    transition: all 0.3s;
    border-radius: 0 5px 5px 0;
}

.form-gorup-search button:hover {
    opacity: 1;
}

.pera-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}


/* ---
Follows us on section css
--- */
.FUO {
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.FUO p {
    font-size: 12px;
    color: #333333;
    text-align: center;
    margin: 0;
}

.social-links {
    margin-bottom: 15px;
    text-align: center;
}

.social-links a {
    color: #777777;
    height: 35px;
    margin: 0px 2px;
    width: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid lightgray;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

.social-links a:hover {
    background-color: white;
    border-color: transparent;
    box-shadow: 0px 0px 10px #00000038;
}

.social-links a .fa {
    transition: all 0.3s ease-in-out;
}

.social-links a:hover .fa-facebook {
    color: #3b5998;
}

.social-links a:hover .fa-twitter {
    color: #00aced;
}

.social-links a:hover .fa-instagram {
    color: #8a3ab9;
}

.social-links a:hover .fa-linkedin {
    color: #0077b5;
}

.social-links a:hover .fa-youtube-play {
    color: red;
}

.footer-social a {
    border: none;
    color: rgba(255, 255, 255, 0.7);
}

/* ---
Video slider css
--- */

.commun-heading {
    font-size: 18px;
    text-transform: capitalize;
    color: #003366;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    width: fit-content;
}

.commun-heading.chc {
    margin: auto;
}

.commun-heading:nth-child(1)::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 2rem;
    height: 2px;
    background-color: #003366;
    border-radius: 1rem;
    transition: all 0.3s ease-in-out;
}

.commun-heading.ch-t:nth-child(1)::after {
    left: 16px;
}

.commun-heading.chc:nth-child(1)::after {
    left: 50%;
    transform: translateX(-50%);
}

.commun-heading:nth-child(1):hover::after {
    width: 3rem;
    background-color: #003366;
}

.video-slider .owl-item {
    padding: 10px 0 !important;
}

.video-item {
    position: relative;
    overflow: hidden;
    padding-top: 56%;
    border-radius: 5px;
    box-shadow: 0 4px 10px #ccc;
    background-color: #f9f9f9;
}

.video-item .video-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    left: 0px;
    top: 0;
    transform: scale(1);
    transition: 0.3s transform linear;
}

.video-item .youtube-icon {
    width: 45px;
    height: 31px;
    display: block;
    position: absolute;
    right: 10px;
    bottom: 10px;
    /* transform: translate(-50%,-50%); */
    background-color: #ff0000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 10px;
    display: none;
}

.video-item:hover .video-img {
    transform: scale(1.05);
}


/* ---
Owl button css
--- */

.owl-prev,
.owl-next {
    width: 35px !important;
    height: 35px !important;
    background-color: #c20017 !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: all 0.4s ease-in-out;
    color: white !important;
    opacity: 0.7;
    -webkit-box-shadow: 0 0 50px rgb(0 0 0 / 20%);
    box-shadow: 0 0 50px rgb(0 0 0 / 20%);
}

.owl-nav {
    margin: 0 !important;
}

.owl-nav .owl-prev {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav .owl-next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.owl-next svg {
    width: 20px;
    height: 20px;
    position: relative;
    bottom: 1px;
}

.owl-prev svg {
    width: 20px;
    height: 20px;
    position: relative;
    bottom: 1px;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: #c20017 !important;
    color: white !important;
    opacity: 1;
}

.owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.owl-dots .owl-dot.active span {
    background: #c2c2c2 !important;
}


/* ---
Videopopup css
--- */

#videopopup .modal-content {
    background-color: transparent;
    border-radius: 0px;
    border: none;
}

.popupvideo-container {
    width: 100%;
    padding-top: 56.38%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.popupvideo-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}


/* ---
Dismiss icon css
--- */

.dismiss {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    right: 10px;
    top: 5px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 1;
}

.dismiss:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    border-radius: 50%;
}

.dismiss .closes {
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 5px;
    display: inline-block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.dismiss.closes-bgcw .closes {
    background-color: white;
}

.dismiss.closes-bgcb .closes {
    background-color: rgb(0, 0, 0);
}

.dismiss:hover .closes {
    background-color: rgb(223, 7, 7);
}

.dismiss .closes:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dismiss .closes:nth-child(2) {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* ---
Category heading
--- */

.category-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category-heading a:nth-child(1) {
    font-size: 24px;
    color: #036;
    font-weight: 600;
    display: inline-block;
    position: relative;
    min-width: 80px;
}

.category-heading a:nth-child(1)::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 2rem;
    height: 3px;
    background-color: #003366;
    border-radius: 1rem;
    transition: all 0.3s ease-in-out;

}

.category-heading a:nth-child(1):hover::after {
    width: 3rem;
    background-color: #003366;
}

.category-heading a:nth-child(2) {
    font-size: 14px;
    color: #036;
    font-weight: 700;
    display: inline-block;
    /* border: 1px solid rgba(0, 51, 102, 0); */
    padding: 4px 7px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    min-width: 80px;
}

.category-heading a:nth-child(2):hover {
    /* border: 1px solid rgba(21, 23, 24, 0.5); */
    box-shadow: 0 0 10px #00000026;
    background-color: white;
}

.category-row {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 1px #d3d3d354, rgb(33 35 38 / 10%) 0px 10px 10px -10px;
}

/* --- 
News section design css
--- */

.news-item {
    display: flex;
    flex-direction: column;
}

.news-item .news-img {
    position: relative;
    padding-top: 56%;
    overflow: hidden;
    border-radius: 5px;
    background-color: #f3f3f3;
    box-shadow: 0 4px 10px #ccc;
}

.news-item .news-img .news-img-bg {
    display: block;
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: 0.3s transform linear;
    /* display: none; */
}

.news-item .news-img iframe,
.news-item .news-img video {
    display: block;
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-item .news-img audio {
    width: 95%;
    margin: auto;
    display: block;
    margin-bottom: 10px;
}

.news-item .news-img:hover .news-img-bg {
    transform: scale(1.05);
}

.news-item .news-text {
    padding: 10px 15px 15px;
}

.news-item .news-text h5 {
    font-size: 24px;
    color: #036;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 600;
    overflow: hidden;
    margin-bottom: 5px;
}

.news-item .news-text h5:hover {
    text-decoration: underline;
}

.news-item .news-text .date {
    color: #737373;
    font-size: 11px;
    display: block;
    text-transform: capitalize;
    /* text-align: center; */
    font-weight: 500;
}

.news-item .news-text .date .author-name {
    color: #d8361e;
    font-weight: 500;
}

.news-item .news-text p {
    font-size: 14px;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding: 0 0px;
    margin: 0;
    margin-top: 5px;
    overflow: hidden;
    line-height: 1.6;
}

.news-x-big {
    flex-direction: row;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d3d3d354;
}

.last-two-news .featured-sub .news-sub:nth-last-child(2),
.last-two-news .featured-sub .news-sub:nth-last-child(1),
.last-two-news .news-x-big:nth-last-child(2),
.last-two-news .news-x-big:nth-last-child(1),
.last-news .news-x-big:nth-last-child(1) {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid transparent;
}

.news-x-big .news-img {
    flex: 0 0 150px;
    height: 90px;
    width: 150px;
    margin-right: 10px;
    padding: 0;
    border-radius: 5px;
    box-shadow: 0 4px 10px #ccc;
}

.news-x-big .news-text {
    padding: 0;
    flex: 0 1 100%;
}

.news-x-big .news-text h5 {
    font-size: 16px;
}

.news-x-small .news-img {
    flex: 0 0 120px;
    height: 80px;
    width: 120px;
}

.news-sub {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d3d3d354;
}

.news-sub .news-text h5 {
    font-size: 16px;
    -webkit-line-clamp: 2;
}

.news-sub .news-text {
    padding: 10px 0px 0px;
}


.play-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #c20017;
    color: white;
    width: 20px;
    height: 20px;
    font-size: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px 0 0 0;
    display: none;
}

/* ---
category section  
--- */

.category-left {
    background-color: white;
    padding: 0;
}

.category-right {
    background-color: white;
    padding: 15px 20px;
}



/* ---
Footer Css
--- */
footer {
    background-color: #036;
}

.footer-about img {
    width: 80px;
    opacity: 0.8;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.footer-about p {
    color: white;
    letter-spacing: 0.5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 10px;
}

.footer-about img:hover {
    opacity: 1;
    box-shadow: 0px 0px 20px #00000038;
}

.footer-heading {
    position: relative;
    color: white;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 2rem;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1rem;
}

.c-none::after {
    content: none;
}

.footer-link {
    color: #d2d2d2;
    display: block;
    width: fit-content;
    margin-bottom: 4px;
    padding: 3px 0px;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

.footer-link.active,
.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}


.res-footer .footer-link {
    color: #d2d2d2;
    display: inline-block;
    width: fit-content;
    margin: 8px 0px 8px;
    padding: 0px 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    border-right: 1px solid #9c9c9c;
}

.res-footer .footer-link:nth-last-child(1) {
    border-right: none;
}


/* .copyright {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 11px;
    margin: 0;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.mede-with {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 11px;
    margin: 0;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.mede-with a {
    color: hsla(0, 0%, 100%, 0.6);
    font-weight: 300;
}

.mede-with a:hover {
    color: rgb(255, 255, 255);
} */

.design-develop{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}

.design-bx{
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 11px;
    margin: 0;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.develop-bx{
    color: transparent;
    font-size: 8px;
    cursor: none;
}

.develop-bx a{
    transition: 0.3s ease-in-out;
    cursor: none;
}

.develop-bx a:hover{
    color: #fbe6d4;
}

@media (max-width:600px){
    .design-develop{
      flex-direction: column;
      align-items: start;
      margin-top: 8px;
      padding-left: 9px;
    }
  
    .design-bx{
      margin-bottom: 5px;
    }
  
    .develop-bx{
      line-height: 1.5;
    }
  }

.icons-box-made {
    width: 12px;
    height: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 3px;
}

.icons-box-made .fa-heart,
.icons-box-made .fa-heart-o {
    position: absolute;
}

.mede-with .fa-heart-o {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 11px;
    transition: all 0.3s;
    opacity: 1;
}

.mede-with .fa-heart {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 11px;
    transition: all 0.3s;
    opacity: 0;
    transform: scale(0);
}

/* .mede-with:hover .fa-heart-o, */
.mede-with.active .fa-heart-o {
    opacity: 0;
}

/* .mede-with:hover .fa-heart, */
.mede-with.active .fa-heart{
    opacity: 1;
    color: #c20017;
    transform: scale(1);
}

/* ---
Menu icon css
--- */

.menu-icon {
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 7px;
    cursor: pointer;
    margin-left: 5px;
}

.menu-icon span {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    border-radius: 30px;
}

.menu-icon:hover span {
    background-color: rgb(255, 255, 255);
}

.menu-icon.active span {
    background-color: rgb(255, 255, 255);
}

.menu-icon.active span:nth-child(1) {
    width: 50%;
    margin-left: auto;
}

.menu-icon.active span:nth-child(2) {
    width: 90%;
}

.menu-icon.active span:nth-child(3) {
    width: 50%;
    margin-right: auto;
}


/* ---
Side menu Css
---- */

#sidebar {
    width: 280px;
    position: fixed;
    top: 0px;
    right: -300px;
    height: 100%;
    z-index: 1101;
    background: #ffffff;
    color: #fff;
    transition: all 0.3s ease-in-out;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    padding: 0px;
    opacity: 0;
    visibility: hidden;
}

#sidebar::-webkit-scrollbar {
    display: none;
}

#sidebar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#sidebar.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}


.res-sidemenu-logo {
    background: #036;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px;
    position: sticky;
    top: 0;
    z-index: 1;
}

.res-sidemenu-logo img {
    width: 85px;
    border-radius: 5px;
    box-shadow: 0px 0px 20px #00000038;
}

.slidemenu {
    height: calc(100% - 200px);
    max-height: calc(100% - 200px);
    position: absolute;
    width: 100%;
    top: 0;
    margin-top: 100px;
    overflow: auto;
}

.slidemenu ul {
    margin-top: 10px;
    margin-bottom: 0px;
    padding: 0 16px;
    list-style: none;
    /* border-bottom: 1px solid #dadada; */
}

.social-bx {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 5px 15px 10px;
    background: white;
    width: 100%;
    box-shadow: -4px 0px 9px lightgrey;
    margin: 0;
}

.social-bx p,
.slidemenu ul p {
    color: #036;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 0 6px 0;
    font-size: 14px;
    padding: 6px 0px;
    border-bottom: 1px solid #e9e9e9;
    /* width: fit-content; */
}

.slidemenu li {
    margin: 4px 0;
    /* width: fit-content; */
}

.slidemenu li a {
    padding: 6px 0px 6px 5px;
    display: flex;
    text-decoration: none;
    color: #333333;
    position: relative;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    opacity: 0.8;
}

.slidemenu li a .fa {
    margin-right: 10px;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s;
    opacity: 0;
}

.slidemenu li a.active .fa,
.slidemenu li a:hover .fa {
    visibility: visible;
    transform: translateX(0px);
    opacity: 1;
}

.slidemenu li a.active,
.slidemenu li a:hover {
    color: #036;
    /* background-color: #35144f14; */
    opacity: 1;
}

.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    top: 0;
    cursor: pointer;
    margin: 0 !important;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}


/* ---
Serch Popup Css
--- */

.serch-popup {
    position: fixed;
    height: calc(100vh - 50px);
    top: 50px;
    left: 0;
    background-color: #036;
    width: 100%;
    z-index: 1023;
    border-top: 1px solid #ffffff1a;
    opacity: 0;
    visibility: hidden;
    transition: opacity, visibility, 0.3s ease-in-out;
}

.serch-popup.active {
    opacity: 1;
    visibility: visible;
}

.se-fo-page,
.serch-popup .search-form {
    border-bottom: 1px solid #ffffff1a;
    padding: 25px 15px 25px;
}

.se-fo-page {
    border-bottom: 1px solid #d3d3d354;
}

.show-results {
    color: hsla(0, 0%, 100%, 0.8);
    font-weight: 400;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.shre-page {
    color: black;
}

.show-results span {
    color: #ffffff;
}

.shre-page span {
    color: #003366;
    font-weight: 500;
}

.news-search .news-img {
    box-shadow: 0 4px 10px #2f2f2fb0;
}

.news-search .news-text h5 {
    color: white;
    font-weight: 400;
}

.news-search .news-text .date {
    color: hsla(0, 0%, 100%, 0.8);
    font-weight: 400;
}

.news-search .news-text .date .author-name {
    color: white;
}

.serch-result {
    padding-top: 25px;
    padding-bottom: 50px;
    overflow: hidden;
    overflow-y: auto;
    height: calc(100vh - 190px);
    align-content: start;
}

.se-re-page {
    padding-top: 35px;
    padding-bottom: 25px;
    height: auto !important;
}


/* ---
Breadcrumb-bx css
----*/

.breadcrumb-bx {
    /* background-color: #e9ecef; */
    padding: 5px 0;
}

.breadcrumb-bx div>a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: gray;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

.breadcrumb-bx div>a .fa {
    margin-left: 5px;
    /* margin-right: 5px; */
    color: #002850;
}

.breadcrumb-bx div>a:hover {
    color: #002850;
    text-decoration: underline;
}

.breadcrumb-bx div>a.active:hover,
.breadcrumb-bx div>a.active {
    color: #bababa;
    font-weight: 400;
    text-decoration: none;
}


/* ---
Lagal Pages css
--- */

.legal-ul {
    list-style: decimal;
    padding: 0px;
    list-style-position: inside;
}

.legal-ul.ul-disc {
    list-style: disc;
    padding-left: 36px;
}

.legal-ul li,
.legal-main p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    margin-top: 10px;
    color: #333333;
}

.legal-main p a {
    color: black;
    text-decoration: underline;
}

.legal-main p a:hover {
    color: #003366;
}

.legal-main h3 {
    font-weight: 700;
    margin: 30px 0;
    color: #333;
    text-align: center;
    font-size: 28px;
}

.legal-main h5 {
    margin: 0;
    margin-top: 20px;
    font-weight: 500;
    color: #3d3d3d;
    font-size: 18px;
}

/* ---
Sitemap css
--- */

.sitemaplinks-bx {
    border: 1px solid #0000002e;
    padding: 15px 15px 15px 15px;
    position: relative;
    border-radius: 5px;
    margin-bottom: 40px;
}

.sitemap-heding {
    position: absolute;
    top: -18px;
    background: #fdfdfd;
    padding: 5px 10px;
    color: #003366;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    left: 10px;
}

.sitemap-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-ul li {
    display: inline-block;
    margin: 8px 0;
    padding: 0px 10px;
    border-right: 1px solid lightgray;
}

.sitemap-ul li:last-child {
    border-right: transparent;
}

.sitemap-ul li a {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    height: 24px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    color: #525252;
}

.sitemap-ul li a:hover {
    color: #003366;
    text-decoration: underline;
}



/* ---
Contact page css
--- */

.contact-info {
    border: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    padding: 13px 15px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-info:hover {
    background-color: #f0f0f031;
}

.contact-info .contact-icon {
    padding: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e1e1e1;
    margin-right: 10px;
    flex: 0 0 50px;
    transition: all 0.3s ease-in-out;
}

.contact-info:hover .contact-icon {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: transparent;
    box-shadow: 0 0 5px lightgray;
}

.contact-info .contact-icon img {
    width: 100%;
}

.contact-info .contact-text h6 {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.73;
    overflow: hidden;
    margin: 0;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-info:hover .contact-text h6 {
    color: #003366;
}

.contact-info .contact-text p {
    color: #333333;
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
}

.contact-heading {
    font-weight: 500;
    color: #036;
    font-size: 20px;
    position: relative;
    margin-bottom: 20px;
}

h5.contact-heading::after {
    content: "";
    background-color: #036;
    width: 50px;
    height: 1.5px;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 50px;
    display: inline-flex;
}

.custom-form {
    padding: 40px 20px;
    background-color: #ffffff;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    position: relative;
}

.custom-form__group textarea,
.custom-form__group input {
    font-weight: 400;
    display: block;
    color: #333;
    border: 0;
    background-color: rgb(255 255 255);
    border-bottom: 1px solid rgb(219 219 219);
    padding: 0px 0px 0px 0px;
    height: 40px;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 0 0 30px rgb(255 255 255) inset !important;
    -webkit-box-shadow: 0 0 0 30px rgb(255 255 255) inset !important;
    font-weight: 400;
}

.custom-form__group textarea {
    padding: 6px 0px 6px 0px;
    height: auto;
}

.custom-form__group textarea,
.custom-form__group input:focus {
    outline: none;
}

.custom-form__group {
    position: relative;
    margin: 16px 0 10px;
}

.custom-form__group .group__label {
    position: absolute;
    font-size: 15px;
    left: 19px;
    color: #c3c3c3;
    font-weight: 400;
    border-radius: 3px;
    top: -8px;
    opacity: 1;
    transform: scale(1.2) translateY(15px);
    transition: all 0.3s ease-in-out;
    z-index: 1;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.custom-form__group textarea:focus+.group__label,
.custom-form__group textarea:hover+.group__label,
.custom-form__group input:focus+.group__label,
.custom-form__group input:hover+.group__label {
    color: #c3c3c3;
}

.custom-form__group textarea:focus,
.custom-form__group textarea:hover,
.custom-form__group input:focus,
.custom-form__group input:hover {
    /* border-color: var(--bg-blue); */
    background-color: rgb(255, 255, 255);
    border-color: #003366;
}

.custom-form__group textarea:not(:placeholder-shown)+.group__label,
.custom-form__group textarea:focus+.group__label,
.custom-form__group input:not(:placeholder-shown)+.group__label,
.custom-form__group input:focus+.group__label,
.custom-form__group select:focus+.group__label {
    transform: scale(0.9) translateY(-5px);
    opacity: 1;
    left: 12px;
    z-index: 1;
    font-weight: 500;
    color: #003366;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px rgb(255, 255, 255) inset !important;
    -webkit-box-shadow: 0 0 0 30px rgb(255, 255, 255) inset !important;
}

.sub-btn {
    border: 1px solid lightgray;
    padding: 5px 10px;
    margin: 16px auto 0;
    width: 100%;
    height: 45px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
    background-color: #00458b;
    border-radius: 5px;
    color: white;
}

.sub-btn:hover {
    border-color: #003366;
    background-color: #003366;
    color: white;
}

.contact-map {
    width: 100%;
    height: 479px;
}

/*---
Detail news css
---*/

.d-news-heading {
    font-size: 32px;
    color: #036;
    line-height: 1.3;
    font-weight: 500;
    overflow: hidden;
    margin-bottom: 0px;
}

.d-other p:nth-child(1) {
    color: #393082;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    display: block;
    white-space: nowrap;
    margin: 0;
}

.d-other p:nth-child(2) {
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    width: 100%;
    display: block;
    white-space: nowrap;
    margin: 0;
}

.d-other p:nth-child(2) span {
    font-weight: 400;
    color: #737373;
}

.d-caption {
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
    display: block;
    padding: 8px 0 3px;
    color: #bab6b6;
    font-weight: 400;
    font-style: normal !important;
}

.d-caption i{
    font-style: normal !important;
}

.d-s-link {
    text-align: right;
    margin: 0;
}

.d-s-link a {
    border-radius: 50%;
    border: none;
    font-size: 16px;
    margin: 5px 1px;
    position: relative;
    background: #eeeeee;
}

.d-s-link a .fa {
    position: relative;
    z-index: 2;
}

.d-s-link a::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%) scale(0);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.d-s-link a:hover {
    background-color: transparent;
    box-shadow: none;
}

.d-s-link a:hover .fa {
    color: white !important;
}

.d-s-link a:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.social-links a.fb-link:hover::after {
    background-color: #3b5998;
}

.social-links a.tw-link:hover::after {
    background-color: #00aced;
}

.social-links a.ld-link:hover::after {
    background-color: #0077b5;
}

.social-links a.wa-link:hover::after {
    background-color: #25d465;
}

.social-links a.copy-link:hover::after {
    background-color: #393082;
}

.d-s-link a .icon-tag {
    position: absolute;
    background: white;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, 50px);
    box-shadow: 0px 0px 5px #0000001f;
    padding: 4px 8px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    pointer-events: none;
}

.d-s-link a .icon-tag::after {
    content: "";
    width: 12px;
    height: 12px;
    background: white;
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, -6px) rotate(45deg);
    z-index: 3;
    box-shadow: -1px -1px 1px #0000001f;
}

.d-s-link a:hover .icon-tag {
    transform: translate(-50%, 35px);
    visibility: visible;
    opacity: 1;
}

.social-links a.fb-link .icon-tag {
    color: #3b5998;
}

.social-links a.tw-link .icon-tag {
    color: #00aced;
}

.social-links a.ld-link .icon-tag {
    color: #0077b5;
}

.social-links a.wa-link .icon-tag {
    color: #25d465;
}

.social-links a.copy-link .icon-tag {
    color: #393082;
}



.d-text-bx {
    /* height: 150px; */
    /* height: 15%; */
    overflow: hidden;
    position: relative;
    -webkit-transform: all 0.3s;
    -ms-transform: all 0.3s;
    transform: all 0.3s;
}

/* .d-text-bx::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: linear-gradient(0deg, #fdfdfd, #fdfdfd9e);
}

.d-text-bx.noafter::after {
    content: none;
} */

.d-text-bx * {
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    color: #000000;
    overflow: hidden;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    text-align: left;
    /* margin-bottom: 12px; */
}



.d-text-bx strong,
.d-text-bx b{
    font-weight: bold !important;
}

.d-text-bx ins,
.d-text-bx u{
    text-decoration: underline !important;
}

.d-text-bx em,
.d-text-bx i{
    font-style: italic !important;   
}

.d-text-bx img {
    width: 100%;
    border-radius: 5px;
}

.d-text-bx ul li{
    padding-left: 20px;
    position: relative;
}

.d-text-bx ul li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    color: currentColor;
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: 50%;
}

.d-inner-vi {
    position: relative;
    padding-top: 56%;
    overflow: hidden;
    border-radius: 5px;
    background-color: #f3f3f3;
    box-shadow: 0 4px 10px #ccc;
}

.d-inner-vi iframe,
.d-inner-vi video {
    display: block;
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.read-full-artical {
    background-color: #393082;
    color: white;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #393082;
    padding: 5px 14px;
    margin: auto;
    border-radius: 3px;
    display: none !important;
    margin-top: 15px;
}

.read-full-artical:hover {
    background-color: #251d63;
    border: 1px solid #251d63;
    color: white;
}

.d-tags {
    margin: 0;
}

.d-tags a {
    color: #aaa;
    background: #fafafa;
    line-height: normal;
    font-size: 12px;
    letter-spacing: 0;
    padding: 4.5px 12px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
}

.d-tags a:hover {
    color: #036;
    background: #00336600;
    border: 1px solid #036;
}


hr.separator {
    border-top: 1px solid lightgray;
    width: 100%;
    clear: both;
    margin: auto;
    opacity: 1;
}

hr.separator:after {
    background-color: #d8361e;
    content: "";
    height: 10px;
    left: 50%;
    margin: -5px auto auto -5px;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 10px;
}

@media screen and (max-width: 768px) {
    .d-text-bx * {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .d-text-bx * {
        font-size: 16px;
    }
}


/* ---
Empty Box Css 
---*/

.empty-div-bx {
    height: 250px;
    margin-bottom: 30px;
    border-radius: 5px;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    border: 1px solid lightgray;
    align-items: center;
    width: 100%;
}

.empty-div-bx img {
    width: 70px;
    display: block;
}

.se-bx.empty-div-bx img{
    filter: invert(1);
}

.empty-div-bx h6 {
    font-size: 16px;
    color: gray;
    margin-top: 10px;
    margin-bottom: 0px;
    font-weight: 500;
}

.se-bx.empty-div-bx h6{
    color: #ffffff;
}

.empty-div-bx a {
    font-size: 12px;
    margin-top: 5px;
    color: #525252;
    display: block;
    text-align: center;
    font-weight: 500;
}

.se-bx.empty-div-bx a{
    color: #d4d4d4;
}

.empty-div-bx a:hover {
    color: #002850;
    text-decoration: underline;
}

.se-bx.empty-div-bx a:hover{
    color: white;
}

/* footer start */

    .footer-cont{
        padding: 0px 6px 0px 5px;
    }

    .common-btn-item {
        display: list-item;
        flex-wrap: wrap;
        flex-direction: row;
        padding: 0;
        border: none;
        background: #f9f9f9;
        border-radius: 99px;
        margin: 4px 4px;
        border: 1px solid #eee;
        color: #88919a;
        padding: 1px 10px;
    }

    .common-btn-item span{
        line-height: 170%;
        text-transform: capitalize;
        display: inline;
        margin: 0 0px 10px 0;
    }
    
    .common-btn-item.cbi-enquiry span a{
        font-size: 12px;
        font-weight: 400;
    }

    
    .common-btn-item.cbi-enquiry .icon a svg{
        font-size: 18px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
    }
  
    .common-btn-item:hover{
        background: rgba(10, 121, 234, 0.03);
        border-color: rgba(10, 121, 234, 0.1);
        color: #0bb5be;
        transition: all .3s ease-in-out;
    }
/*     
    .common-btn-item.cbi-enquiry:hover {
      -webkit-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
    } */
    


/* footer end */


/* Modal Share your Feedback form start */

.modal-body {
    padding: 0;
    border-radius: 7px;
}

.modal-content{
    border-radius: 15px;
}

.feedback_modal .feed_title {
    position: relative;
}

.feedback_modal .feed_title {
    padding: 15px 20px 15px 33px;
    background: #607d8b;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .6px;
    border-radius: 15px 15px 0 0;
}

.close_txt {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    -webkit-transition: 0.2s all linear;
    transition: 0.2s all linear;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.close_txt svg {
    width: 14px;
    height: 14px;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
}

.close_txt svg {
    max-width: 100%;
    max-height: 100%;
    display: block;
    -webkit-transition: 0.2s all linear;
    transition: 0.2s all linear;
}

.feed_form {
    padding: 20px 25px;
}

.field-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.field-wrapper .input {
    border: 1px solid transparent;
    padding: 15px 8px;
    border-radius: 4px;
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    resize: vertical;
}

.field-wrapper .field-placeholder {
    font-size: 15px;
    font-weight: 400;
    padding: 0;
    left: 0;
    width: 96%;
    right: 0;
    margin: 0 auto;
}

.field-wrapper .field-placeholder {
    font-size: 16px;
    position: absolute;
    top: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #80868b;
    left: 8px;
    padding: 0 8px;
    -webkit-transition: transform 150ms cubic-bezier(.4,0,.2,1), opacity 150ms cubic-bezier(.4,0,.2,1);
    transition: transform 150ms cubic-bezier(.4,0,.2,1), opacity 150ms cubic-bezier(.4,0,.2,1);
    z-index: 1;
    text-align: left;
    width: 100%;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

.screenshot_attach .fileinput .btn-file {
    position: relative;
    z-index: 0;
    font-size: 13px;
}

.screenshot_attach .fileinput .btn-file svg {
    width: 15px;
    height: 15px;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.screenshot_attach .fileinput-new.with_icon i {
    color: #607d8b;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    line-height: 1.9;
    border-radius: 99px;
    background: rgba(96, 125, 139, 00);
    text-align: center;
}

.attch_txt {
    display: inline-block;
    vertical-align: middle;
    color: #4e646f;
}

.screenshot_attach .btn.btn-default.btn-file:hover {
    background: rgba(96, 125, 139, .19);
}

.screenshot_attach .fileinput .btn-file {
    position: relative;
    z-index: 0;
    font-size: 13px;
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.screenshot_attach .fileinput .btn-file input[type=file] {
    opacity: 0;
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
}

.submit_btn {
    transition: .2s all linear;
}

.submit_btn {
    border: 1px solid;
    background: #f1f1f1;
    padding: 9px 36px;
    border-radius: 3px;
    color: #607d8b;
    border-color: #bcc6cc;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

.submit_btn .send_btn_txt {
    display: inline-block;
    vertical-align: middle;
}

.submit_btn i {
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.field-wrapper:last-child {
    margin-bottom: 0;
}

.btn_hr {
    border-top: 1px dashed #dadee0;
    padding: 30px 0 5px 0;
    text-align: center;
}

.submit_btn:hover {
    background: #607d8b;
    color: #fff;
    border-color: #607d8b;
}

.screenshot_attach .fileinput.fileinput-exists {
    max-width: 200px;
    position: relative;
}

.btn-file .fileinput-exists {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 1px;
    left: 2px;
}

.screenshot_attach .fileinput-exists .fileinput-preview {
    width: 200px;
    height: 130px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 10px #eee;
    overflow: hidden;
    padding: 6px;
    margin-bottom: 15px;
}

.screenshot_attach .fileinput-exists .fileinput-preview img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}

.screenshot_attach .fileinput .btn-file {
    position: relative;
    z-index: 0;
    font-size: 13px;
}

.screenshot_attach .fileinput-exists .btn-file .fileinput-new {
    display: none;
}

/* .screenshot_attach .fileinput-exists .btn-file .fileinput-exists {
    display: block;
} */

.screenshot_attach .fileinput .btn-file input[type=file] {
    opacity: 0;
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
}

.remove_btn {
    display: inline-block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: -7px;
    top: -7px;
    padding: 8px;
    background: #fff;
    border-radius: 99px;
}

.remove_btn svg {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.remove_btn svg, .remove_btn svg path {
    fill: #d00000;
}

svg:not(:root) {
    overflow: hidden;
}


/* Modal Share your Feedback form end */