@charset "utf-8";

.fa-icon,
blockquote:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/**********
 Variables
 **********/
body {
    /* Text */
    --text-font-family: 'Montserrat', sans-serif;
    --heading-font-family: 'Montserrat', sans-serif;
    --text-font-size: 16px;
    --text-font-size-large: calc(16px + 2px);
    --heading-1-font-size: 48px;
    --heading-2-font-size: 32px;
    --heading-3-font-size: 24px;
    --heading-4-font-size: 20px;
    --heading-5-font-size: 16px;
    --heading-6-font-size: calc(16px - 2px);
    /* Other */
    --border-radius-base: 16px;
    --border-radius-small: calc(16px / 2);
    --border-radius-button: 50px;
    --logo-height: 1;
    /* Assets */
    --assets-check-svg: url(/hc/theming_assets/01JVK7DKA68W7TT0P85WK9YWGN);
    --assets-circle-svg: url(/hc/theming_assets/01JVK7DM1PYA44199CRS2QC903);
}

/**********
 Light mode
 **********/
body {
    --primary-color: rgba(0, 122, 198, 1);
    --secondary-color: rgba(0, 122, 198, 1);
    --primary-bg-color: rgba(255, 255, 255, 1);
    --primary-bg-color-always: rgba(255, 255, 255, 1);
    --secondary-bg-color: #F1F4FA;
    --secondary-bg-color-always: #F1F4FA;
    --primary-text-color: #000C20;
    --secondary-text-color: rgba(130, 144, 168, 1);
    --link-color: rgba(0, 122, 198, 1);
    --border-color: #DDE2EB;
    --info-color: rgba(0, 122, 198, 1);
    --success-color: rgba(103, 195, 11, 1);
    --warning-color: #F1D52F;
    --danger-color: #e64545;
    --primary-color-light-hover: #0067a7;
    --primary-color-hover: #005489;
    --primary-color-active: #004b7a;
    --secondary-color-hover: #005489;
    --secondary-color-active: #004b7a;
    --secondary-bg-color-hover: #e2e8f5;
    --secondary-bg-color-active: #dae2f2;
    --secondary-text-color-hover: #7685a0;
    --secondary-text-color-active: #70809b;
    --link-color-hover: #005489;
    --link-color-active: #004b7a;
    --bg-image-opacity: 0.5;
    --bg-image-opacity-dark: 0.5;
    --bg-image-color: var(--primary-text-color);
}

.layout--style-filled .section:nth-child(even),
.layout--style-invert .section:nth-child(odd),
.section--secondary {
    /* Invert colors */
    /*
  	--primary-bg-color: #F1F4FA;
    --secondary-bg-color: rgba(255, 255, 255, 1);
  	*/
}

#helpers, #helpers-extra {
  background-color: #fff;
  --secondary-bg-color: #fff;
}

/*********
 Dark mode
 *********/
.ui-dark body {
    /* UI dark colors */
    --primary-color: rgba(0, 122, 198, 1);
    --secondary-color: rgba(148, 197, 241, 1);
    --primary-bg-color: #000C20;
    --primary-bg-color-always: #000C20;
    --secondary-bg-color: #182233;
    --secondary-bg-color-always: #182233;
    --primary-text-color: #FFFFFF;
    --secondary-text-color: #8290A8;
    --link-color: rgba(0, 122, 198, 1);
    --border-color: #242f42;
    --info-color: rgba(0, 122, 198, 1);
    --success-color: #67C30B;
    --warning-color: #F1D52F;
    --danger-color: #e64545;
    --primary-color-light-hover: #008de5;
    --primary-color-hover: #049fff;
    --primary-color-active: #14a5ff;
    --secondary-color-hover: #cae2f8;
    --secondary-color-active: #d8eafa;
    --secondary-bg-color-hover: #2c3e5d;
    --secondary-bg-color-active: #304567;
    --link-color-hover: #23aaff;
    --link-color-active: #32b0ff;
    --bg-image-opacity: 0.5;
    --bg-image-opacity-dark: 0.75;
    --bg-image-color: var(--primary-bg-color);
}

.ui-dark .layout--style-filled .section:nth-child(even),
.ui-dark .layout--style-invert .section:nth-child(odd),
.ui-dark .section--secondary {
    /* Invert colors */
    --primary-bg-color: #182233;
    --secondary-bg-color: #000C20;
}

/***********
 Base styles
 ***********/
