@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --blue: #0A4994;
    --textColor: #383838;
    --orange: #ff713b;
    --yellow: #f7a90b;
}

a:hover {
    color: var(--blue);
}

html {
    font-size: 13px;
}

body {
    margin: 0;
    padding: 0;
    color: var(--textColor);
    font-weight: 400;
    line-height: normal;
    font-family: 'Inter', sans-serif;
}

@media screen and (min-width:1440px) {
    html {
        font-size: 14px;
    }
}

@media screen and (min-width:1600px) {
    html {
        font-size: 16px;
    }
}

header {
    top: 0px;
    position: fixed;
    width: 100%;
    background: var(--white);
    padding-bottom: 0.9rem;
    z-index: 9999;
    border-bottom: 1px solid #ccc;
    transition: all 0.2s ease-in-out;
}

header.fixedHeader {
    padding-bottom: 0.5rem;
}

header.fixedHeader .mainBar {
    padding-top: 0.5rem;
}

header.fixedHeader .topBar {
    height: 0px;
    padding: 0px;
    overflow: hidden;
}

.bold-500 {
    font-weight: 500;
}

.bold-600 {
    font-weight: 600;
}

.bold-700 {
    font-weight: 700;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ol {
    margin: 0;
    padding: 0;
}

.topBar {
    background: rgba(10, 73, 148, 0.15);
    font-size: 13px;
    text-align: center;
    padding: 2px 30px;
    position: relative;
    transition: all 0.2s ease-in-out;
    /* margin-bottom: 1.2rem; */
}

p {
    line-height: 20px;
}

.extraNews {
    display: none;
    position: fixed;
    background: #f7a90b;
    top: 0px;
    left: 0px;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;

    z-index: 99;
    color: #fff;
    font-weight: bold;
    overflow: hidden;
}

.extraNews p {
    padding-bottom: 10px;
    border-bottom: 1px dashed #ffedc8;
}

.extraNews p:last-child {
    margin-bottom: 0px;
}

.closeNews {
    background: #fff;
    border-radius: 20px;
    color: var(--orange);
    padding: 10px 25px;
    border: none;
    font-weight: bold;
}

.closeNews:hover {
    background: var(--orange);
    color: var(--white);
}

.socialFrame {
    width: 360px;
}

.youTubeFrame {
    padding-left: 20px;
}

@media screen and (min-width:768px) {
    .mainBar {
        padding-top: 1.2rem;
    }
}


.topBar::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0;
    height: 0;
    border-bottom: 30px solid #fff;
    border-right: 30px solid transparent;
}

.topBar::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0;
    height: 0;
    border-bottom: 30px solid #fff;
    border-left: 30px solid transparent;
}

.topBar strong {
    font-weight: normal;
}

.topBar strong,
.topBar a {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    color: var(--blue);
}

.topBar span.closeBtn {
    position: absolute;
    right: 40px;
    top: 3px;
    display: block;
    cursor: pointer;
    font-weight: bold;
}

.navbar {
    align-items: center;
    justify-content: flex-end;
    /* transform: translateY(-10px); */
}

@media screen and (min-width:992px) {
    .navbar {
        min-width: 770px;
    }
}

.menu {
    display: flex;
    flex-wrap: wrap;
}

.navbar ul li {
    flex: 0 0 auto;
    width: auto;
    /* position: relative; */
}

.navbar ul li a {
    padding: 0px 15px;
    transition: all 0.2s ease-in-out;
}

.navbar ul li li a {
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
}

.navbar ul li ul.mainList li a {
    color: var(--blue);
    font-weight: 600;
    border-bottom: 1px solid #e7e7e7;
}

.navbar ul li div.subMenuContainer .tabMenuList a {
    border-bottom: none;
}

.tabMenuList .pic {
    width: 150px;
}

.tabMenuList .pic img {
    width: 100%;
}

.navbar ul li ul.mainList li a:hover {
    color: var(--white);
}

.navbar ul li li a {
    position: relative;
}

/*.navbar ul li ul.mainList li a::after {*/
/*    content: "\f231";*/
/*    display: inline-block;*/
/*    font-family: bootstrap-icons !important;*/
/*    font-style: normal;*/
/*    font-weight: normal !important;*/
/*    font-variant: normal;*/
/*    text-transform: none;*/
/*    line-height: 1;*/
/*    vertical-align: -0.125em;*/
/*    -webkit-font-smoothing: antialiased;*/
/*    -moz-osx-font-smoothing: grayscale;*/
/*    position: absolute;*/
/*    right: 8px;*/
/*    top: 16px;*/
/*    font-size: 0.8rem;*/
/*}*/
/*SB Changes starts 15052023*/
.navbar ul li ul.mainList .mainListArrow a::after {
    content: "\f231";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 8px;
    top: 16px;
    font-size: 0.8rem;
}
.navbar ul li ul.mainList li a::after{
    content: "\f229";
    display: none;
}
/*SB Changes ends 15052023*/
/*.navbar ul li ul.mainList li:first-child .tabMenuList {*/
/*    display: block;*/
/*}*/

