@charset "UTF-8";
@import url(../css/fn-icon/style.css);
@import url(../css/bootstrap.min.css);
@import url(../css/animate.css);
@import url(../font-awesome/css/font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Mukta:400,700");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700");
body {
    font-family: "mukta", sans-serif;
    /*font-family: 'Noto Sans', sans-serif; */
}

@media (max-width: 768px) {
    .top-address {
        display: none;
    }
}

.web_banner_list .web__banner {
    padding: 15px 0;
}

.web_banner_list .web__banner img {
    width: 100%;
}

header {
    position: relative;
    z-index: 9;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

@media screen and (min-width: 992px) {
    header .header_fixed {
        position: fixed;
    }
}

header .header_fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation-name: fadeInDown;
    animation-duration: 200ms;
    z-index: 9;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

header .header_fixed ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper {
    margin-top: 0px;
}

header .sub__menu__wrapper {
    width: 100%;
    display: block !important;
    top: 0;
}

@media screen and (max-width: 992px) {
    header .sub__menu__wrapper {
        padding: 0 0 0 10px !important;
    }
    header .sub__menu__wrapper li a {
        font-size: 13px;
    }
}

@media screen and (min-width: 992px) {
    header .sub__menu__wrapper {
        opacity: 0;
        position: absolute;
        left: 100%;
        right: 0;
    }
}

header .sub__menu__wrapper li {
    display: block !important;
}

header .sub__menu__wrapper li a {
    display: flex;
    border-bottom: 1px solid white;
}

header .sub__menu__wrapper .sub__menu {
    text-align: left;
}

header .logo {
    margin: 5px 0;
}

header .logo img {
    margin: 0 auto;
    width: 100px;
}

header::before {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
    content: "";
    box-shadow: 0px 5px 20px red;
}

.header__menu__section {
    position: relative;
}

.align__items__center {
    align-items: center;
}

.logo__text {
    color: #1f3c8d;
    font-size: 20px;
    font-weight: 600;
    padding: 0px 15px;
}

.header__list {
    padding: 0px 15px 0 15px;
    font-family: "Nunito", sans-serif;
}

.header__list ul {
    padding: 0;
    margin: 0;
}

.header__list ul li {
    list-style: none;
    margin-right: 15px;
    display: inline-flex;
    font-size: 14px;
}

.header__list ul li i {
    color: #1f3c8d;
}

.header__list ul li a {
    text-decoration: none;
    color: #1f3c8d;
    margin: auto;
}

@media (max-width: 768px) {
    .header__list ul li a {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .header__list ul li {
        margin-right: 10px;
    }
}

@media (min-width: 767px) {
    .header__list ul {
        display: flex;
    }
    .header__list ul li {
        display: inline-block;
        line-height: 35px;
    }
}

.header__list .top_social_icon .social_icon {
    border: 1px solid white;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    color: white;
    border-radius: 50%;
    text-align: center;
    margin-right: 7px;
    transition: 300ms ease all;
}

@media screen and (max-width: 580px) {
    .header__list .top_social_icon .social_icon {
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
}

.header__list .top_social_icon .fb__:hover {
    background-color: white;
    border-color: #1b75bb;
}

.header__list .top_social_icon .fb__:hover a {
    color: #1b75bb;
}

.header__list .top_social_icon .tw__:hover {
    background-color: white;
    border-color: #1b75bb;
}

.header__list .top_social_icon .tw__:hover a {
    color: #00aced;
}

.header__list .top_social_icon .yt__:hover {
    background-color: #ec2129;
    border-color: #ec2129;
}

.header__list .top_social_icon .yt__:hover a {
    color: white;
}

.header__list .top_social_icon .ld__:hover {
    background-color: white;
}

.header__list .top_social_icon .ld__:hover a {
    color: #0077b5;
}

.nav__button {
    width: 45px;
    height: 35px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    float: right;
}

.nav__button .main_toggle__bar {
    width: 40px;
    background-color: #fff;
    height: 1px;
    position: relative;
    margin: 15px 0;
    transition: 200ms ease-in-out all;
}

.nav__button .main_toggle__bar:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    height: 1px;
    width: 100%;
    background-color: #fff;
    content: "";
    transition: 200ms ease-in-out all;
}

.nav__button .main_toggle__bar:before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 1px;
    width: 100%;
    background-color: #fff;
    content: "";
    transition: 200ms ease-in-out all;
}

.nav__button .menu__open {
    background-color: transparent;
}

.nav__button .menu__open:before {
    transform: rotate(45deg);
    top: 0;
}

.nav__button .menu__open:after {
    transform: rotate(-45deg);
    top: 0;
}

.header {
    position: relative;
    background: #41a5d5;
    background: #1f3c8d;
}

.header ul {
    padding: 0;
    display: flex;
    align-content: center;
    margin-bottom: 0;
    width: 100%;
}

.header ul li {
    list-style: none;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
}

.header ul .menu_child {
    width: 100%;
}

@media (max-width: 992px) {
    .header ul .menu_child {
        justify-content: flex-end;
        text-align: right;
        padding: 10px 0;
    }
}

.header ul .navbar-expand-md {
    padding: 0;
}

.header ul .navbar-expand-md .nav .nav-item a {
    text-transform: capitalize;
    font-size: 17px;
    color: #fff;
    padding: 10px 15px;
    transition: 300ms ease all;
}

.header ul .navbar-expand-md .nav .nav-item:hover a {
    color: #fff !important;
    background: #1f3c8d;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: 500ms;
}

.header ul .navbar-expand-md .nav .nav-item:hover::after {
    color: white;
}

.header ul .navbar-expand-md .nav .show_trending {
    background-color: #007bff;
}

.header ul .navbar-expand-md .nav .show_trending a {
    color: white;
}

.header ul .navbar-expand-md .nav .todays_only {
    background-color: #dc3545;
}

.header ul .navbar-expand-md .nav .todays_only a {
    color: white;
}

.header ul .navbar-expand-md .nav .search_content_form {
    background-color: #dc3545;
}

.header ul .navbar-expand-md .nav .search_content_form a {
    color: white;
}

.header ul .navbar-expand-md .main__menu {
    position: relative;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 300ms ease all;
    /*display: initial;*/
    transform-origin: 50% 0;
    transform: scaleY(0);
    z-index: 2;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper {
    position: relative;
    margin-top: 0;
    width: 250px;
    flex-wrap: wrap;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper ul {
    display: block !important;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper ul li {
    display: block !important;
    position: relative;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper ul li:hover .sub__menu__wrapper {
    opacity: 1;
    display: initial;
    transition: 300ms ease all;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper .dropdown-item {
    padding: 7px 15px;
    color: black;
    border-bottom: 1px solid #e2e3e4;
    font-size: 17px;
    position: relative;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper .dropdown-item:nth-last-of-type() {
    border-bottom: 0;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper::before {
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    width: 0%;
    content: "";
    height: 5px;
    display: block;
    background-color: #007bff;
    transition: 600ms ease all;
}

.header ul .navbar-expand-md .main__menu:hover>.dropdown__menu {
    transition: 300ms ease all;
    transform: scaleY(1);
}

.header ul .navbar-expand-md .main__menu:hover>.dropdown__menu>.menu__wrapper::before {
    width: 100%;
    transition: 600ms ease all;
}

.header ul .navbar-expand-md .main__menu::after {
    position: relative;
    right: 13px;
    bottom: 0;
    content: "";
    display: block;
    font-family: "FontAwesome";
    font-weight: 600;
    transition: all 0.25s ease;
    font-size: 17px;
    color: #007bff;
}

.header a img {
    height: 70px;
    width: auto;
}

@media (max-width: 768px) {
    .header a img {
        height: 50px;
    }
}

.header .scroll__logo a img {
    height: 100px;
}

.header .resize_logo a img {
    height: 45px;
}

.menu-close {
    float: right;
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    width: 37px;
    height: 35px;
    transform: rotate(-180deg);
    display: block;
}

.menu-close::before {
    position: absolute;
    content: "";
    right: 18px;
    top: 5px;
    width: 2px;
    height: 25px;
    background-color: red;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-close::after {
    position: absolute;
    content: "";
    right: 18px;
    top: 5px;
    width: 2px;
    height: 25px;
    background-color: red;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media (min-width: 992px) {
    .menu-close,
    .nav__button {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .header ul {
        padding: 0px 10px;
    }
    .header ul li .navbar-expand-md {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 5;
        right: -100%;
        height: 100%;
        transition: 500ms;
        overflow-x: scroll;
        background-color: #41a5d5;
        display: block;
        flex-wrap: nowrap;
        text-align: left;
    }
    .header ul li .navbar-expand-md ul {
        display: block;
        padding: 15px 0 15px 40px;
    }
    .header ul li .navbar-expand-md ul li {
        display: block;
        justify-content: start;
        align-items: start;
    }
    .header ul li .navbar-expand-md ul .main__menu::after {
        position: absolute;
        top: 5px;
        padding-right: 30px;
        color:#fff;
    }
    .header ul li .navbar-expand-md ul .main__menu .dropdown__menu {
        position: relative;
    }
    .header ul li .navbar-expand-md ul .main__menu .dropdown__menu .menu__wrapper {
        width: 100%;
    }
     .hide_me {
        display: none;
    }
    .header ul li .show__menu {
        right: 0;
        transition: 800ms;
    }
}

.ptb5 {
    padding: 50px 0;
}

.group__title {
    font-size: 25px;
    font-weight: 600;
    background: #41a5d5;
    /* color: white; */
    text-align: left;
    padding: 0 15px;
}

.style_bar {
    max-width: 100%;
    height: 1px;
    background-color: #41a5d5;
    margin: 20px auto;
    text-align: center;
    position: relative;
}

.style_bar::before {
    position: absolute;
    content: " ";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #41a5d5;
    left: 0;
    top: -2px;
}

.style_bar::after {
    position: absolute;
    content: " ";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #41a5d5;
    right: 0;
    top: -2px;
}

.listing {
    list-style: none;
    padding-left: 0;
}

.item__flex {
    margin-bottom: 10px;
    width: 100%;
    padding: 15px 5px;
    border-radius: 0;
    background: white;
    transition: 300ms ease all;
    transform: scale(1);
    box-shadow: 0px 0px 4px #a3b3be;
    position: relative;
    height: 100%;
}

.item__flex::before {
    background-color: #41a5d5;
    content: "";
    left: 0;
    bottom: 0;
    width: 4px;
    position: absolute;
    height: 100%;
    z-index: 1;
    transition: 2000ms ease-in-out;
}

.item__flex .flex__item {
    padding: 0 5px;
}

.item__flex .flex__item p {
    font-weight: 600;
    margin: 0;
}

.item__flex .flex__item:nth-child(1) {
    width: auto;
}

.item__flex .flex__item:nth-child(3) {
    align-items: flex-end;
}

.notices {
    list-style: none;
    padding: 0;
    margin: 0;
}

.date__time {
    font-size: 13px;
    font-weight: 400;
}

.notice__item {
    margin-bottom: 10px;
    width: 100%;
    padding: 10px 5px 10px 35px;
    border-radius: 0;
    background: white;
    transition: 300ms ease all;
    transform: scale(1);
    box-shadow: 0px 0px 4px #a3b3be;
    position: relative;
    height: 100%;
}

.notice__item::before {
    font-family: "FontAwesome";
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    height: 100%;
    z-index: 1;
    transition: 2000ms ease-in-out;
    padding: 25px 20px 25px 15px;
    color: #443673;
    font-size: 18px;
}

.notice__item .flex__item {
    word-break: break-all;
    padding: 0 5px;
}

.notice__item .flex__item p {
    font-weight: 600;
    margin: 0;
}

.notice__item .flex__item:nth-child(1) {
    width: auto;
}

.notice__item .flex__item:nth-child(3) {
    align-items: flex-end;
}

.thumbnail__icon img {
    width: 50px;
}

.most__searched ul {
    padding-left: 0;
    display: flex;
    margin: 0;
    flex-wrap: wrap;
}

.most__searched ul li {
    list-style: none;
    padding: 10px 15px;
    display: inline-flex;
    vertical-align: middle;
    justify-items: center;
}

.most__searched ul li:first-child {
    background-color: #ec2129;
}

.most__searched ul li h4 {
    margin: 0;
    color: white;
}

.scrolltop {
    background-color: #41a5d5;
    position: fixed;
    right: 15px;
    bottom: 50px;
    z-index: 99;
    border-radius: 50%;
    animation-name: pulse;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    display: none;
    padding: 5px 12px;
    border: 1px solid #41a5d5;
    cursor: pointer;
}

.scrolltop span {
    color: white;
    font-size: 25px;
}

.close_trend_section {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: white;
    margin: 0;
    transition: 200ms ease-in-out all;
    box-shadow: 0px 1px 20px #635b5b;
    margin-left: -9px;
    cursor: pointer;
    right: 15px;
}

.close_trend_section:after {
    position: absolute;
    right: 0;
    left: 3px;
    top: 14px;
    height: 2px;
    width: 25px;
    background-color: black;
    content: "";
    transition: 200ms ease-in-out all;
    transform: rotate(45deg);
}

.close_trend_section:before {
    position: absolute;
    left: 3px;
    top: 14px;
    right: 0;
    height: 2px;
    width: 25px;
    background-color: black;
    content: "";
    transition: 200ms ease-in-out all;
    transform: rotate(-45deg);
}

.search__content {
    position: fixed;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #000000d1;
    overflow: hidden;
}

.search__content .searh__box {
    display: flex;
    vertical-align: middle;
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.search__content .close__search {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: white;
    margin: 0;
    transition: 200ms ease-in-out all;
    box-shadow: 0px 1px 20px #635b5b;
    margin-left: -9px;
    cursor: pointer;
    top: 60px;
    right: 15px;
}

.search__content .close__search:after {
    position: absolute;
    right: 0;
    left: 3px;
    top: 14px;
    height: 2px;
    width: 25px;
    background-color: black;
    content: "";
    transition: 200ms ease-in-out all;
    transform: rotate(45deg);
}

.search__content .close__search:before {
    position: absolute;
    left: 3px;
    top: 14px;
    right: 0;
    height: 2px;
    width: 25px;
    background-color: black;
    content: "";
    transition: 200ms ease-in-out all;
    transform: rotate(-45deg);
}

.search__content input[type=search] {
    width: 600px;
    outline: none;
    border: navajowhite;
    line-height: 40px;
    box-shadow: 0px 1px 20px #646483a6;
    padding: 10px 20px;
    font-size: 25px;
}

.trending__news__section {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    top: 45px;
    z-index: 2;
    background-color: white;
    box-shadow: 0px 13px 20px #22212142;
    padding: 25px 0;
}

.trending__news__section .trending__news {
    padding-left: 0;
    display: block;
    columns: 4;
}

@media screen and (max-width: 1024px) {
    .trending__news__section .trending__news {
        columns: 3;
    }
}

@media screen and (max-width: 992px) {
    .trending__news__section .trending__news {
        columns: 2;
    }
}

@media screen and (max-width: 480px) {
    .trending__news__section .trending__news {
        columns: 1;
    }
}

.trending__news__section .trending__news li {
    list-style: none;
    margin-bottom: 15px;
}

.trending__news__section .trending__news li .news__flex__box {
    display: flex;
}

.trending__news__section .trending__news li .news__flex__box .news__flex {
    width: auto;
}

.trending__news__section .trending__news li .news__flex__box .news__flex a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    line-height: 30px;
}

.trending__news__section .trending__news li .news__flex__box .news__flex:first-child {
    padding-right: 15px;
}

.trending__news__section .trending__news li .news__flex__box .news__flex img {
    width: 100px;
}

.flexbox {
    display: flex;
}

.more__button {
    text-decoration: none !important;
    background: #41a5d5;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0px 1px 20px #e45c5c;
    transition: 500ms ease all;
}

.more__button:hover {
    color: white;
    box-shadow: 0px 1px 60px #e45c5c;
    transition: 500ms ease all;
}

.detail__button {
    text-decoration: none !important;
    background-color: #1f3c8d;
    color: white;
    padding: 2px 7px;
    border-radius: 5px;
    box-shadow: 0px 1px 20px #e45c5c;
    transition: 500ms ease all;
}

.detail__button:hover {
    color: white;
    box-shadow: 0px 1px 60px #e45c5c;
    transition: 500ms ease all;
}

.home__paragraph h3 {
    font-size: 30px;
    color: #1f3c8d;
}

.president__message {
    box-shadow: 0px 1px 20px #b29cef82;
    transition: 200ms ease-in-out all;
}

.president__message:hover {
    transform: scale(1.02);
    transition: 200ms ease-in-out all;
}

.president__message img {
    max-width: 100%;
    padding: 15px 30px 0;
}

.president__message h5 {
    font-size: 20px;
    color: #1f3c8d;
    padding: 0;
    margin-bottom: 0;
    text-shadow: 0px 1px 20px #a7a7bf;
    text-align: center;
}

.president__message p {
    font-size: 18px;
    color: black;
    text-align: center;
}

.breaking__wrapper {
    padding: 8px 0 0 0;
    display: flex;
    background-color: #3129531a;
}

.breaking__wrapper .news_scroll {
    width: 100%;
}

.breaking__wrapper .flex__wrapper h4 {
    background: #1f3c8d;
    color: white;
    padding: 0 15px;
    align-items: center;
    white-space: pre;
    margin-bottom: 0;
}

.breaking__wrapper .flex__wrapper ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

.breaking__wrapper .flex__wrapper ul li {
    box-shadow: 0px 1px 5px #e9d9d969;
    margin-right: 17px;
    padding: 0 10px 0 0px;
}

.breaking__wrapper .flex__wrapper ul li img {
    width: 25px;
    height: 25px;
    object-fit: cover;
}

.breaking__wrapper .flex__wrapper ul li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.home__section__title {
    font-size: 28px;
    border-bottom: 2px solid #1f3c8d;
    width: auto;
    color: #1f3c8d;
}

.footer__link li {
    list-style: none;
    display: block;
    position: relative;
    padding-left: 20px;
    transition: 250ms ease-in-out all;
}

.footer__link li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    margin: 5px 0;
}

.footer__link li:hover {
    padding-left: 10px;
    transition: 250ms ease-in-out all;
}

.footer__link li::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: block;
    content: "";
    color: white;
    font-weight: 900;
    transition: all 0.25s ease;
    font-family: "FontAwesome";
}

.copy__rights p {
    color: white;
}

.footer__top__up__image {
    position: fixed;
    bottom: 5px;
    left: 0;
    right: 0;
    z-index: 1;
}

.footer__top__up__image .web_banner_list .web__banner {
    padding: 0 0 15px 0;
}

.footer__top__up__image .btn__close {
    position: relative;
    width: 30px;
    height: 30px;
    background-color: white;
    margin: 0;
    transition: 200ms ease-in-out all;
    box-shadow: 0px 1px 20px #635b5b;
    margin-left: -9px;
    cursor: pointer;
}

.footer__top__up__image .btn__close:after {
    position: absolute;
    right: 0;
    left: 3px;
    top: 14px;
    height: 2px;
    width: 25px;
    background-color: black;
    content: "";
    transition: 200ms ease-in-out all;
    transform: rotate(45deg);
}

.footer__top__up__image .btn__close:before {
    position: absolute;
    left: 3px;
    top: 14px;
    right: 0;
    height: 2px;
    width: 25px;
    background-color: black;
    content: "";
    transition: 200ms ease-in-out all;
    transform: rotate(-45deg);
}

.footer__one {
    padding-top: 75px;
    margin-top: 25px;
    padding-bottom: 65px;
    background-color: #1f3c8d;
}

.footer__one .logo img {
    max-width: 250px;
}

.footer__one .footer__about__us {
    margin-top: 30px;
}

.footer__one .footer__about__us p {
    font-size: 16px;
    line-height: 27px;
}

.footer__one .footer__title h4 {
    font-size: 25px;
    color: #fff;
}

.footer__one .footer__title .footer__team {
    columns: 2;
}

.footer__one .footer__title ul {
    padding-left: 0;
}

.footer__one .footer__title ul li {
    list-style: none;
}

.footer__one .footer__title ul li h5 {
    font-size: 21px;
    color: #41a5d5;
    margin: 0;
}

.footer__one .footer__title ul li p {
    font-size: 14px;
    color: white;
    margin: 0;
    line-height: 27px;
}

.footer__one .footer__title ul li p:nth-child(2) {
    font-size: 14px;
}

.footer__one .footer__title iframe {
    width: 100%;
    max-height: 350px;
}


/* -------------------------home slider section-------------------------  */

.home_slider {
    position: relative;
    width: 100%;
    height: 400px;
}

.home_slider img {
    width: 100%;
    height: 400px;
}

.home_banner.owl-carousel .owl-stage-outer {
    display: block;
    width: 100%;
}

.home_banner.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.home_banner.owl-theme .owl-nav {
    position: relative;
    top: 0;
}

.home_banner.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 5%;
}

.home_banner.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 5%;
}

.owl-nav {
    position: absolute;
    right: 0%;
    left: 0%;
    /* bottom: 31px; */
    /* bottom: 40px; */
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_banner.owl-carousel .owl-nav button.owl-prev,
.home_banner.owl-carousel .owl-nav button.owl-next {
    padding: 5px 10px;
    color: #fff;
    outline: none;
    transition: 300ms ease-in all;
}

.home_banner.owl-carousel .owl-nav button.owl-prev:hover,
.home_banner.owl-carousel .owl-nav button.owl-next:hover {
    background-color: blue;
    transition: 300ms ease-in all;
    border-radius: 20px;
}

.home_banner.owl-carousel button.owl-dot {
    z-index: 99999999;
    padding: 7px 7px;
    color: #9696cc;
    border-radius: 10px;
    background-color: white;
    outline: none;
    margin-right: 5px;
}

.home_banner.owl-carousel button.owl-dot.active {
    animation-name: fadeIn;
    animation-duration: 0.3s;
    background-color: #41a5d5;
}

.home_banner.owl-carousel .owl-nav button.owl-prev .fa,
.home_banner.owl-carousel .owl-nav button.owl-next .fa {
    font-size: 35px;
}

.owl-animated-in {
    z-index: 0;
    animation-duration: 10s;
}

.home_slider_item {
    position: relative;
    overflow: hidden;
}

.slider_caption {
    position: absolute;
    z-index: 9;
    /* right: 0;
  bottom: 0;
  left: 0; */
    padding: 0px;
    /* background-color: rgba(9, 33, 47, .7); */
    display: flex;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
}

.slider_caption h2 {
    font-size: 25px;
    font-weight: 400;
    text-align: left;
    color: #fff;
}

.slider_caption p {
    font-size: 15px;
    font-weight: 300;
    text-align: left;
    color: #fff;
}

.owl-item.active .slider_caption {
    animation-name: fadeIn;
    animation-duration: 5s;
    animation-delay: 0.1s;
}


/* .home_banner .owl-item.active .home_slider_item img {
    transform: scale(1.1);
    transition: 25s;
    animation-name: fadeIn;
    animation-duration: 15s;
} */

.home_slider .owl-item .item img {
    /* transform: scale(1.1); */
    transition: 2s;
}

.home_slider .owl-dots {
    position: absolute;
    /* top: 140px; */
    bottom: 5%;
    right: 0;
    left: 0;
    /* width: 20px; */
    text-align: center;
    display: flex;
    justify-content: center;
}

.gallery__slider__section .gallary__slider {
    position: relative;
}

.gallery__slider__section .gallary__slider .owl-nav {
    top: 0;
    position: absolute;
    right: 0%;
    left: 0%;
    /* bottom: 31px; */
    /* bottom: 40px; */
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery__slider__section .gallary__slider .owl-nav .owl-prev {
    position: absolute;
    left: 5%;
}

.gallery__slider__section .gallary__slider .owl-nav .owl-next {
    position: absolute;
    right: 5%;
}

.gallery__slider__section .gallary__slider .owl-nav .owl-prev,
.gallery__slider__section .gallary__slider .owl-nav .owl-next {
    padding: 0px 10px !important;
    color: #fff !important;
    outline: none;
    transition: 300ms ease-in all;
    font-size: 35px !important;
    background-color: #1f3c8d !important;
}

.gallery__slider__section .gallary__slider .owl-nav .owl-prev:hover,
.gallery__slider__section .gallary__slider .owl-nav .owl-next:hover {
    color: #1f3c8d;
    background-color: red;
}

.gallery__slider__section .gallary__slider .owl-nav .owl-prev .fa,
.gallery__slider__section .gallary__slider .owl-nav .owl-next .fa {
    font-size: 35px;
}

.slogan_image {
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
}

.slogan_image .slogan__cover {
    background: #00000069;
    padding: 100px 0;
}

.slogan_image .slogan__cover h2 {
    color: white;
    font-size: 35px;
    text-align: center;
}

.nav-pills .nav-link {
    border-radius: 0.25rem;
    background: #1f3c8d;
    border-radius: 0;
    color: white;
    border-right: 1px solid white;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #41a5d5;
    transition: 200ms ease-in-out all;
    border: 1px solid #41a5d5;
    border-right: 1px solid white;
}

.contact_form {
    box-shadow: 0px 1px 20px #cbcbdc;
    padding: 15px;
    border-radius: 20px;
}

.contact_form .form-control {
    width: 100%;
    outline: none;
    padding: 5px;
    margin-bottom: 5px;
    resize: none;
}

.breadcrumb__header {
    background-color: #41a5d5c7;
    padding: 15px 0;
}

.breadcrumb__header ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    margin: 0;
}

.breadcrumb__header ul li {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.breadcrumb__header ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: block;
    content: "";
    color: white;
    font-weight: 900;
    transition: all 0.25s ease;
    font-family: "FontAwesome";
}

.breadcrumb__header ul li a {
    text-decoration: none;
    color: #1f3c8d;
}

.list__box {
    box-shadow: 0px 1px 40px #dcc9c99e;
}

.list__box .list__heading {
    font-size: 25px;
    color: #fff;
    background: #1f3c8d;
    padding: 0px 20px;
}

.height_manage {
    height: 100% !important;
}

.video_main_block {
    position: relative;
}

.video_main_block .watch_section_video {
    position: relative;
}

.video_main_block .watch_section_video a {
    color: white;
}

.video_main_block .watch_section_video img {
    width: 100%;
    height: auto;
}

.video_main_block .watch_section_video .play_button {
    position: absolute;
    align-content: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    display: flex;
}

.video_main_block .watch_section_video .play_button .play_background {
    padding: 12px 25px;
    background-color: #0000008f;
    border-radius: 12px;
}

.video_main_block .watch_section_video .play_button .play_background .play_button i.fa {
    font-size: 25px;
    color: white !important;
}

.video_main_block .watch_section_video:hover .play_background {
    background-color: red;
}

.video_watch h3 {
    font-size: 20px;
    color: #f22b01;
    position: relative;
    padding-bottom: 15px;
}

.video_watch h3::before {
    position: absolute;
    height: 2px;
    width: 30%;
    background-color: #f22b01;
    display: block;
    bottom: 0;
    left: 0;
    content: "";
}

.video_watch p {
    font-size: 18px;
}

.video_watch .watch_video_inner iframe {
    width: 100%;
}

@media (min-width: 992px) {
    .video_watch .watch_video_inner iframe {
        min-height: 500px;
    }
}

.video__inner h1 {
    font-size: 35px;
    color: #1f3c8d;
    font-weight: 400;
    text-shadow: 0px 1px 2px #1f3c8d;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 0px;
}

.writer__detail {
    padding: 5px 15px;
    margin-bottom: 30px;
    background-color: #1f3c8d;
}

.writer__detail li {
    display: inline-block;
    padding-right: 15px;
    color: #fff;
    font-size: 15px;
}

.writer__detail li i {
    padding-right: 10px;
}

.gallery-style {
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #000000;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0.5%;
    height: 100%;
    position: relative;
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #f79d00, #64f38c) repeat scroll 0% 0%;
}

.gallery-style *,
.gallery-style *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.gallery-style img {
    width: 100%;
    height: 100%;
    vertical-align: top;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.gallery-style figcaption {
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

.gallery-style h3 {
    font-size: 20px;
    margin: 0;
    padding: 0 20px;
    text-transform: uppercase;
    color: #fff;
}

.gallery-style i {
    font-size: 40px;
    position: absolute;
    bottom: 0%;
    right: -1px;
    -webkit-transform: translate(0%, 100%);
    transform: translate(0%, 100%);
    opacity: 0;
    line-height: 60px;
    width: 60px;
    color: #fff;
    background-color: #000000;
}

.gallery-style a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-style:hover figcaption,
.gallery-style.hover figcaption {
    opacity: 1;
}

.gallery-style:hover img,
.gallery-style.hover img {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery__image__view {
    background-color: #000;
    color: #fff;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    margin: 8px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}

.gallery__image__view * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.gallery__image__view:before,
.gallery__image__view:after {
    background: linear-gradient(45deg, rgba(73, 155, 234, 0.5) 10%, rgba(26, 188, 156, 0.5) 100%);
    border-top: 50px solid rgba(0, 0, 0, 0.5);
    border-bottom: 50px solid rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    opacity: 0;
}

.gallery__image__view:before {
    -webkit-transform: scaleY(2);
    transform: scaleY(2);
}

.gallery__image__view:after {
    -webkit-transform: scaleY(2);
    transform: scaleY(2);
}

.gallery__image__view img {
    vertical-align: top;
    max-width: 100%;
    backface-visibility: hidden;
}

.gallery__image__view figcaption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1em;
    opacity: 0;
    z-index: 2;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.gallery__image__view h3 {
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.gallery__image__view h3 span {
    display: block;
    font-weight: 700;
}

.gallery__image__view a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.gallery__image__view:hover>img,
.gallery__image__view.hover>img {
    opacity: 0.7;
}

.gallery__image__view:hover:before,
.gallery__image__view.hover:before,
.gallery__image__view:hover:after,
.gallery__image__view.hover:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.gallery__image__view:hover figcaption,
.gallery__image__view.hover figcaption {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.national__members {
    margin-top: 15px;
}

.national__members .member__wrapper {
    margin-bottom: 25px;
}

.national__members .member__wrapper img {
    width: 100%;
    height: 100%;
}

.national__members .member__wrapper .national__member__detail {
    text-align: center;
}

.national__members .member__wrapper .national__member__detail h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    color: #1f3c8d;
}

.national__members .member__wrapper .national__member__detail h5 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.national__members .member__wrapper .national__member__detail p {
    font-size: 14px;
    margin: 0;
}

.national_committee {
    margin-top: 15px;
}

.national_committee .member__wrapper {
    margin-bottom: 25px;
    position: relative;
    border: 4px solid #b1d5e6;
    border-radius: 20px 0;
    overflow: hidden;
    box-shadow: 0px 5px 40px #637eca3d;
    transition: 500ms ease-in-out all;
}

.national_committee .member__wrapper img {
    width: 100%;
    height: 100%;
}

.national_committee .member__wrapper .national__member__detail {
    text-align: center;
    position: absolute;
    bottom: 0;
    background: #1f3c8dab;
    width: 100%;
    padding: 5px;
    color: white;
    opacity: 0;
}

.national_committee .member__wrapper .national__member__detail h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.national_committee .member__wrapper .national__member__detail h5 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.national_committee .member__wrapper:hover {
    border-radius: 0;
    transition: 500ms ease-in-out all;
    border-color: #1f3c8d;
}

.national_committee .member__wrapper:hover .national__member__detail {
    opacity: 1;
    animation: fadeInLeft 500ms 1;
}

.national_committee .member__wrapper:hover .national__member__detail h5 {
    animation: fadeInLeft 500ms 1;
    opacity: 1;
}

.detail__news_section .banner__image a img {
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width: 580px) {
    .detail__news_section .banner__image a img {
        max-width: 100%;
    }
}

.detail__news_section .news__paragraph {
    word-break: break-all;
}

.detail__news_section .news__paragraph img {
    max-width: 100%;
}

.detail__news_section .news__paragraph p {
    font-size: 20px;
    line-height: 200%;
}

.detail__news_section .news__paragraph p img {
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .detail__news_section .news__paragraph p img {
        width: 100% !important;
        height: 100% !important;
    }
}

.detail__news_section .news__paragraph iframe {
    min-width: 500px;
    min-height: 400px;
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 768px) {
    .detail__news_section .news__paragraph iframe {
        width: 100% !important;
        min-width: 100%;
        min-height: auto;
    }
}

.detail__news_section .news__paragraph table {
    width: 100%;
    border: 1px solid #eae3e3;
    font-size: 14px;
    margin-top: 20px;
}

.detail__news_section .news__paragraph table thead th {
    padding: 5px 15px;
    border: 1px solid #eae3e3;
}

.detail__news_section .news__paragraph table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.25);
}

.detail__news_section .news__paragraph table tbody tr td {
    padding: 10px 15px;
    border: 1px solid #eae3e3;
}

.detail__news_section .news__paragraph table tbody tr td ul li {
    margin-bottom: 5px;
}

.detail__news_section .news__paragraph table tbody tr td ul li .btn__show {
    border: none;
    box-shadow: 0px 0px 2px #1b75bb;
    background-color: #1b75bb;
    color: white;
    padding: 5px 10px;
}

.detail__news_section .news__paragraph table tbody tr td ul li .btn__show:active,
.detail__news_section .news__paragraph table tbody tr td ul li .btn__show:focus,
.detail__news_section .news__paragraph table tbody tr td ul li .btn__show:hover {
    border: none;
    box-shadow: none;
}

.detail__news_section .news__paragraph table tbody tr td .action__btn__list {
    display: flex;
    list-style: none;
}

.detail__news_section .news__paragraph table tbody tr td .action__btn__list li {
    margin-right: 5px;
}

.detail__news_section .news__reaction {
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #e9bebe;
    border-bottom: 1px solid #e9bebe;
}

.detail__news_section .news__reaction p {
    font-size: 25px;
    color: #ec2129;
}

.detail__news_section .news__reaction .reaction__icon {
    text-align: left;
}

.detail__news_section .fb_comment_section {
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #e9bebe;
    border-bottom: 1px solid #e9bebe;
}

.detail__news_section .fb_comment_section p {
    font-size: 25px;
    color: #ec2129;
}


/*# sourceMappingURL=main.css.map */