*,
*:before,
*:after {
    box-sizing: border-box;
}

body,
html {
    min-height: 100vh;
}

[dir] body,
[dir] html {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--text-font-family);
    font-size: var(--text-font-size);
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-text-color);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

[dir] body {
    background-color: var(--secondary-bg-color);
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-color-hover);
}

a:active,
a.is-active {
    color: var(--link-color-active);
}

[dir] a.is-disabled {
    cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
    color: var(--secondary-text-color);
}

[dir] a,
[dir] button,
[dir] [type=submit],
[dir] [type=button],
[dir] [type=reset] {
    cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
    transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
    outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
    outline: auto 5px -webkit-focus-ring-color;
}

[dir] figure {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/********
 Headings
 ********/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--heading-font-family);
    font-weight: 700;
}

h1,
.h1 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
}

[dir] h1,
[dir] .h1 {
    margin: 0 0 1.2em;
}

[dir] .markdown h1,
[dir] .markdown .h1 {
    margin-top: 1.2em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    h1,
    .h1 {
        font-size: var(--heading-1-font-size);
        line-height: 1.1;
    }

    [dir] h1,
    [dir] .h1 {
        margin: 0 0 1em;
    }

    [dir] .markdown h1,
    [dir] .markdown .h1 {
        margin-top: 1em;
    }
}

h2,
.h2 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
}

[dir] h2,
[dir] .h2 {
    margin: 0 0 1.3em;
}

[dir] .markdown h2,
[dir] .markdown .h2 {
    margin-top: 1.3em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    h2,
    .h2 {
        font-size: var(--heading-2-font-size);
        line-height: 1.2;
    }

    [dir] h2,
    [dir] .h2 {
        margin: 0 0 1.2em;
    }

    [dir] .markdown h2,
    [dir] .markdown .h2 {
        margin-top: 1.2em;
    }
}

h3,
.h3 {
    font-size: var(--heading-4-font-size);
    line-height: 1.4;
}

[dir] h3,
[dir] .h3 {
    margin: 0 0 1.4em;
}

[dir] .markdown h3,
[dir] .markdown .h3 {
    margin-top: 1.4em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    h3,
    .h3 {
        font-size: var(--heading-3-font-size);
        line-height: 1.3;
    }

    [dir] h3,
    [dir] .h3 {
        margin: 0 0 1.3em;
    }

    [dir] .markdown h3,
    [dir] .markdown .h3 {
        margin-top: 1.3em;
    }
}

h4,
.h4 {
    font-size: var(--heading-4-font-size);
    line-height: 1.4;
}

[dir] h4,
[dir] .h4 {
    margin: 0 0 1.4em;
}

[dir] .markdown h4,
[dir] .markdown .h4 {
    margin-top: 1.4em;
}

h5,
.h5 {
    font-size: var(--heading-5-font-size);
    line-height: 1.5;
}

[dir] h5,
[dir] .h5 {
    margin: 0 0 1.5em;
}

[dir] .markdown h5,
[dir] .markdown .h5 {
    margin-top: 1.5em;
}

h6,
.h6 {
    font-size: var(--heading-6-font-size);
    line-height: 1.5;
}

[dir] h6,
[dir] .h6 {
    margin: 0 0 1.5em;
}

[dir] .markdown h6,
[dir] .markdown .h6 {
    margin-top: 1.5em;
}

/**********************
 Other default elements
 *********************/
[dir] p,
[dir] ul,
[dir] ol,
[dir] dl,
[dir] pre,
[dir] table,
[dir] blockquote {
    margin: 1.5em 0 1.5em;
}

[dir] li {
    margin: 0.75em 0 0.75em;
}

small,
.small {
    font-size: var(--heading-6-font-size);
}

[role="main"] {
    flex-grow: 1;
    position: relative;
}

hr {
    display: block;
    height: 0;
}

[dir] hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

pre {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    color: var(--primary-bg-color);
}

[dir] pre {
    padding: 8px 16px;
    border-radius: var(--border-radius-base);
    background-color: var(--primary-text-color);
}

.ui-dark pre {
    color: var(--secondary-text-color);
}

[dir].ui-dark pre {
    background-color: var(--secondary-bg-color);
}

blockquote {
    display: block;
    position: relative;
    z-index: 2;
}

[dir=ltr] blockquote {
    padding-left: 16px;
    border-left: 1px solid var(--border-color);
}