.navbar ul li.submenu a {
    position: relative;
}

.navbar ul li.submenu a::after {
    content: "\f229";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 0px;
    top: 5px;
    font-size: 0.8rem;
}

.navbar ul li.submenu>a::before {
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    background: var(--orange);
    position: absolute;
    left: 20px;
    bottom: -5px;
    transition: all 0.2s ease-in-out;
}

.navbar ul li.submenu:hover>a::before {
    width: calc(100% - 40px);
}

.tabMenuList {
    position: relative;
    display: none;
}

@media(min-width:769px) {
    .tabMenuList ul {
        -moz-column-count: 2;
        column-count: 2;
        max-width: 500px;
    }

    .tabMenuList li {
        /*width: 200px !important;*/
    }
}

/* .tabMenuList li{
    display: block;
} */

.tabMenuList li a {
    padding: 10px !important;
    color: #000;
    font-weight: 600;
}

.tabMenuList li a:hover {
    background: none !important;
    color: var(--orange) !important;
}

/* ul.tabMenuList:nth-child(2){
    display: block;
} */

.menuTableData {
    display: table;
}

.menuTableData>div {
    display: table-cell;
    vertical-align: middle;
    padding: 0px 10px;
}

.menuTableData>div p:last-child {
    margin-bottom: 0px;
}

.tabMenuList li a::after {
    display: none !important;
}

.tabMenuList li {
    /* display: inline-block; */
}

.navbar ul ul {
    background: var(--white);
}

.navbar ul li div.subMenuContainer {
    display: none;
    position: relative;
    padding-bottom: 30px;
}

/****** 19 apr 2023 ******/
.navbar ul li div.subMenuContainer>div {
    background: var(--white);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.5);
    border-top: 1px solid #e7e7e7;
    padding: 15px;
    padding-bottom: 3.5rem;
    /* height: 100%; */
    display: flex;
    flex-wrap: wrap;

}

.overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.mainList {
    display: inline-block;
    border-right: 1px solid #e7e7e7;
    padding-right: 20px;
}

/* .mainList li:first-child .tabMenuList{
    display: block;
} */

.navbar ul li.submenu a.learnMoreBtn {
    display: table !important;
    padding: 10px 35px 10px 25px !important;
    background: var(--orange);
    color: var(--white);
    border-radius: 20px;
}

.navbar ul li.submenu a.learnMoreBtn:hover {
    background: var(--blue);
}

.navbar ul li.submenu a.learnMoreBtn::after {
    top: 13px;
    right: 10px;
}

.subMenuContainer h3 {
    color: var(--blue);
    font-weight: 300;
}

.defaultSlide h5 {
    color: var(--black);
}

.defaultSlide h5.blueColor {
    color: var(--blue);
}
a.newReadMore {
    color: var(--blue) !important;
    padding: 0px !important;
    font-weight: 600;
    position: absolute !important;
    left: 20px;
    bottom: 10px;
}

a.newReadMore i {
    color: var(--orange);
    display: inline-block;
    vertical-align: middle;
    transform: translateX(0px);
    position: relative;
    margin-left: 5px;
    transition: all 0.2s ease-in-out;
}

a.newReadMore:hover i {
    transform: translateX(10px)
}

a.newReadMore::after {
    display: none !important;
}

@media(min-width:769px) {

    .mainList {
        /* padding-right: 0px; */
        width: 100%;
        /* border-right: 1px solid #e7e7e7; */
    }

    .navbar ul li div.subMenuContainer {
        position: fixed;
        width: 100%;
        top: 70px;
        left: 0px;
        padding-top: 32px;

        padding-bottom: 5px;
        z-index: 99;
        display: none;
        opacity: 0;
        max-height: 0px;

        /* min-height: 300px; */
        overflow: hidden;
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease-in-out;
    }

    .navbar ul li:hover div.subMenuContainer {
        display: block;
        opacity: 1;
        max-height: 2000px;

    }


    .fixedHeader .navbar ul li div.subMenuContainer {
        top: 25px;
    }
}

.navbar ul li a {
    color: var(--black);
    display: block;
}


