
/*----- common css -----*/

* {
    margin:0;
    padding:0;
    font-family: Lato;
    box-sizing: border-box;
}

div {
    position:relative;
}

ul {
    list-style: none;
}

/*.....flex-layout css.....*/

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.f-wrap {
    flex-wrap: wrap;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
/*
.f-auto > *:first-child {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    margin-right: 15px;
}

.l-auto > *:last-child {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    margin-left: 15px;
}

/*.....end.....*/

/*.....Header Css.....*/
.header-section {
    padding: 15px 50px;
}

.menu ul li {
    display: inline-block;
}

.header-menu-items .menu {
    align-items: center;
}

.menu ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    padding-right: 40px;
}

.menu ul li a:hover {
    color: #0F99C5;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}

.custom-dropdown select {
    background-color: #EEF4F4;
    color: #000;
    font-size: 18px;
    padding: 8px 8px 8px 20px;
    border: 0;
    margin: 0;
    border-radius: 5px;
    text-overflow: '';
    -moz-appearance: none;
    -webkit-appearance:none;
    appearance: none;
}

.custom-dropdown select::-ms-expand {
    display: none;
}

.custom-dropdown::before,
.custom-dropdown::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.custom-dropdown::after {
    content: "\25BC";
    height: 1em;
    font-size: .625em;
    line-height: 1;
    right: 1.2em;
    top: 50%;
    margin-top: -.5em;
}

.custom-dropdown::before {
    width: 2em;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 0 5px 5px 0;
    background-color: #EEF4F4;
}

.custom-dropdown::after {
    color: rgba(0,0,0,.6);
}

.custom-dropdown select[disabled] {
    color: rgba(0,0,0,.25);
}

.header-menu-items {
    align-items: center;
}

.button-sign-up {
    color: #1197C4;
    text-decoration: none;
    border: 1px solid #1197C4;
    padding: 8px 30px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    margin-left: 20px;
    text-transform: uppercase;
}

.button-sign-up:hover {
    color: #fff;
    background-color: #1197C4;
}

.button-sign-in {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.button-sign-in:hover {
    color: #1197C4;
}

.sign-in-sign-up {
    position: relative;
    margin-left: 60px;
}

.sign-in-sign-up:before {
    position: absolute;
    content: '';
    background-color: #9C9B9B;
    height: 22px;
    width: 1px;
    left: -30px;
    top: 4px;
}

.banner-section {
    background: url(../images/small-banner.png) repeat-x;
    height: 150px;
}

.search {
    width: 100%;
    position: relative;
    display: flex;
}

.search-term {
    width: 100%;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border-right: none;
    padding: 30px;
    height: 60px;
    border-radius: 50px;
    outline: none;
    color: #9DBFAF;
    font-size: 18px;
    font-weight: 500;
}

.search-term:focus{
    border: #fff;
    background: #fff;
}

.search-button:focus{
    outline: none;
}

.search-button {
    cursor: pointer;
    font-size: 20px;
    border: none;
    position: absolute;
    top: 15px;
    right: 30px;
    background: #fff;
}

.banner-wrapper{
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.left-sidebar {
    flex-basis: 350px;
    max-width: 350px;
    overflow: auto;
    box-shadow: 1px 0 0 rgba(0,0,0,0.06);
    min-width: 350px;
}

.navigation-top-bar {
    height: 50px;
    padding: 15px 0 0 30px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.breadcrumb-top {
    height: 50px;
    padding: 15px 0 0 30px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.navigation-top-bar .navigation-title {
    color: #9C9B9B;
    font-size: 16px;
    font-weight: 500;
}

.navigation-list {
    padding: 30px;
}

.left-sidebar .navigation-list .nav-item {
    color: #424242;
    border-bottom: 1px solid #EEEFF4 ;
}

.left-sidebar .navigation-list .nav-item.active a {
    color: #424242;
    font-size: 16px;
    font-weight: 500;
}

.left-sidebar .navigation-list .nav-item a {
    padding: 15px;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    color: #424242;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    transition: all 0.15s ease-in-out;
}

.left-sidebar .navigation-list .nav-item a:hover {
    color: #424242;
    transition: all 0.15s ease-in-out;
}

.left-sidebar .navigation-list .nav-item a:after {
    position: absolute;
    content: "\f0da";
    top: 45%;
    left: 0;
    height: 14px;
    width: 14px;
    transform: translateY(-50%);
    font-family: FontAwesome;
}

.left-sidebar .navigation-list .nav-item.active a:after {
    content: "\f0d7";
}

.left-sidebar .navigation-list .nav-item a .icon {
    padding-right: 8px;
    display: inline-block;
    height: 18px;
    width: 20px;
    margin-top: 4px;
}

.left-sidebar .navigation-list .nav-item a i + i {
    font-size: 20px;
    color: #747474;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0;
}

.left-sidebar .navigation-list .nav-item .sub-menu-1 {
    display: none;
    margin-left: 4px;
    background-color: rgba(0, 0, 0, .05);
    position: relative;
}

.left-sidebar .navigation-list .nav-item .sub-menu-1:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 4px;
    top: 0;
    left: -4px;
    background-color: #fff;
}

.left-sidebar .navigation-list .nav-item.dropdown.open .sub-menu-1 {
    display: block;
}

.left-sidebar .navigation-list .nav-item .sub-menu-1 .nav-item a {
    padding-left: 38px;
    color: #9C9B9B;
    font-size: 15px;
}

.left-sidebar .navigation-list .nav-item .sub-menu-1 .nav-item a:after{
    display: none;
}

.left-sidebar .navigation-list .nav-item .sub-menu-1 .nav-item a:hover {
    color: #000;
}

.left-sidebar .navigation-list .nav-item .sub-menu-1 .nav-item.active {
    background-color: rgba(0, 0, 0, .05);
}

.left-sidebar .navigation-list .nav-item .sub-menu-1 .nav-item.active a {
    color: #000;
}

/*



.left-sidebar .navigation-list .nav-item.active > a:after,
.left-sidebar .navigation-list .nav-item a:hover:after{
    background: url("../images/arrow-hover.png") no-repeat;
}
.left-sidebar .navigation-list .nav-item.active {
    background-color: #222933;
}
.left-sidebar .navigation-list .nav-item.active a {
    color: #ffffff;
}
.left-sidebar .navigation-list .nav-item.active.dropdown.open > a {
    border-left: 4px solid #1197C4;
}
.left-sidebar .navigation-list .nav-item.active.dropdown.open > a:after {
    transform: translateY(-50%) rotate(-90deg);
}

.left-sidebar .navigation-list .nav-item.active a i + i {
    color: #ffffff;
}
.left-sidebar .navigation-list .nav-item.dropdown.open .sub-menu {
    display: block;
}
.left-sidebar .navigation-list .nav-item .sub-menu .nav-item a {
    padding-left: 38px;
    color: #B7C0CD;
}


*/

.content-wrapper {
    display: flex;
}

.inner-content {
    flex: auto;
}

.breadcrumb-top ul li {
    display: inline;
    margin-right: 15px;
}

.main-content {
    flex-basis: 700px;
    max-width: 700px;
}

.breadcrumb-top ul li a {
    color: #9C9B9B;
    text-decoration: none;
    font-size: 15px;
}

.breadcrumb-top ul li.active a {
    color: #1197C4;
}

.breadcrumb-top ul li a:hover {
    color: #1197C4;
}

.breadcrumb-top ul li a:hover .breadcrumb-arrow {
    color: #9C9B9B;
}

.breadcrumb-top ul li.active .breadcrumb-arrow {
    color: #9C9B9B;
}

.breadcrumb-arrow {
    margin-right: 15px;
}

.content-area {
    padding: 40px 30px;
    display: flex;
}

.mg-bottom-40 {
    margin-bottom: 40px;
}

.mg-bottom-50 {
    margin-bottom: 50px;
}

.mg-bottom-60 {
    margin-bottom: 60px;
}

.page-header {
    font-size: 28px;
    color: #000000;
    margin-bottom: 25px;
}

.header-dsc {
    font-size: 16px;
    color: #5D5D5D;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

span.paragrapg-bold {
    color: #000000;
    font-weight: 600;
}

.content-group .step-list {
    margin: 10px 0 10px 10px;
    font-size: 16px;
    color: #000;
}

.content-group .header-dsc:last-child {
    margin-bottom: 0;
}

.this-page-content h2 {
    color: #1197C4;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.this-page-content ul li {
    margin-bottom: 16px;
}

.this-page-content ul li:last-child {
    margin-bottom: 0;
}

.this-page-content ul {
    margin-left: 30px;
    position: relative;
}

.this-page-content ul li a {
    text-decoration: none;
}

.this-page-content ul li a {
    text-decoration: underline;
    font-size: 16px;
    color: #245464;
    font-weight: 400;
    position: relative;
    padding-left: 18px;
}

.this-page-content ul li a:hover {
    color: #1197C4;
}

.this-page-content ul li a::after {
    content: "";
    position: absolute;
    height: 6px;width: 6px;
    background-color: #245464;
    left: 0;
    border-radius: 3px;
    top: 8px;
}

.content-group h2 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.this-page-content h2 {
    font-size: 20px;
}

.content-group span.title-span {
    color: #1197C4;
    margin-right: 5px;
}

.content-group .image {
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.07);
    max-height: 360px;
    margin: 20px 0;
    cursor: zoom-in;
}

.image.gif-image img {
    max-width: 660px;
    width: 660px;
}

.content-group h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    /*margin-bottom: 40px;*/
}

.content-group h4 {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    /*margin-bottom: 40px;*/
}

.content-group h5 {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.content-group .edit-image {
    color: #1197C4;
    font-size: 16px;
    margin-bottom: 5px;
}
.add-image {
    margin-left: 15px;
}

.newsletter {
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    height: 210px;
}

.newsletter:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #000;
    opacity: 0.05;
    top: -15px;
}

.newsletter img {
    position: absolute;
}

.newsletter .newsletter-bg-1 {
    left: 50px;
    top: 30px;
}

.newsletter .newsletter-bg-2 {
    left: 0;
    top: 0;
}

.newsletter .newsletter-bg-3 {
    right: 0;
    top: 0;
}

.newsletter-title {
    color: #245464;
    font-size: 30px;
    font-weight: 600;
}

.email-subscribe {
    position: absolute;
    bottom: 30px;
    display: block;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.newsletter-title {
    color: #245464;
    font-size: 30px;
    font-weight: 600;
    position: absolute;
    left: 190px;
    top: 65px;
}


.articles-helpful-share {
    flex-basis: 335px;
    max-width: 335px;
    margin: 60px 0 0 100px;
}

.related-articles,
.article-helpful,
.share-pages {
    box-shadow: 0 1px 5px rgba(0,0,0,0.07);
    border: 1px solid #E4E4E4;
    border-radius: 5px;
    margin-bottom: 40px;
    padding-bottom: 25px;
}
.right-panel-heading {
    text-align: center;
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    background: #EEF4F4;
    padding: 10px 0;
    margin-bottom: 25px;
}

.articles-list {
    margin-left: 50px;
}

.articles-list li a {
    color: #5D5D5D;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    line-height: 35px;
    opacity: 0.7;
}

.articles-list li a:hover {
    color: #1197C4;
}


.articles-list li a::after {
    content: "";
    position: absolute;
    height: 6px;
    width: 6px;
    background-color: #C8C8C8;
    left: -18px;
    border-radius: 3px;
    top: 7px;
}

.helpful-icon {
    text-align: center;
}

.helpful-icon li {
    display: inline;
    margin-right: 20px;
}

.helpful-icon li:last-child {
    margin-right: 0;
}

.social-media .share-button {
    padding: 7px 10px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-right: 10px;
    border-radius: 5px;
}

.social-media .share-button:last-child {
    margin-right: 0;
}

.social-media {
    text-align: center;
}

.share-button.facebook {
    background-color: #3A579A;
}

.share-button.twitter {
    background-color: #00ABF0;
}

.share-button.linkedin {
    background-color: #117BB6;
}

.social-media .share-button .fa {
    margin-right: 10px;
}

.icon-hover {
    display: none;
}

.enter-email {
    padding: 0 20px;
    background: #EEF4F4;
    border: 1px solid #ECECEC;
    border-radius: 5px;
    width: 450px;
    height: 45px;
    font-weight: 600;
}

.subscribe-button {
    border: none;
    align-items: center;
    height: 45px;
    text-align: center;
    margin-left: 12px;
    background-color: #1197C4;
    padding: 0 30px;
    border-radius: 5px;
}
.subscribe-button a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.footer-section {
    background-color: #EEF4F4;
    padding: 22px 0;
    align-items: center;
}
.footer-wrapper {
    display: flex;
    width: 1170px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
}

.footer-column {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
    align-items: center;
}

.footer-menu.footer-column {
    text-align: center;
}

.footer-menu ul li {
    display: inline;
    margin-right: 15px;
}

.footer-menu ul li:last-child {
    margin-right: 0;
}

.footer-menu ul li a {
    text-decoration: none;
    font-size: 15px;
    color: #707070;
}

.footer-menu ul li.active a,
.footer-menu ul li a:hover {
    color: #1197C4;
}

.footer-copyright.footer-column {
    text-align: right;
}

.footer-copyright.footer-column p {
    font-size: 15px;
    color: #707070;
}
.footer-social-icon ul li {
    display: inline;
}
.footer-social-icon ul li {
    display: inline;
}
.footer-social-icon ul li a {
    padding: 8px 10px;
    border-radius: 30px;
    background: #DBDBDB;
    height: 40px;
    line-height: 40px;
    color: #707070;
}
.footer-social-icon ul li a:hover {
    background: #1197C4;
    color: #fff;
}
/*.footer-social-icon.footer-column a {*/
/*background: #DBDBDB;*/
/*padding: 5px 12px;*/
/*border-radius: 130px;*/
/*font-size: 17px;*/
/*margin-right: 5px;*/
/*color: #707070;*/
/*}*/

.footer-column .fa.fa-facebook {
    padding: 0 3px;
}
.footer-section a.to-top {
    position: fixed;
    display: none;
    right: 26px;
    bottom: 70px;
    padding: 6px;
    background: transparent;
}
body.on-scroll .to-top {
    display: inline-block;
}