[dir=rtl] blockquote {
    padding-right: 16px;
    border-right: 1px solid var(--border-color);
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    [dir=ltr] blockquote {
        padding-left: 24px;
    }

    [dir=rtl] blockquote {
        padding-right: 24px;
    }
}

@media only screen and (min-width: 980px) {
    [dir=ltr] blockquote {
        padding-left: 32px;
    }

    [dir=rtl] blockquote {
        padding-right: 32px;
    }
}

blockquote:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: -4px;
    font-size: 60px;
    color: var(--secondary-bg-color);
}

[dir=ltr] blockquote:before {
    left: 8px;
}

[dir=rtl] blockquote:before {
    right: 8px;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9) and (max-width: 979px), only screen and (min-width: 668px) and (min-height: 416px) and (max-width: 979px) {
    [dir=ltr] blockquote:before {
        left: 12px;
    }

    [dir=rtl] blockquote:before {
        right: 12px;
    }
}

@media only screen and (min-width: 980px) {
    [dir=ltr] blockquote:before {
        left: 16px;
    }

    [dir=rtl] blockquote:before {
        right: 16px;
    }
}

.list-unstyled {
    list-style: none;
}

[dir=ltr] .list-unstyled {
    padding-left: 0;
}

[dir=rtl] .list-unstyled {
    padding-right: 0;
}

dl.details {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
}

[dir] dl.details {
    margin-bottom: 32px;
}

dl.details > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

dl.details > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

dl.details > dt {
    font-weight: 700;
}

[dir] dl.details > dt {
    margin-bottom: 12px;
}

[dir=ltr] dl.details > dt {
    margin-right: 8px;
}

[dir=rtl] dl.details > dt {
    margin-left: 8px;
}

[dir] dl.details > dd {
    margin-bottom: 12px;
}

dl.details > div {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
}

[dir] dl.details > div {
    margin-bottom: 12px;
}

dl.details--type-2 {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

[dir] dl.details--type-2 {
    margin-bottom: 0;
}

dl.details--type-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

dl.details--type-2 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

dl.details--type-2 > dd {
    color: var(--secondary-text-color);
}

@media only screen and (min-width: 980px), only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
    [dir=ltr] dl.details--type-2 > dd {
        text-align: right;
    }

    [dir=rtl] dl.details--type-2 > dd {
        text-align: left;
    }
}

.text-secondary {
    font-size: var(--heading-6-font-size);
    line-height: 1.5;
    color: var(--secondary-text-color);
}

/******
 Tables
 ******/
.table-container {
    display: block;
    width: 100%;
    overflow-x: unset;
}

[dir] .table-container {
    border: 1px solid var(--border-color);
}

.table-container table:not(.pika-table) {
    width: calc(100% + 3px);
    max-width: calc(100% + 3px);
}

[dir] .table-container table:not(.pika-table) {
    margin: -1px;
}

table:not(.pika-table) {
    width: 100%;
    max-width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

table:not(.pika-table) thead {
    font-weight: 700;
}

[dir] table:not(.pika-table) thead {
    background-color: var(--secondary-bg-color);
}

[dir] table:not(.pika-table) tfoot {
    background-color: var(--secondary-bg-color);
}

table:not(.pika-table) thead,
table:not(.pika-table) tbody,
table:not(.pika-table) tfoot {
    width: 100%;
    max-width: 100%;
}

[dir=ltr] table:not(.pika-table) th {
    border-left: 1px solid var(--border-color);
}

[dir=rtl] table:not(.pika-table) th {
    border-right: 1px solid var(--border-color);
}

[dir] table:not(.pika-table) td {
    padding: 8px;
    border: 1px solid var(--border-color);
}

/*******
 Iframes
 *******/
.iframe {
    display: block;
    width: 100%;
    height: 0;
    position: relative;
}

.iframe iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

[dir=ltr] .iframe iframe {
    left: 0;
}

[dir=rtl] .iframe iframe {
    right: 0;
}

.page-heading__breadcrumbs {
  margin-top: 35px;
}

.cta__content {
  width: 50%;
  display: inline-block;
}

.cta__content.lb-bg {
  background-color: #C2D6F7;
}

.cta__content.db-bg {
  background-color: #719BED;
}

@media(max-width: 567px) {
  .cta__content {
    width: 100%;
    display: block;
  }
}

.bd-article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .bd-article-grid {
  	display: block;
    text-align: center;
  }    
}

.bd-article-grid h4 {
  margin: 0 0 0.3rem;
}
.bd-hidden {
  display: none !important;
}

