/* Importaing css */

@import url('https://fonts.googleapis.com/css?family=Titillium+Web:200,200i,300,300i,400,400i,600,600i,700,700i,900&display=swap');

/* 
/   font-family: 'Titillium Web', sans-serif;
*/

* {
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Titillium Web', sans-serif;
    font-size: 14px;
    overflow: hidden;
}

.container {
    max-width: 1104px;
    margin: auto;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Titillium Web', sans-serif;
}

.dFlx {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #0067af;
    font-size: 16px;
    font-weight: 300;
    opacity: 1;
    /* Firefox */
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #0067af;
    font-size: 16px;
    font-weight: 300;
}

 ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #0067af;
    font-size: 16px;
    font-weight: 300;
}


/* header */

header {}

header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.top_header {
    background: #0067af;
}

.top_header .container {
    position: relative;
}

header a {
    text-decoration: none;
    font-size: 14px;
    line-height: auto;
    color: #fff;
    padding: 19px 20px;
    display: block;
    font-weight: 600;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}

.top_header nav>ul>li:hover {
    background: #034d7a
}

.bottom_header {
    padding: 15px 0;
    background: #7e9ed1;
}

.bottom_header h2 {
    font-size: 24px;
    line-height: 28px;
    color: #e0e5f3;
    font-weight: 300;
    padding-left: 15px;
}

.bottom_header .container {
    justify-content: space-between;
    align-items: center;
}

.searchArea {
    justify-content: space-between;
    align-items: center;
}

.searchArea input {
    width: 327px;
    height: 35px;
    border-radius: 5px;
    background: #adc1e2;
    border: none;
    padding-left: 15px;
    outline: none;
    color: #0067af;
    font-size: 16px;
    font-weight: 300;
}

.searchArea input[type=submit],
.searchArea button[type=submit] {
    background: transparent;
    border: none;
    width: 55px;
    text-align: center;
    outline: none;
    border-radius: 5px;
    margin-left: 5px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}

.searchArea input[type=submit]:hover,
.searchArea button[type=submit]:hover {
    background: #0067af;
}

.searchArea button[type=submit]:hover img {
    filter: brightness(200);
    -webkit-filter: brightness(200);
    -moz-filter: brightness(200);
}

.menu {
    position: absolute;
    width: 100%;
    height: calc(100vh - 127px);
    background: #fff;
    left: 0;
    display: none;
    overflow: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    z-index: 9;
}

.menu>ul>li {
    padding-right: 140px;
}

/*.top_header ul li:hover .menu {
    display: block;
}*/

.menu>ul {
    padding: 30px;
    padding-right: 0;
    background: #fff;
    max-width: 50%;
    position: relative;
    z-index: 9;
}