.navbar ul li a:hover {
    color: var(--orange);
}

.navbar ul ul a:hover {
    background: var(--blue);
    color: var(--white);
}

.navbar ul ul ul a:hover {
    background: var(--orange);
    color: var(--white);
}

.navbar ul ul ol {
    margin: 0px;
    padding: 0px;
}

.navbar ul ul ol li {
    display: inline-block;
    list-style-type: disc;
}

.navbar ul ul ol li a {
    color: var(--black) !important;
}

.navbar ul ul ol li a:hover {
    background: #f1f1f1;
}

@media screen and (min-width:1366px) {
    .navbar ul li a {
        padding: 0px 20px;
    }

    .navbar ul ul {
        left: 25px;
        min-height: 60px;
        /*min-height: 200px;*/
    }
}

.searchBar {
    cursor: pointer;
    /* padding: 0px 15px; */
}

.login {
    /* margin: 0px 15px; */
    padding: 0px 8px 2px;
    border-radius: 15px;
    border: 1px solid var(--yellow);
    color: var(--yellow);
}

.login .bi-caret-down-fill {
    font-size: 0.8rem;
    margin-left: 10px;
}

/* .login i{
    display: inline-block;
    vertical-align: middle;
} */

.menuIcon {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    /*max-width: 135px;*/
    max-width: 400px;
    width: 100%;
    vertical-align: middle;
}

.fixedHeader .logo img {
    /*max-width: 100px;*/
    max-width: 250px;
}

.logoName {
    font-size: 0.9rem;
    color: #151616;
    font-weight: 600;
    display: none;
}

.logoName span {
    font-style: italic;
    font-size: 0.7rem;
    display: block;
    padding-top: 5px;
    font-weight: normal;
}

@media(max-width:575px) {
    .logoName {
        font-size: 0.7rem;
    }

    .logoName span {
        font-size: 0.6rem;
    }

    .logo img {
        /*max-width: 100px;*/
        max-width: 230px;
    }
}

/******************************************/

.blueButton {
    background: #f7a90b;
    border-radius: 15px;
    padding: 5px 15px;
    color: var(--white);
    display: table;
    text-align: center;
}

.blueButton.longBtn {
    padding: 5px 25px;
}

.lightBlueBg {
    background: rgba(10, 73, 148, 0.15);
}

.readMore {
    color: var(--blue);
}

.readMore:hover {
    color: var(--orange);
}

.blueButton:hover {
    background: var(--orange);
    color: var(--white);
}

h1 {
    font-size: 1.8rem;
    color: var(--blue);
}

.dashedBorder {
    border-top: 1px dashed #789bc4;
}

.bottomBlackBorder {
    border-bottom: 1px solid var(--black);
}

.footerLink li {
    display: inline-block;
    margin-right: 20px;
}

.footerLink li a {
    color: var(--black);
}

.footerLink li a:hover {
    color: var(--orange);
}

.footerLink li:last-child {
    margin-right: 0px;
}

.socialIcons {
    text-align: right;
}

.socialIcons a {
    display: inline-block;
    margin-right: 15px;
    transform: scale(1);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
        width: 30px;
}

.socialIcons a:hover {
    transform: scale(1.01);
}

.socialIcons a:last-child {
    margin-right: 0px;
}

.copyright {
    color: var(--black);
}
.socialIcons a img {
    width: 100%;
}
.bottomLinks li {
    display: inline-block;
    margin: 0px 5px;
}

.bottomLinks li a {
    color: var(--black);
}

.bottomLinks li a:hover {
    color: var(--orange);
}

.menuClose {
    display: none;
}

/**************************/

.searchBarContainer {
    background: var(--blue);
    display: none;
}

.mainSearch input[type="search"] {
    width: 80%;
    max-width: 400px;
    height: 50px;
    border: none;
    padding: 0px 20px;
    outline: none;
    font-size: 1.2rem;
}

.mainSearch input[type="search"],
.mainSearch button {
    vertical-align: top;
}

.mainSearch button {
    width: 50px;
    height: 50px;
    border: none;
}

.mainSearch button:hover {
    background: var(--black);
    color: var(--orange);
}

.mainSearch button i {
    font-size: 1.3rem;
}

.searchClose {
    text-align: center;
    color: var(--white);
    font-size: 1.3rem;
    padding-top: 10px;
    display: table;
    margin: 0 auto;
    cursor: pointer;
}


.subscribe {
    position: relative;
}

.subscribe input[type='text'] {
    width: 100%;
    border: 1px dashed #ccc;
    padding: 0px 15px;
    padding-right: 155px;
}