.bd-article-group.group-1 .bd-article:not(.training_group_1) {
  display: none;
}

.bd-article-group.group-2 .bd-article:not(.training_group_2) {
  display: none;
}

.bd-article-group.group-3 .bd-article:not(.training_group_3) {
  display: none;
}

.bd-article-group.group-4 .bd-article:not(.training_group_4) {
  display: none;
}

.bd-article-group.group-5 .bd-article:not(.training_group_5) {
  display: none;
}

.bd-article-group.group-6 .bd-article:not(.training_group_6) {
  display: none;
}

.header__logo img {
  max-height: 65px;
}

.helpers--type-2 .helpers__secondary-icon img {
  max-width: 80px !important;
  max-height: 80px !important;
}

@media only screen and (min-width: 980px) {
  .helpers--type-2 .helpers__secondary-icon img {
    max-width: 120px !important;
    max-height: 120px !important;
	}
}

.helpers--type-2 .helpers__secondary-icon.circular img {
  max-width: 60px !important;
  max-height: 60px !important;
}

@media only screen and (min-width: 980px) {
  .helpers--type-2 .helpers__secondary-icon.circular img {
    max-width: 75px !important;
    max-height: 75px !important;
	}
}

.helpers--type-2 .helpers__secondary-icon.circular img {
  position: absolute;
  bottom: 10px;
  right: 0;
}

.section.cta.cta--type-1.cta--style-1:before,
.section.cta.cta--type-1.cta--style-1:after {
  opacity: 1 !important;
  background: #F5F9FF !important;
}

.section.cta.cta--type-1.cta--style-1 {
  background: #C2D6F7;
}

.helpers--type-2 .helpers__secondary-icon {
  border-radius: 50%;
  background-color: #FFF;
  padding: 10px;
  border: 2px solid #3176E8;
  margin-right: 5px;
}

.h3.helpers__title {
  hyphens: auto;
}

@media screen and (max-width: 567px) {
  .helpers__block .helpers__title, .helpers__block .helpers__description {
  	padding-left: 15px;
	} 
}

.no-wrap {
  white-space: nowrap;
}

.font-bold {
  font-weight: 700 !important;
}

.articles__link.articles__link--h3 span {
  color: #3176E8;
}

.post-status--featured {
  background-color: #3176E8 !important;
  color: #fff !important;
}

.post-status--answered {
  color: #fff !important;
}

.welcome--type-2 .h1 {
  font-size: 40px;
}

.welcome__bg-image {
  object-position: center 80%;
}

.btn.btn--primary.btn-larger {
  padding: 15px 40px;
}

/******
Accordian
******/

.bd-accordions {
  padding-top: 45px;
  padding-bottom: 45px;
}


.bd-accordion {
  background-color: #007AC6;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  margin-bottom: 2px;
  outline: none;
  transition: 0.4s;
}

.active, .bd-accordion:hover {
  background-color: #044D66;
  color: #fff;
}

.bd-panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.bd-panel a {
  display: block;
  color: #007AC6;
}

.hide {
  display: none;
}

.bd-caret {
  font-size: 12px;
}

.bd-spinner {
  border: 16px solid #f3f3f3; 
  border-top: 16px solid #3176E8; 
  border-radius: 50%;
  width: 75px;
  height: 75px;
  animation: loading 1s linear infinite;
  margin: 0 auto;
}

@keyframes loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#helpers {
  padding-bottom: 0;
}
#helpers-extra {
  padding-bottom: 64px;
  padding-top: 104px;
}

@media screen and (max-width: 567px) {
  #helpers {
    padding-bottom: 0;
  }
  #helpers-extra {
  	padding-bottom: 24px;
    padding-top: 7px;
  }
}

.bd-feature-request-search .search input{
  padding: 5px 10px !important;
} 

.bd-feature-request-search .search [type=submit] {
  padding: 5px 15px !important;
}

.bd-feature-request-search {
  margin-bottom: 40px;
}

.m-0 {
  margin: 0;
}

.footer-copyright {
  align-self:stretch;
  width: 100%;
}

.footer-copyright p:first-child {
  margin: 12px 0;
}

.footer-copyright p:last-child {
  margin: 0px;
}

.footer__right-col, .footer__left-col {
	font-size: 14px;
}

.footer-hours div {
  margin: 12px 0;
}

.footer-hours h4 {
  height: 40px;
  line-height: 40px;
  margin-bottom: 0px;
}