.menu>ul>li ul {
    position: absolute;
    visibility: hidden;
    left: 90%;
    opacity: 0;
    top: 0;
    /*height: 1000px;*/
    background: #fff;
    min-width: 276px;
/*    padding: 30px;*/
    padding-top : 30px;
    padding-right: 0;
/*    border-left: 1px solid #7e9ed1;*/
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.menu>ul>li>ul li {
    border-left: 1px solid #7e9ed1;
    padding-left: 30px;
}

.menu>ul>li:hover>ul,
.menu>ul>li:hover>ul>li:hover>ul {
    left: 100%;
    opacity: 1;
    visibility: visible;
}

.menu a {
    color: #0067b0;
    padding: 10px 0;
    font-weight: 400;
}

.menu a img {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transform: translateY(4px);
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    margin-left: 12px;
    max-width: 16px;
    max-height: 16px;
}

.menu ul>li:hover>a {
    background: transparent;
    color: #7e9ed1
}

.menu ul>li:hover>a img {
    opacity: .5;
}

.gotoTop {
    user-select: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 27px;
    background: rgba(128, 158, 209, .5);
    z-index: 99;
    text-align: center;
    padding-top: 3px;
    cursor: pointer;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    display: none;
}

.gotoTop:hover,
.gotoBottom:hover {
    background: rgba(128, 158, 209, 1);
}

.gotoBottom {
    user-select: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 27px;
    background: rgba(128, 158, 209, .5);
    z-index: 99;
    text-align: center;
    padding-top: 3px;
    cursor: pointer;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    display: none;
}

.show {
    display: block;
}

.gotoTop.inner {
    top: 0;
    left: 100%;
}

.gotoBottom.inner {
    left: 100%;
}


/* typography */

.typography {
    height: calc(100% - 223px);
    overflow: auto;
    padding-top: 38px;
    background-image: linear-gradient(#fff 35%, #e3e7f4 65%);
}

.typography .items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.typography .items ul li:after {
    content: '';
    display: block;
    clear: both;
}

.typography .items ul li a {
    text-decoration: none;
    color: #0067b0;
    max-width: 75%;
    vertical-align: top;
    display: inline-block;
    line-height: 18px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.typography .items ul li {
    margin-bottom: 7px;
}

.typography .items ul li:last-child {
    margin-bottom: 0
}

.typography .items ul li a:hover {
    text-decoration: underline;
    font-weight: 600
}

.typography .items {
    display: inline-block;
    width: 33%;
    max-width: 345px;
    padding: 20px;
    background: #fff;
    text-align: left;
    min-height: 412px;
    border-bottom: 4px solid #00b0a1;
}

.typography .items:first-child {
    float: left;
}

.typography .items:last-child {
    float: right;
}

.typography .item_heading {
    margin-bottom: 15px;
}

.typography .item_heading h2 {
    display: inline-block;
    vertical-align: middle;
    font-size: 30px;
    line-height: auto;
    font-weight: 300;
    color: #00b0a1;
}

.typography .item_heading img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px;
    max-width: 33px;
}

.typography span.time {
    margin-right: 15px;
    vertical-align: top;
    font-size: 10px;
    color: #626366;
    font-weight: 400;
    display: inline-block;
}

/*.typography .container {
    text-align: center
}*/

.typography .homepage {
    text-align: center
}

.typography .container:after {
    content: '';
    display: block;
    clear: both;
}

.typography .items:nth-of-type(2) .item_heading h2 {
    color: #0067b0;
}

.typography .items:nth-of-type(2) {
    border-color: #0067b0;
}

.typography .items:last-child .item_heading h2 {
    color: #4f3996;
}

.typography .items:last-child {
    border-color: #4f3996;
}

.typography .items.links ul li,
.typography .items.my_shortcuts ul li {
    margin-bottom: 15px
}

.typography .items.links ul li:last-child,
.typography .items.my_shortcuts ul li:last-child {
    margin-bottom: 0
}

.typography .items.links ul li a,
.typography .items.my_shortcuts ul li a {
    display: block;
    font-size: 16px;
    color: #0067b0;
    font-weight: 700;
    max-width: 100%;
}

.typography .items.links ul li span,
.typography .items.my_shortcuts ul li span {
    color: #626366;
    font-size: 14px;
    display: block;
    line-height: 15px;
}


/* form page */

.typography .form_page {
    height: 100%;
    background: #fff;
    padding-left: 15px;
    overflow: auto;
    padding-bottom: 30px;
}

.typography .breadcrumbs {
    text-align: left;
    float: left;
}

.typography .breadcrumbs a {
    text-decoration: none;
    text-transform: capitalize;
    color: #0067af;
    margin-right: 5px;
    display: inline-block;
}

.typography .breadcrumbs a:hover {
    text-decoration: underline
}

.typography .breadcrumbs span {
    color: #7e9ed1;
    margin-left: 5px
}

.typography .extraBodyHead:after {
    content: '';
    display: block;
    clear: both;
}

.typography .add_shortcut {
    min-width: 150px;
    cursor: pointer;
    padding: 10px 22px;
    border-radius: 5px;
    background: #663399;
    color: #fff;
    text-decoration: none;
    text-align: center;
    float: right;
    border: 1px solid #663399;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}

.typography .add_shortcut:hover {
    background: #0067af
}

.typography .add_shortcut.disabled {
    background: #0db1a1;
    cursor: no-drop;
    border-color: #0db1a1;
}

.typography h1 {
    font-size: 30px;
    line-height: normal;
    margin: 20px 0 20px 0;
    color: #006699;
    font-weight: 400;
    text-align: left
}

.typography h2 {
    font-size: 18px;
    line-height: normal;
    color: #231f20;
    font-weight: 400;
    text-align: left
}

.typography h3 {
    font-size: 16px;
    line-height: normal;
    color: #231f20;
    font-weight: 400;
    text-align: left
}

.typography h3 a {
    text-decoration: none;
    color: #0067af
}

.typography h3 a:hover {
    color: #034d7a
}

.typography h4 {
    font-size: 14px;
    line-height: normal;
    color: #231f20;
    font-weight: 600;
    text-align: left;
    margin-top: 22px;
    padding-left: 15px;
    margin-bottom: 10px;
}

.typography p {
    color: #666666;
    font-size: 14px;
    line-height: normal;
    text-align: left;
    margin: 10px 0
}

.typography .formContainer form {
    text-align: left;
    margin-top: 30px;
    display: inline-block
}

.typography .formContainer form>input {
    width: 400px;
    height: 35px;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #adc1e2;
    display: block;
    padding-left: 15px;
    margin-bottom: 15px;
    color: #7e9ed1;
    font-size: 14px;
    font-weight: 300;
    outline: none
}

.typography .formContainer ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #7e9ed1;
    font-size: 14px;
    font-weight: 300;
    opacity: 1;
    /* Firefox */
}

.typography .formContainer :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #7e9ed1;
    font-size: 14px;
    font-weight: 300;
}

.typography .formContainer ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #7e9ed1;
    font-size: 14px;
    font-weight: 300;
}