.subscribe input[type='text']:focus {
    outline: none;
    border: 1px dashed #ccc;
}

.footerHeading {
    color: #0a4a94;
}

.subscribe button {
    background: #0a4a94;
    color: #fff;
    border: none;
    outline: none;
    padding: 0px 25px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.subscribe button:hover {
    background: var(--yellow);
}

.subscribe input[type='text'],
.subscribe button {
    height: 40px;
}

.testiBox {
    background: var(--white);
    box-shadow: 0px 0px 10px #ccc;
    padding: 25px 15px;
    border-radius: 5px;
}

h4 {
    line-height: normal;
    font-weight: 600;
}

/*.sliderContainer {*/
/*    display: none;*/
/*}*/

@media(min-width:1200px) {
    .px-lg-5 {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
}

@media(min-width:1600px) {
    h1 {
        font-size: 2.3rem;
    }

    .px-lg-5 {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }
}

@media(min-width:1800px) {
    .px-lg-5 {
        padding-left: 8rem !important;
        padding-right: 8rem !important;
    }
}

@media(max-width:1200px) {

    .navbar ul li,
    .searchBar {
        padding: 0px 10px;
    }

    .login {
        margin: 0px 10px;
    }
}

@media(max-width:991px) {


    .socialIcons {
        text-align: left;
    }

    .topBar {
        margin-bottom: 5px;
    }

    .topBar strong,
    .topBar a {
        display: inline;
    }

    .navbar {
        justify-content: flex-start;
    }

    .topBar::before,
    .topBar::after {
        display: none;
    }

    .topBar span.closeBtn {
        right: 10px;
    }

    .menu {
        padding-top: 5px;
    }
}

@media screen and (max-width:768px) {
    .navbar ul li.submenu>a::before {
        display: none;
    }

    .navbar ul li {
        padding: 0px;
    }

    .menuTableData>div {
        display: block;
    }

    .tabMenuList .pic {
        margin-bottom: 10px;
    }

    .mainList {
        display: inline-block;
        border-right: none;
        padding-right: 0px;
    }

    .navbar ul li ul.mainList .tabMenuList li a {
        color: var(--black);
    }

    .navbar ul li ul.mainList .tabMenuList ul {
        background: #f1f1f1;
    }

    .sideMenu .tabMenuList {
        display: none;
    }

    .navbar ul li ul.mainList li:first-child .tabMenuList {
        display: none;
    }

    .mainList {
        display: block;
    }

    .navbar ul li ul.mainList li a::after {
        transform: rotate(90deg);
    }

    .navbar ul li div.subMenuContainer {
        background: none;
    }

    .padLR {
        padding-left: 5px;
        padding-right: 5px;
    }

    .navbar ul li>div {
        padding-top: 15px;
    }

    .navbar ul li div.menuTableData {
        padding-top: 0px;
        margin-bottom: 20px;
    }

    .navbar ul li div.menuTableData .pic {
        padding: 0px 10px 0px 0px;
    }

    .navbar ul li div.menuTableData .menuData {
        padding: 0px;
    }

    .menuTableData>div {
        vertical-align: top;
    }

    .navbar ul li.submenu::after {
        right: 10px;
    }

    .tabMenuList {
        position: relative;
        left: 0px;
        top: 0px;
    }

    .searchBar {
        padding: 0px;
    }

    .navContainer {
        margin: 0px;
        width: 100%;
        justify-content: flex-end !important;
    }

    .topBar {
        display: none;
    }

    .menuClose {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 1.2rem;
        line-height: 24px;
        z-index: 9999;
        color: var(--white);
        background: var(--black);
        text-align: center;
        cursor: pointer;
    }

    .menu {
        padding-top: 60px;
        display: block;
        position: fixed;
        max-width: 400px;
        width: 100%;
        height: 100%;
        overflow: auto;
        right: -400px;
        top: 0px;
        background: rgb(218 228 239);
        z-index: 999;
        transition: all 0.2s ease-in-out;
    }

    .menu li {
        margin-bottom: 20px;
    }

    .menu li li {
        margin-bottom: 0px;
    }

    header {
        margin-bottom: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .login {
        margin: 0px 0px;
    }

    .menuIcon {
        display: block;
        font-size: 2rem;
        line-height: 1rem;
        color: var(--black);
    }
}

@media screen and (max-width:575px) {
    .navContainer {
        justify-content: inherit !important;
    }

    .footerLink li {
        margin-bottom: 15px;
    }
}

@media screen and (max-width:400px) {
    .subscribe button {
        padding: 0px 12px;
    }

    .subscribe input[type='text'] {
        padding-right: 122px;
    }
}