/* P+ AZ */
[dir] body > reach-portal [role=menu] {
  opacity: 1;
  visibility: visible;
  width: auto;
}

.border-btm-blue {
  border-bottom: 1px solid #719BED;
}

/*Update 27.07.2022 GRAB-2721*/

.welcome--style-1 .h1 {
  color: #007BC7 !important;
  font-weight: 800 !important;
}

.bd-search-wrapper input[type=submit] {
  display: none !important;
}

.bd-search-wrapper input[type=search] {
  padding-left: 3.5rem !important;
}

.bd-search-wrapper {
  position: relative;
}

.bd-search-wrapper:after {
  content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.61 17.8'%3E%3Cdefs%3E%3Cstyle%3E.e%7Bfill:none;%7D.f%7Bfill:%23435363;%7D%3C/style%3E%3C/defs%3E%3Cg id='a'/%3E%3Cg id='b'%3E%3Cg id='c'%3E%3Cg id='d'%3E%3Cg%3E%3Ccircle class='e' cx='7.14' cy='7.14' r='5.1' transform='translate(-2.95 7.48) rotate(-46.92)'/%3E%3Cpath class='f' d='M17.32,15.98l-4.39-4.65c.9-1.24,1.41-2.77,1.35-4.42C14.15,2.97,10.85-.13,6.91,0,2.97,.14-.13,3.44,0,7.38c.13,3.95,3.44,7.03,7.38,6.9,1.51-.05,2.9-.57,4.03-1.41l4.33,4.59c.22,.24,.52,.35,.82,.34,.25,0,.51-.11,.71-.29,.44-.41,.46-1.1,.05-1.53ZM2.05,7.32c-.09-2.81,2.11-5.17,4.93-5.27,2.81-.09,5.17,2.11,5.27,4.93,.09,2.82-2.11,5.17-4.93,5.27-2.81,.09-5.17-2.1-5.27-4.93Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 1.4rem;
}

.bd-search-wrapper input[type=search] {
  border-radius: 25px !important;
  border: 1px solid #DADEE0 !important;
}

.helpers--type-2 .helpers__secondary-icon {
  background-color: transparent !important;
  border: none !important;
}

[dir] .helpers--style-2.helpers--type-2 .helpers__block {
  background-color: transparent !important;
}

.helpers--style-2.helpers--type-2 .helpers__description {
  color: #000 !important;
}

.helpers--style-2.helpers--type-2 .helpers__title {
  color: #054C66 !important;
}

.bd-bg-1 {
  display: block !important;
}

.font-light {
  color: #fff !important;
}

.font-blue {
  color: #007BC7 !important;
}

.fw-bold {
  font-weight: 800 !important;
}

.bg-light-blue {
  background-color: #D9F0FA;
}

.bg-dark-blue {
  background-color: #334558;
}

.btn-orange {
  background-color: #FBA51A !important;
  border-color: #FBA51A !important;
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

@media only screen and (min-width: 980px) {
	[dir] .footer {
    padding-bottom: 0 !important;
	} 
}

.bd-list {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  display: inline-block;
}

.bd-list li {
  display: block;
  margin: 0;
  margin-bottom: .25rem;
}

.page-heading__breadcrumbs, .page-heading__breadcrumbs a {
  color: #007BC7 !important;
}

.page-heading__btn, .subscribe-btn a {
  border-color: #007BC7 !important;
  color: #007BC7 !important;
}

.helpers__secondary-icon.circular {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: #EBF7FC !important;
}

.bd-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 1rem 2rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .bd-footer-grid {
    display: block;
    text-align: center;
  }
  
  .bd-footer-grid-1, .bd-footer-grid-2, .bd-footer-grid-3 {
    margin-bottom: 1rem;
  }
  
  .bd-footer-grid h4 {
    margin-bottom: 1rem;
  }
}

.bd-footer-grid-1 { grid-area: 1 / 1 / 2 / 2; }
.bd-footer-grid-2 { grid-area: 1 / 2 / 2 / 3; }
.bd-footer-grid-3 { grid-area: 1 / 3 / 2 / 4; }

.bd-footer-grid a {
  color: #fff;
}

.bd-footer-grid a:hover {
  color: #007BC7;
}

.bd-footer-grid-1 img {
  max-width: 150px;
}

.articles__item a {
  color: #007AC6;
}

.bd-blue-btn.subscribe-btn button[data-selected=true] {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}