.typography .levels input[type=radio], .typography .levels input[type=checkbox] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.typography .levels {
    float: left;
}

.typography .levels .checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid #7e9ed1;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
}

.typography label {
    color: #666666;
    font-weight: 400
}

.typography .formContainer {
    text-align: left
}

.typography .levels input[type=radio]:checked~.checkmark , .typography .levels input[type=checkbox]:checked~.checkmark {
    background: #7e9ed1 url(../images/icn_tick.png) center center no-repeat;
    background-size: 80%;
}

.typography .levels label:first-child input[type=radio]:checked~.checkmark , .typography .levels label:first-child input[type=checkbox]:checked~.checkmark {
    background: #7e9ed1 url(../images/icn_tick.png) center center no-repeat;
    background-size: 80%;
}

.typography .levels label:first-child {
    margin-right: 25px;
}

.typography .levels label:last-child .checkmark {
    margin-right: 15px;
}

.typography form input[type=submit] {
    width: 100px;
    height: 30px;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    background: #7e9ed1;
    padding: 0;
    float: right;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}

.typography form input[type=submit]:hover {
    background: #034d7a
}

.typography .form_page ul {
    text-align: left;
    list-style: none;
    /* Remove default bullets */
    padding-left: 30px;
}

.typography .text-left {
    text-align: left;
}

.typography .text-center {
    text-align: center;
}

.typography .text-justify {
    text-align: justify;
}

.typography .form_page ol {
    text-align: left;
    /* Remove default bullets */
    padding-left: 30px;
}

.typography .form_page ol li::before {
    color: #0067af;
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
}

.typography .form_page ul li::before {
    content: "\2022";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #0067af;
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
}

.typography .form_page a {
    text-decoration: none;
    color: #0067af;
}

.typography .form_page ul a {
    text-decoration: none;
    color: #0067af;
}

.typography .form_page ol a {
    text-decoration: none;
    color: #0067af;
}

.typography .form_page ol a:hover {
    text-decoration: underline
}

.typography .form_page ul a:hover {
    text-decoration: underline
}

.typography .form_page a:hover {
    text-decoration: underline
}

.typography .form_page ul.files {
    padding-left: 0
}

.typography .form_page ul.files li {
    margin: 10px 0
}

.typography .form_page ul.files li:before {
    display: none;
}

.typography .form_page ul.files li span {
    font-size: 10px;
    color: #010101;
    font-weight: 600;
    margin-left: 15px;
}


/* Footer */

footer {
    background: #0067af;
    padding: 20px 0;
    position: relative;
    z-index: 9;
    color: #fff;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none
}

footer .container {
    justify-content: space-between;
    align-items: center
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 0 16px;
    border-right: 2px solid #fff;
    line-height: 14px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}

footer li:last-child a {
    border: none
}

.logoArea {
    display: none;
}

#responsiveHabmargur {
    display: none;
}

.mobile_arrow {
    display: none;
    cursor: pointer !important;
}

.top_header .searchArea {
    display: none;
}

.menu a:hover {
    text-decoration: underline;
}


/* .typography {
    padding-bottom: 30px;
} */

footer a {
    border-right: 0px solid #fff;
}

.change_text:hover,
.change_text:active {
    background: #0db1a1 !important;
    border-color: #0db1a1 !important;
}

/*.footer_logo img {
    width: 180px;
}*/


/* 16-8-2019 */

a#mobileSearchIcon {
    position: absolute;
    right: 90px;
    top: 0;
    padding-top: 13px;
    display: none;
}

a#mobileSearchIcon i {
    font-size: 36px;
}

.typography .items.latest_news li {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.typography .items.latest_news li a {
    font-weight: 700 !important
}

.pagination ul {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    list-style: none;
    padding: 0;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 100%;
}

.pagination ul li a,
.pagination ul li.pages {
    display: block;
    text-decoration: none;
    font-size: 16px;
    color: #0067af;
    padding: 0 4px;
}

.pagination ul li.pages.current,
.pagination ul li.pages.current a {
    font-weight: 600
}

.pagination ul li a img {
    display: block;
}

.pagination {
    height: 75px;
}
.checkbox_wid{
    margin-top: 8px;
}

.arrow {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transform: translateY(4px);
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    margin-left: 12px;
    max-width: 16px;
    max-height: 16px;
}

.sub_menu {
    height: calc(100vh - 127px);
}

.gotoTop.inner:hover,
.gotoBottom.inner:hover {
    background: rgba(128, 158, 209, 1);
}
