/* SET SITE MAX WIDTH */
/*--PREDEFINED COLOURS--*/
/*--RESPONSIVE BREAKPOINTS--*/
/* FONT FAMILY */
/* PHONE MEDIA QUERY */
/* TABLET MEDIA QUERY */
/* DESKTOP MEDIA QUERY */
/*----------------------- MIXINS -----------------------*/
.middle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*----------------------- ANIMATION -----------------------*/
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    tranform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    tranform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    tranform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    tranform: rotate(360deg);
  }
}
@keyframes bouncing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0, 0, 1);
  }
}
@-webkit-keyframes bouncing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0, 0, 1);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes up-and-down {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
body .container,
.html .container {
  max-width: 1500px;
}
body .container.full_width_section,
.html .container.full_width_section {
  width: 100%;
  max-width: unset;
  padding-left: 0;
  padding-right: 0;
}
.light-lead-heading {
  font-size: 2.5em;
  font-weight: 200;
  display: block;
  margin-top: 20px;
  font-family: 'Cairo' !important;
}
/*--BUTTON STYLES--*/
a.accent-btn,
button.accent-btn {
  float: none;
  display: inline-block;
  margin-bottom: 20px;
  margin-top: 4px;
  background-color: #009fda;
  border-width: 0px;
  padding: 3px 20px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Cairo';
  min-width: 110px;
  letter-spacing: 0.5px;
  text-align: center;
}
a.accent-btn:hover,
button.accent-btn:hover {
  color: #fff;
  opacity: 0.9;
  cursor: pointer;
}
a.accent-btn .dashboard-button-name,
button.accent-btn .dashboard-button-name {
  padding: 0;
}
a.simple-btn,
.simple-btn {
  color: #009fda;
  font-weight: 700 !important;
  text-decoration: underline;
  font-family: 'Cairo' !important;
  float: none;
  background: none;
  border: none;
  text-align: left;
  padding: 0 !important;
}
a.simple-btn:focus,
.simple-btn:focus {
  outline: none;
}
.bg-porcelain {
  background-color: #f0f2f2;
}
.bg-bluewood {
  background-color: #233143;
}
.white {
  color: white!important;
}
.blue {
  color: #009fda !important;
}
/*--HOMEPAGE--*/
.page-node-356 #section-content-bottom-second {
  background-color: unset!important;
  border: 0;
}
.page-node-356 #section-content-top {
  margin: 20px 0;
}
@media all and (max-width: 570px) {
  .page-node-356 #section-content-top {
    margin: 20px 0 0 0;
  }
}
.page-node-356 #section-content-bottom-third {
  margin: 20px 0 30px 0;
}
.layout-inmotion .block-inmotiontype-block .media_contents_filtered .seeemoreButton {
  text-align: center;
  font-size: 17px;
  margin-top: 18px;
}
#section-banner .region .home-main-grid .main-block .node {
  position: relative;
}
#section-banner .region .home-main-grid .main-block .node .HomeTitle {
  font-size: 2.5em !important;
  line-height: 1.1em;
  padding: 0 30px 30px 30px!important;
  min-height: 40%!important;
}
@media all and (max-width: 480px) {
  #section-banner .region .home-main-grid .main-block .node .HomeTitle {
    font-size: 2em!important;
    padding: 30px 20px 20px 20px!important;
  }
}
#section-banner .region .home-main-grid .main-block .node .video_play_btn {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: calc(50% - 30px/2);
  left: calc(50% - 30px/2);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
  visibility: visible;
  opacity: 1;
  z-index: 2;
  transition: all 1s ease-in;
  cursor: pointer;
}
#section-banner .region .home-main-grid .main-block .node .video_play_btn svg g > path:first-child {
  fill: #fff;
  transition: all 0.3s ease;
}
#section-banner .region .home-main-grid .main-block .node .video_play_btn svg g > path:last-child {
  fill: transparent;
}
#section-banner .region .home-main-grid .image-grid:hover .node img {
  transform: scale(1.1);
}
#section-banner .region .home-main-grid .image-grid .row {
  margin: 0;
}
#section-banner .region .home-main-grid .image-grid a.home-tile-block-anchor:hover .node .HomeTitle {
  transition: 0.3s linear;
}
#section-banner .region .home-main-grid .image-grid img {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
#section-banner .region .home-main-grid .image-grid .image {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#section-banner .region .home-main-grid .image-grid .node {
  position: relative;
  height: 100%;
  overflow: hidden;
}
#section-banner .region .home-main-grid .image-grid .node .video_play_btn {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  top: calc(50% - 50px/2);
  left: calc(50% - 50px/2);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
  visibility: visible;
  opacity: 1;
  z-index: 2;
  transition: all 1s ease-in;
  cursor: pointer;
}
#section-banner .region .home-main-grid .image-grid .node .video_play_btn svg g > path:first-child {
  fill: #fff;
  transition: all 0.3s ease;
}
#section-banner .region .home-main-grid .image-grid .node .video_play_btn svg g > path:last-child {
  fill: transparent;
}
#section-banner .region .home-main-grid .image-grid .node img {
  transform: scale(1);
  transition: all 0.5s linear;
}
#section-banner .region .home-main-grid .image-grid .node .HomeTitle {
  position: absolute;
  bottom: 0;
  height: auto;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  font-family: Cairo;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0));
  font-weight: 600;
  font-size: 1.3em;
  line-height: 1.1em;
  min-height: 55%;
  padding: 0 20px 20px 20px;
  transition: 0.3s linear;
}
@media all and (max-width: 570px) {
  #section-banner .region .home-main-grid .image-grid .node .HomeTitle {
    font-size: 1em;
    padding: 0 10px 10px 10px;
  }
}
@media all and (max-width: 335px) {
  #section-banner .region .home-main-grid .image-grid .node .HomeTitle {
    min-height: 85%;
  }
}
#section-banner .region .home-main-grid .video-grid .row {
  margin: 0;
}
#section-banner .region .home-main-grid .video-grid div[class*="col-xs"] {
  padding: 0;
}
#section-banner .region .home-main-grid .video-grid .node {
  position: relative;
}
#section-banner .region .home-main-grid .video-grid .node .media-youtube-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
#section-banner .region .home-main-grid .video-grid .node .media-youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#section-banner .region .home-main-grid .video-grid .node .HomeTitle {
  position: relative;
  background: #000;
  color: #fff;
  font-weight: 400;
  font-size: 1.2em;
  padding: 5px 15px;
  display: none;
}
@media all and (max-width: 992px) {
  #section-banner .region #block-block-263 .content .flex-grid-sm-padding {
    flex-direction: column;
  }
}
@media all and (max-width: 480px) {
  #section-banner .region #block-block-263 #node-377 .HomeTitle {
    font-size: 1.5em;
  }
}
.region .block-homenews-block .media_filter {
  margin: 0!important;
  height: auto;
}
.region .block-homenews-block .media_filter ul {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 99;
}
.region .block-homenews-block .media_filter ul li {
  margin: 15px 1px;
  border: 0.5px #eceef0 solid;
  text-transform: uppercase;
  cursor: pointer;
}
.region .block-homenews-block .media_filter ul li a {
  color: #afaeae;
}
.region .block-homenews-block .media_filter ul li:hover a {
  color: #fff;
}
.region .block-homenews-block .media_filter ul li.active {
  background: #009fda;
}
.region .block-homenews-block .media_filter ul li.active a {
  color: #fff;
}
.region .view-content .node-home-news-tiles .contextual-links-wrapper + p,
.region .view-content .node-inmotion .contextual-links-wrapper + p {
  display: none;
}
/*--END HOMEPAGE--*/
/*--MOBILE BURGER MENU--*/
/* main style */
.call {
  position: fixed;
  top: 50px;
  right: 20px;
  width: 50px;
  min-height: 50px;
  background: #bdc3c7;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 3px 3px 3px 1px #333;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .call {
    display: none;
  }
}
.call-menu {
  line-height: 50px;
  text-align: center;
  background: #95a5a6;
  color: #333;
  border-radius: 25px;
  cursor: pointer;
}
.call-menu:hover {
  color: white;
  background: #00796b;
}
.call-items {
  width: 50px;
  line-height: 50px;
  text-align: center;
  display: none;
  color: #333;
  border-radius: 25px;
  transition: background 0.5s, color 0.5s;
}
.call-items:hover {
  background: #009688;
  color: #f5f5f5;
}
.shown {
  display: inline-block;
}
/*--END DIARY PAGE--*/
/*--TOOLTIP--*/
/*--USAGE--

    	<div class="col-xs-12 none-padding tooltip-container top" style="margin-top: 10px;">
			<div class="tooltip-content">
                Put any content here
				<a href="#" target="_blank">Link in tooltip</a>
			</div>
			<span>What is this?</span> <--- Tooltip placeholders
		</div>

    */
.tooltip-personal-info .tooltip-activate {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  font-size: 0.8em;
  line-height: 0.8em;
  border-radius: 50%;
  padding: 0.13em 0.2em 0.09em 0.2em;
  color: white;
  border: 3px solid gray;
  text-decoration: none;
  background: gray;
}
.tooltip-container {
  position: relative;
}
.tooltip-container > span.tooltip-activate {
  border-bottom: 1px dotted black;
  cursor: pointer;
}
.tooltip-container > span.tooltip-activate:hover + .tooltip-content {
  opacity: 1;
  z-index: 9999;
}
.tooltip-container .tooltip-act {
  width: 80px;
  opacity: 0;
  height: 20px;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}
.tooltip-container .tooltip-content {
  box-shadow: 0 5px 25px 5px rgba(205, 210, 214, 0.8);
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1px;
  max-width: 300px;
  min-width: 145px;
  padding: 1em;
  position: absolute;
  z-index: -1;
  opacity: 0;
  color: #fff;
  border-radius: 15px;
  transition: all 0.2s linear;
}
.tooltip-container .tooltip-content:hover {
  opacity: 1;
  z-index: 9999;
}
.tooltip-container .tooltip-content h4 {
  color: #fff;
  font-family: Cairo;
  font-size: 1.4em;
  text-align: center;
  font-weight: 300;
}
.tooltip-container .tooltip-content .tooltip-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.tooltip-container .tooltip-content span {
  font-family: Roboto;
}
.tooltip-container .tooltip-content a {
  position: relative;
  display: block;
  padding-top: 15px;
  color: #00b8f1;
  font-size: 1.2em;
}
.tooltip-container .tooltip-content a :hover {
  text-decoration: underline;
}
.tooltip-container .tooltip-content:after {
  background: none;
  content: "";
  height: 10px;
  position: absolute;
  transform: rotate(45deg);
  width: 10px;
}
.tooltip-container.top .tooltip-content {
  bottom: 110%;
}
.tooltip-container.top .tooltip-content:after {
  bottom: -5px;
  left: 25%;
  background-color: rgba(51, 51, 51, 0.9);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 50%, rgba(51, 51, 51, 0.9) 50%);
  margin-left: -5px;
}
.tooltip-container.top.tooltip-personal-info.tooltip-pronouns .tooltip-content,
.tooltip-container.top.tooltip-personal-info.tooltip-gender .tooltip-content {
  width: 250px;
  left: -55px;
}
.tooltip-container.top.tooltip-personal-info .tooltip-content {
  bottom: 140%;
  left: -33px;
}
.tooltip-container.bottom .tooltip-content {
  bottom: calc(-100% - 1.8em);
  left: 50%;
  transform: translateX(-50%);
}
.tooltip-container.bottom .tooltip-content::after {
  top: -5px;
}
.tooltip-container.right .tooltip-content {
  left: calc(100% + 1.5em);
  top: 50%;
  transform: translateY(-50%);
}
.tooltip-container.right .tooltip-content::after {
  left: -5px;
  margin-top: -5px;
  top: 50%;
}
.tooltip-container.left .tooltip-content {
  right: calc(100% + 1.5em);
  top: 50%;
  transform: translateY(-50%);
}
.tooltip-container.left .tooltip-content::after {
  right: -5px;
  margin-top: -5px;
  top: 50%;
}
/*--END TOOLTIP--*/
/*--MEDIA MOBILE NAV--*/
.block-homenews-block .media_filter {
  position: relative;
  min-height: 80px;
}
@media all and (max-width: 570px) {
  .block-homenews-block .media_filter {
    padding-top: 20px;
  }
}
.block-homenews-block .media_filter nav .nav-mobile-title {
  display: block;
  position: absolute;
  top: 20px;
  font-family: Roboto;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 1px;
}
.block-homenews-block .media_filter ul {
  z-index: inherit;
  padding-left: 0;
}
.block-homenews-block .media_filter input {
  display: none;
}
.block-homenews-block .media_filter input + label {
  position: absolute;
  top: 40px;
  right: 15px;
  height: 16px;
  width: 18px;
  z-index: 5;
  font-size: 0;
}
.block-homenews-block .media_filter input + label span {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 9px;
  margin-top: -1px;
  left: 0;
  display: block;
  background: #000;
  transition: 0.5s;
  opacity: 0.65;
}
.block-homenews-block .media_filter input + label span:nth-child(1) {
  top: 3px;
}
.block-homenews-block .media_filter input + label span:nth-child(3) {
  top: unset;
  bottom: 0;
}
.block-homenews-block .media_filter label:hover {
  cursor: pointer;
}
.block-homenews-block .media_filter input:checked + label span {
  opacity: 0;
  top: 50%;
}
.block-homenews-block .media_filter input:checked + label span:first-child {
  opacity: 0.65;
  transform: rotate(405deg);
}
.block-homenews-block .media_filter input:checked + label span:last-child {
  opacity: 0.65;
  transform: rotate(-405deg);
}
.block-homenews-block .media_filter input ~ nav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  transition: 0.5s;
  overflow: hidden;
  padding: 0 15px;
}
.block-homenews-block .media_filter input ~ nav > ul {
  text-align: center;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  margin-bottom: 70px;
  flex-direction: column;
  transition: 0.5s linear;
  flex-wrap: unset!important;
}
.block-homenews-block .media_filter input ~ nav > ul > li {
  opacity: 0;
  transition: 0.5s;
  margin: 5px 0!important;
  overflow: hidden;
  height: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 767px) {
  .block-homenews-block .media_filter input ~ nav > ul > li {
    border: 0px #afaeae solid !important;
    padding: 0;
  }
}
.block-homenews-block .media_filter input ~ nav > ul > li > a {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-weight: 300;
  font-family: Roboto;
  display: block;
  padding: 8px 0;
  transition: 0.5s;
}
.block-homenews-block .media_filter input:checked ~ nav {
  height: 100%;
}
.block-homenews-block .media_filter input:checked ~ nav > ul > li {
  opacity: 1;
  height: 41px;
  border: 0.5px #afaeae solid;
  width: 100%;
}
@media all and (min-width: 768px) {
  .block-homenews-block .media_filter label {
    display: none;
  }
  .block-homenews-block .media_filter nav {
    position: relative!important;
  }
  .block-homenews-block .media_filter nav .nav-mobile-title {
    display: none;
  }
  .block-homenews-block .media_filter nav ul {
    top: 0!important;
    left: 0!important;
    right: 0!important;
    flex-direction: row!important;
    height: auto!important;
  }
  .block-homenews-block .media_filter nav ul li {
    margin: 15px 0px!important;
    border: 0.5px #eceef0 solid !important;
    border-left: 0!important;
    opacity: 1!important;
    min-width: 120px;
    height: auto!important;
  }
  .block-homenews-block .media_filter nav ul li:first-child {
    border-left: 0.5px #eceef0 solid !important;
  }
  .block-homenews-block .media_filter nav ul li a {
    padding: 0px!important;
    font-weight: 300!important;
    font-family: Roboto!important;
  }
}
@media all and (max-width: 640px) {
  .block-homenews-block .media_filter nav ul li {
    min-width: 105px;
    width: 100%;
  }
}
/*--END MEDIA MOBILE NAV--*/
/* FORM ELEMENTS */
.styled-checkbox {
  position: absolute;
  /* take it out of document flow */
  opacity: 0;
  /* hide it */
  /* Box. */
  /* Box hover */
  /* Box checked */
  /* Disabled state label. */
  /* Disabled checkbox. */
  /* Checkmark. Could be replaced with an image */
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  text-align: left;
}
.styled-checkbox + label:before {
  margin-left: -39px;
}
.styled-checkbox + label:before {
  content: '';
  margin-right: 20px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.styled-checkbox + label.highlight_checkbox:before {
  box-shadow: 0 0 0 1px #009fda;
}
.styled-checkbox:hover + label:before {
  background: none;
}
.styled-checkbox:checked + label:before {
  background: none;
}
.styled-checkbox[popup=""]:checked {
  width: 100%;
  z-index: 10;
  margin: 0;
  min-height: 22px;
  cursor: pointer;
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #fff;
}
.styled-checkbox:disabled + label:after {
  background: #bababa !important;
  box-shadow: 2px 0 0 #bababa, 4px 0 0 #bababa, 4px -2px 0 #bababa, 4px -4px 0 #bababa, 4px -6px 0 #bababa, 4px -8px 0 #bababa !important;
}
.styled-checkbox:checked + label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  background: #000;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 #000, 4px 0 0 #000, 4px -2px 0 #000, 4px -4px 0 #000, 4px -6px 0 #000, 4px -8px 0 #000;
  transform: rotate(45deg);
}
.styled-checkbox:checked + label.highlight_checkbox:after {
  background: #00b8f1;
  box-shadow: 2px 0 0 #00b8f1, 4px 0 0 #00b8f1, 4px -2px 0 #00b8f1, 4px -4px 0 #00b8f1, 4px -6px 0 #00b8f1, 4px -8px 0 #00b8f1;
}
/* RADIO STYLED */
.styled-radio-select:checked,
.styled-radio-select:not(:checked) {
  position: absolute;
  left: -9999px;
}
.styled-radio-select:checked + label,
.styled-radio-select:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000000;
}
.styled-radio-select:checked + label:before,
.styled-radio-select:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100%;
  background: none;
}
.styled-radio-select:checked + label:after,
.styled-radio-select:not(:checked) + label:after {
  content: '';
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.styled-radio-select:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.styled-radio-select:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.chevron-select-box {
  position: relative;
}
.chevron-select-box select {
  -webkit-appearance: none;
  position: relative;
  z-index: 1;
  background: none;
  font-family: Roboto!important;
  padding-right: 30px;
}
.chevron-select-box select::-ms-expand {
  display: none;
}
.chevron-select-box::after {
  content: '';
  font-family: 'fontawesome';
  color: #c3c8c8;
  position: absolute;
  top: calc(50% - 7.5px);
  right: 10px;
  width: 15px;
  height: 15px;
  z-index: 0;
  background-image: url(/sites/default/files/general-icon/chevron-lg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
}
@media all and (max-width: 570px) {
  .chevron-select-box::after {
    width: 7px;
  }
}
.chevron-select-box.chevron-adjust::after {
  top: 27%;
}
.plus-select-box {
  position: relative;
}
.plus-select-box .chosen-container {
  position: relative;
}
.plus-select-box .chosen-container .chosen-choices {
  border: 1px solid #ccc;
  position: relative;
  z-index: 1;
}
.plus-select-box select {
  -webkit-appearance: none;
  position: relative;
  z-index: 1;
}
.plus-select-box::after {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% - 7.5px);
  right: 10px;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/sites/default/files/dashboard-icon/plus-icon-G.png');
}
.plus-select-box.plus-adjust::after {
  top: 20%;
}
button:not(.info),
input[type="button"],
input[type="submit"] {
  font-family: Cairo!important;
  font-size: 15px!important;
  font-weight: 700!important;
  padding: 10px 30px!important;
  width: auto!important;
  height: auto!important;
  text-transform: unset;
}
button:not(.info).ui-dialog-titlebar-close,
input[type="button"].ui-dialog-titlebar-close,
input[type="submit"].ui-dialog-titlebar-close {
  padding: 10px !important;
  height: 25px!important;
  width: 25px!important;
}
input {
  min-height: 48px;
  background: none;
}
.chosen-container-multi .chosen-choices li.search-choice {
  padding: 5px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  opacity: 0.5;
  width: 15px;
  height: 15px;
  display: inline-block;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/sites/default/files/dashboard-icon/close-icon.png');
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  opacity: 1;
}
/* END FORM ELEMENTS */
/* READMORE */
.readmore-content {
  font-family: Roboto;
}
.readmore-content p,
.readmore-content ul,
.readmore-content ol {
  font-size: 1em;
}
.readmore-content .readmore {
  color: #009fda;
  font-weight: 300;
  font-size: 17px;
  margin-top: 10px;
  float: left;
  margin-bottom: 20px;
  width: 100%;
  display: none;
}
.readmore-content .short-text,
.readmore-content .full-text {
  font-size: 1.2em;
  font-family: Roboto;
  color: #000;
}
.readmore-content .short-text p,
.readmore-content .full-text p,
.readmore-content .short-text ul,
.readmore-content .full-text ul,
.readmore-content .short-text ol,
.readmore-content .full-text ol {
  font-size: 1em;
  color: #000;
}
.block-system-main-block .content .flex-container .node.node-inmotion .item-description {
  height: 208px;
}
.block-system-main-block .content .flex-container .node.node-inmotion .description {
  padding-bottom: initial;
}
/* POPUP OVERLAY */
.new {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
.accent-button-general {
  font-size: 15px;
  font-family: Cairo;
  font-weight: 600;
  color: #fff;
  background: #009fda;
  padding: 9px 0;
  width: 100%;
  text-align: center;
}
/*---------------------------------------
---------------------LOADING SCREEN-------------
---------------------------------------*/
/* ANIMATIONS */
/* BASE */
.loaders {
  visibility: hidden;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: none;
  flex-direction: column;
  display: flex;
  /*	Loader Quadrant */
}
.loaders .edu-step-note,
.loaders .edu-step-note-generic {
  color: #fff;
  font-size: 1.5em;
  margin-top: 15px;
  text-align: center;
}
.loaders .edu-step-note-generic {
  display: none;
}
.loaders .loader {
  display: inline-block;
  position: relative;
  width: 125px;
  height: 125px;
  vertical-align: middle;
  display: flex;
}
.loaders .loader-quart {
  border-radius: 100%;
  border: 6px solid rgba(255, 255, 255, 0.4);
}
.loaders .loader-quart:after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-radius: 100%;
  border: 6px solid transparent;
  border-top-color: #fff;
  -o-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
.loading {
  display: flex;
  color: #fff;
  margin: auto auto;
}
.loading .loading__element {
  font: normal 100 2rem/1 Roboto;
  letter-spacing: 0.5em;
  animation: bouncing 2s infinite ease;
}
.loading .loading__element:nth-child(1) {
  animation-delay: 0.1s;
}
.loading .loading__element:nth-child(2) {
  animation-delay: 0.2s;
}
.loading .loading__element:nth-child(3) {
  animation-delay: 0.3s;
}
.loading .loading__element:nth-child(4) {
  animation-delay: 0.4s;
}
.loading .loading__element:nth-child(5) {
  animation-delay: 0.5s;
}
.loading .loading__element:nth-child(6) {
  animation-delay: 0.6s;
}
.loading .loading__element:nth-child(7) {
  animation-delay: 0.7s;
}
.content-loading {
  min-height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.content-loading .line {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0px 10px;
  border-radius: 15px;
  background-color: #b5b5b5;
}
.content-loading .line:nth-last-child(1) {
  animation: up-and-down 0.6s 0.1s linear infinite;
}
.content-loading .line:nth-last-child(2) {
  animation: up-and-down 0.6s 0.2s linear infinite;
}
.content-loading .line.line:nth-last-child(3) {
  animation: up-and-down 0.6s 0.3s linear infinite;
}
/*-------------------------------------------------------------------------
---------------------SELECTIZE CUSTOMISE STYLES---------------------------
-------------------------------------------------------------------------*/
.selectize-control.multi .selectize-input {
  background: none;
  padding: 5px 12px;
  min-height: 48px;
  transition: 0.1s linear;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: default;
  display: flex;
  flex-wrap: wrap;
}
.selectize-control.multi .selectize-input:before {
  display: none;
}
.selectize-control.multi .selectize-input.has-items {
  padding-right: 30px!important;
  padding: 8px 12px;
  cursor: default;
}
.selectize-control.multi .selectize-input > input::placeholder {
  color: #b5b5b5;
  opacity: 1;
  /* Firefox */
}
.selectize-control.multi .selectize-input > input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #b5b5b5;
}
.selectize-control.multi .selectize-input > input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #b5b5b5;
}
.selectize-control.multi .selectize-input .item {
  position: relative;
  margin: 0px 5px 0px 0;
  border: none;
  border-radius: 3px;
  background-color: unset;
  background: none;
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: none;
  color: #333;
  line-height: 13px;
  cursor: default;
  padding: 5px;
  font-size: 1.2em;
  line-height: 1.2em;
  font-family: Roboto;
}
.selectize-control.multi .selectize-input .item .remove {
  opacity: 0.5;
  position: absolute;
  top: calc(50% - 7.5px);
  right: 5.5px;
  margin-left: 5px;
  font-size: 0;
  width: 15px;
  height: 15px;
  display: inline-block;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(/sites/default/files/dashboard-icon/close-icon.png);
}
.selectize-control.multi .selectize-input .item .remove:hover {
  opacity: 1;
}
.selectize-control.multi .selectize-input .item.active {
  background: #eeeeee;
  color: #333;
  border: 1px solid #aaa;
}
.selectize-control.multi .selectize-dropdown.multi .selectize-dropdown-content {
  background: #eceae8;
}
.selectize-control.multi .selectize-dropdown.multi .selectize-dropdown-content .option {
  cursor: pointer;
}
.selectize-control.multi .selectize-dropdown.multi .selectize-dropdown-content .option.active {
  background: #009fda;
  color: #fff;
}
/* SELECTIZE SELECT */
#dashboard-right-content .selectize-control.single,
body .selectize-control.single,
#section-content-top .selectize-control.single {
  max-height: 48px;
  padding: 0;
}
#dashboard-right-content .selectize-control.single input,
body .selectize-control.single input,
#section-content-top .selectize-control.single input {
  font-size: 18px;
  line-height: 1em!important;
  color: #000;
  vertical-align: baseline;
}
#dashboard-right-content .selectize-control.single input::placeholder,
body .selectize-control.single input::placeholder,
#section-content-top .selectize-control.single input::placeholder {
  color: #000;
}
#dashboard-right-content .selectize-control.single .remove-single,
body .selectize-control.single .remove-single,
#section-content-top .selectize-control.single .remove-single {
  display: none;
}
#dashboard-right-content .selectize-control.single .selectize-input.input-active,
body .selectize-control.single .selectize-input.input-active,
#section-content-top .selectize-control.single .selectize-input.input-active,
#dashboard-right-content .selectize-control.single .selectize-input,
body .selectize-control.single .selectize-input,
#section-content-top .selectize-control.single .selectize-input {
  background: none;
  padding: 14px 10px;
  font-size: 18px;
  line-height: 1em;
  border: 1px solid rgba(0, 0, 0, 0.12);
  max-height: 48px;
  border-radius: 0;
  font-family: Roboto;
}
#dashboard-right-content .selectize-control.single .selectize-input.input-active span,
body .selectize-control.single .selectize-input.input-active span,
#section-content-top .selectize-control.single .selectize-input.input-active span,
#dashboard-right-content .selectize-control.single .selectize-input span,
body .selectize-control.single .selectize-input span,
#section-content-top .selectize-control.single .selectize-input span {
  font-weight: 300;
}
#dashboard-right-content .selectize-control.single .selectize-input.input-active:after,
body .selectize-control.single .selectize-input.input-active:after,
#section-content-top .selectize-control.single .selectize-input.input-active:after,
#dashboard-right-content .selectize-control.single .selectize-input:after,
body .selectize-control.single .selectize-input:after,
#section-content-top .selectize-control.single .selectize-input:after {
  display: none;
}
#dashboard-right-content .selectize-control.single .selectize-input.input-active span,
body .selectize-control.single .selectize-input.input-active span,
#section-content-top .selectize-control.single .selectize-input.input-active span,
#dashboard-right-content .selectize-control.single .selectize-input span,
body .selectize-control.single .selectize-input span,
#section-content-top .selectize-control.single .selectize-input span {
  color: #000;
}
#dashboard-right-content .selectize-control.single .selectize-input.input-active.has-items input,
body .selectize-control.single .selectize-input.input-active.has-items input,
#section-content-top .selectize-control.single .selectize-input.input-active.has-items input,
#dashboard-right-content .selectize-control.single .selectize-input.has-items input,
body .selectize-control.single .selectize-input.has-items input,
#section-content-top .selectize-control.single .selectize-input.has-items input {
  font-size: 16px;
}
#dashboard-right-content .selectize-control.single .selectize-input.input-active,
body .selectize-control.single .selectize-input.input-active,
#section-content-top .selectize-control.single .selectize-input.input-active {
  border-color: #66afe9 !important;
}
#dashboard-right-content .selectize-control.single .selectize-dropdown,
body .selectize-control.single .selectize-dropdown,
#section-content-top .selectize-control.single .selectize-dropdown {
  background: #fff;
  color: #000;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}
#dashboard-right-content .selectize-control.single .selectize-dropdown .option,
body .selectize-control.single .selectize-dropdown .option,
#section-content-top .selectize-control.single .selectize-dropdown .option {
  color: #333;
  background: #fff;
}
#dashboard-right-content .selectize-control.single .selectize-dropdown .option.active,
body .selectize-control.single .selectize-dropdown .option.active,
#section-content-top .selectize-control.single .selectize-dropdown .option.active {
  color: #fff;
  background: #009fda;
}
.selectize-control.multi .selectize-input.input-active,
.selectize-control.multi .selectize-input {
  border-radius: 0;
}
.selectize-control.multi .selectize-dropdown.multi {
  border-radius: 0;
  margin-top: 0;
}
.selectize-control.multi .selectize-dropdown.multi .selectize-dropdown-content {
  background: #fff;
}
/*=================FORGET/RESET PASSWORD PAGES =================*/
.page-node-406 #section-main-content .MainContent,
.page-node-407 #section-main-content .MainContent,
.page-node-390 #section-main-content .MainContent,
.page-node-507 #section-main-content .MainContent,
.page-node-508 #section-main-content .MainContent {
  width: 100%;
  margin: 0;
  padding: 0;
}
#block-block-290,
#block-block-296 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#PasswordPatternMessage ul {
  list-style: none;
  padding-left: 5px;
}
#PasswordPatternMessage ul li span {
  margin-right: 1em;
}
/* DATE PICKER */
/*

<div class='formInput dateSelector'>
    <i class='fa fa-calendar-o'></i>
    <input type='text' name='Birth' id='dateofbirth' placeholder='Birth date' />
</div>

*/
.formInput {
  position: relative;
  font: 300 1em/48px "Open Sans";
  margin: 0 0 8px;
  padding: 0;
  border-bottom: 1px solid #c0c0c0;
  border-radius: 4px;
  overflow: hidden;
  color: #505050;
}
.formInput:hover {
  color: black;
}
.formInput i {
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 48px;
  height: 47px;
  line-height: 48px;
  text-align: center;
  font-size: 1em;
  transition: box-shadow 0.2s, color 0.3s, background-color 0.4s;
}
.formInput input {
  box-sizing: border-box;
  z-index: 1;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  float: left;
  font-size: 1em;
  font: inherit;
  border: 0;
  margin: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  width: 100%;
  height: 47px;
  line-height: 47px;
  background: transparent;
  color: inherit;
  transition: border-color 0.2s, color 0.2s, background-color 0.4s;
}
.formInput input::placeholder {
  color: #333;
}
.formInput.hasTextarea {
  line-height: 24px;
  height: 191px;
}
.formInput.hasTextarea i {
  border-radius: 0 0 3px;
}
.formInput textarea {
  box-sizing: border-box;
  resize: none;
  z-index: 1;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  float: left;
  font-size: 1em;
  font: inherit;
  border: 1px solid transparent;
  border-radius: inherit;
  margin: 0;
  padding: 12px 4px 6px 56px;
  width: 100%;
  height: 100%;
  line-height: 24px;
  background: transparent;
  color: inherit;
  transition: border-color 0.2s, color 0.2s, background-color 0.4s;
}
.formInput input[disabled]:active,
.formInput input[disabled]:focus,
.formInput input[disabled]:hover {
  border-color: transparent;
  background-color: transparent;
}
.formInput input:active,
.formInput input:focus,
.formInput textarea:active,
.formInput textarea:focus,
.formInput.dateSelector:hover input {
  border-color: #b0b0b0;
  outline: none;
  color: black;
  background-color: rgba(0, 0, 0, 0.025);
}
.formInput.radioBtn {
  padding-bottom: 24px;
}
.formInput.radioBtn .formInputChild {
  font: 300 1em/28px "Open Sans";
}
.formInput.radioBtn input {
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 7px 9px;
  position: relative;
}
.formInput.radioBtn label {
  font-size: 0.95em;
}
.formInput .formInputDescription {
  position: relative;
  padding: 0 0 0 56px;
}
.formInput .formInputChild {
  font: 300 1em/48px "Open Sans";
  position: relative;
  padding: 0 0 0 56px;
}
.formInput.checkboxBtn input {
  width: 14px;
  height: 14px;
  margin: 17px 16px 16px;
  padding: 0;
}
.formInput.checkboxBtn i {
  display: none;
}
.formInput.dateSelector {
  transition: background-color 0.2s;
}
/* CUSTOM CALENDAR */
.calendar {
  position: relative;
  display: block;
  font: 500 0.8em/30px "Open Sans";
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  color: #404040;
}
.calendar .view {
  position: relative;
  float: left;
}
.calendar .nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.calendar .nav .btn {
  position: absolute;
  display: block;
  z-index: 1;
  cursor: pointer;
  cursor: hand;
  width: 32px;
  height: 32px;
  line-height: 31px;
  top: 0;
  left: auto;
  transition: opacity 0.5s;
  border-radius: 4px;
}
.calendar .nav .btn:hover {
  color: #808080;
  background: #e0e0e0;
  border-color: #606060;
}
.calendar .nav .prev {
  left: 0;
}
.calendar .nav .prev.prev-10-year {
  left: 65px;
}
.calendar .nav .prev-year {
  opacity: 1;
  left: 32px;
}
.calendar .nav:hover .prev-year {
  opacity: 1;
}
.calendar .nav .next-year {
  opacity: 1;
  right: 32px !important;
}
.calendar .nav:hover .next-year {
  opacity: 1;
}
.calendar .nav .next {
  right: 0;
}
.calendar .nav .next.next-10-year {
  right: 65px;
}
.calendar .head .title {
  font: 300 1.2em/32px "Open Sans";
  position: relative;
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 6px;
  font-size: 1.4em;
}
.calendar .head span {
  cursor: pointer;
}
.calendar .row {
  clear: both;
}
.calendar .row.th {
  font-weight: 700;
  text-transform: uppercase;
  height: 40px;
}
.calendar .row.th .C {
  border-bottom: 1px solid #c0c0c0;
  border-radius: 0;
}
.calendar .C {
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  float: left;
  transition: background-color 0.05s, color 0.05s;
  border-radius: 50%;
}
.calendar .C.mn {
  cursor: pointer;
  cursor: hand;
}
.calendar .C.mn:hover {
  background: #565656;
  color: white;
}
.calendar .C.g {
  color: #a0a0a0;
  font-weight: 300;
}
.calendar .C.slctd {
  background: #202020;
  color: white;
  font-size: 1.15em;
  font-weight: 300;
}
.calendar .C.today {
  font-weight: 900;
  font-size: 1.3em;
}
.calendar .selected {
  margin: 0 0 0 64px;
  float: right;
  text-align: center;
  width: 280px;
}
.calendar .selected .desc {
  border-bottom: 1px solid #c0c0c0;
}
.calendar .selected .val {
  padding: 0 8px;
  background: #f0f0f0;
  color: #808080;
}
.calendar .dayArea {
  position: relative;
  width: 280px;
  height: 240px;
  overflow: hidden;
}
.calendar .dayArea .mArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.desktop-hidden {
  display: none;
}
.mobile-hidden {
  display: block;
}
@media all and (max-width: 763px) {
  .desktop-hidden {
    display: block;
  }
  .mobile-hidden {
    display: none;
  }
}
/* POPUP GOOGLE CHROME DOWNLOAD FOR EDGE / IE */
.msie-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  animation-name: alert-slidedown;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: 1;
  animation-fill-mode: none;
  animation-play-state: running;
  -webkit-animation-name: alert-slidedown;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
  -webkit-animation-direction: alternate;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: none;
  -webkit-animation-play-state: running;
}
.msie-alert .alert-container {
  width: 650px;
  padding: 30px;
  height: auto;
  top: calc(50% - 150px);
  left: calc(50% - 325px);
  position: fixed;
  background: #fff;
}
.msie-alert .alert-container h3 {
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
}
.msie-alert .alert-container .close-ie-alert {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 0 5px;
  border: 1px solid #b5b5b5;
  cursor: pointer;
}
.msie-alert .alert-container .alert-body {
  color: #000;
  font-size: 1.2em;
  padding-bottom: 20px;
}
.msie-alert .alert-container .alert-footer .chrome-icon {
  width: auto;
  height: 100px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(/sites/default/files/general-icon/chrome-download.png);
}
@keyframes alert-slidedown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes alert-slidedown {
  0% {
    top: -50px;
  }
  100% {
    top: 0px;
  }
}
.parallaxie {
  overflow: hidden;
}
.parallax-img {
  background-position: 50% 35%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 110%;
  height: 930px;
  position: fixed;
  z-index: -2;
  top: 0px;
}
@media all and (max-width: 768px) {
  .parallax-img {
    width: 100%;
    height: 870px;
    background-position: 60% 15%;
  }
}
@media all and (max-width: 570px) {
  .parallax-img {
    display: none;
  }
}
#section-pd-features {
  position: relative;
  z-index: 10;
}
.page-node-86 #block-block-123 {
  overflow: hidden;
  background-attachment: scroll!important;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}
.page-node-86 #block-block-123 .content {
  position: relative;
}
@media all and (max-width: 570px) {
  .page-node-86 #block-block-123 {
    background-position: 80% 0px !important;
    background-size: 100% !important;
    background-image: url(/sites/default/files/PROFESSIONALDEVELOPMENT/pd-featured-images/pd-mobile.png) !important;
  }
}
#section-pd-features {
  z-index: 999;
  background: #fff;
  position: relative;
}
/* PARALLAX BACKGROUND */
[class*="jarallax"],
.simple-image-banner {
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  z-index: 0;
  position: relative;
}
[class*="jarallax"] .content,
.simple-image-banner .content {
  z-index: 2;
  position: relative;
}
@media all and (max-width: 1200px) {
  [class*="jarallax"],
  .simple-image-banner {
    min-height: 400px;
  }
}
@media all and (max-width: 768px) {
  [class*="jarallax"],
  .simple-image-banner {
    min-height: 300px;
  }
}
@media all and (max-width: 570px) {
  [class*="jarallax"],
  .simple-image-banner {
    min-height: 200px;
  }
}
[class*="jarallax"].general-banner,
.simple-image-banner.general-banner {
  display: flex;
  justify-content: center;
  align-items: center;
}
[class*="jarallax"].border-10,
.simple-image-banner.border-10 {
  border-bottom: 10px solid #e7e8ea;
}
[class*="jarallax"].border-top-10,
.simple-image-banner.border-top-10 {
  border-top: 10px solid #e7e8ea;
}
.border-10 {
  border-bottom: 10px solid #e7e8ea;
}
.border-top-10 {
  border-top: 10px solid #e7e8ea;
}
.border-pink {
  border-color: #920075;
}
.border-orange {
  border-color: #ffa02e;
}
.img-parallax {
  width: 100vmax;
  z-index: 1;
  position: absolute;
  top: 48.4435%;
  transform: translate(-50%, -48.4435%);
  left: 50%;
  pointer-events: none;
  max-width: unset !important;
}
@media all and (max-width: 570px) {
  .img-parallax {
    width: 150vw;
  }
}
.img-parallax.podcastImage {
  display: block !important;
}
/* ADJUST PARALLAX ON MOBILE */
@media all and (max-width: 570px) {
  #section-banner .region-banner .block .img-parallax {
    top: -25%;
    transform: translate(-50%, 0);
  }
}
@media all and (max-width: 1200px) {
  #section-banner .region-banner .block .img-parallax {
    top: -40%;
    transform: translate(-50%, 0);
  }
}
@media all and (max-width: 480px) {
  #section-banner .region-banner .block .img-parallax {
    top: -20%;
    transform: translate(-50%, 0);
  }
}
/* NEXT FEATURED BANNERS */
#block-block-310,
#block-block-309 {
  display: block;
  float: left;
  width: 100%;
}
#block-block-309 {
  display: block;
  margin: 50px auto 50px;
  float: left;
  width: 100%;
}
#block-block-309 a {
  margin: 0 auto;
}
@media all and (max-width: 570px) {
  #block-block-309 {
    margin: 50px auto 50px;
  }
}
/* NON-MEMBER CTA */
#non-member {
  background: #fff;
}
#non-member .light-heading {
  color: #009fda;
  text-align: center;
  font-weight: 500;
  font-size: 2em;
}
#non-member .extra-heading {
  text-align: left!important;
}
/* FOR ADMIN CONTEXTTUAL LINKS */
#section-banner .contextual-links-region {
  z-index: 10!important;
}
/* SEARCH RESULT PAGE */
.page-search-node #section-main-content {
  padding: 50px 0;
  /* ADVANCED SEARCH BLOCK */
}
.page-search-node #section-main-content .MainContent {
  width: 100%;
}
.page-search-node #section-main-content .MainContent .search-form {
  display: block;
  width: 50%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 50px;
}
@media all and (max-width: 1200px) {
  .page-search-node #section-main-content .MainContent .search-form {
    width: 70%;
  }
}
@media all and (max-width: 768px) {
  .page-search-node #section-main-content .MainContent .search-form {
    width: 90%;
  }
}
@media all and (max-width: 480px) {
  .page-search-node #section-main-content .MainContent .search-form {
    width: 100%;
  }
}
.page-search-node #section-main-content .MainContent .search-form #edit-basic .form-item {
  text-align: center;
}
.page-search-node #section-main-content .MainContent .search-form #edit-basic .form-item label {
  font-size: 3em;
  margin-bottom: 25px;
  display: block;
  color: #009fda;
}
@media all and (max-width: 570px) {
  .page-search-node #section-main-content .MainContent .search-form #edit-basic .form-item label {
    font-size: 2em;
  }
}
.page-search-node #section-main-content .MainContent .search-form #edit-basic .form-item input {
  width: 100%;
  background: none;
  padding-left: 100px;
}
.page-search-node #section-main-content .MainContent .search-form #edit-basic {
  position: relative;
}
.page-search-node #section-main-content .MainContent .search-form #edit-submit {
  position: absolute;
  bottom: 0;
  left: 0;
  background: none;
  color: #848688;
  pointer-events: none;
  cursor: default;
}
.page-search-node #section-main-content .MainContent .search-form + h2 {
  font-family: Roboto;
  color: #848688;
  font-size: 2em;
}
@media all and (max-width: 570px) {
  .page-search-node #section-main-content .MainContent .search-form + h2 {
    font-size: 1.6em;
  }
}
.page-search-node #section-main-content .MainContent .search-results {
  padding: 0;
}
.page-search-node #section-main-content .search-advanced {
  margin-top: 25px;
}
.page-search-node #section-main-content .search-advanced legend {
  border: 0!important;
}
.page-search-node #section-main-content .criterion {
  width: 40%;
  margin-right: 0;
  padding-right: 20px;
}
@media all and (max-width: 570px) {
  .page-search-node #section-main-content .criterion {
    width: 100%;
    padding: 1px;
  }
}
.page-search-node #section-main-content .criterion input {
  background: none;
}
.page-search-node #section-main-content .criterion + .criterion {
  width: 60%;
  margin-right: 0;
  margin-bottom: 25px;
}
@media all and (max-width: 570px) {
  .page-search-node #section-main-content .criterion + .criterion {
    width: 100%;
  }
}
.page-search-node #section-main-content .criterion + .criterion .form-checkboxes .form-item {
  width: 50%;
  float: left;
}
.page-search-node #section-main-content .action input:hover {
  color: #fff;
  opacity: 0.8;
}
.page-search-node #section-main-content .action input:focus {
  color: #fff;
}
/* FADED EFFECT */
.faded-on-hover > div {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.faded-on-hover > div.faded {
  opacity: 0.6;
}
@media all and (max-width: 570px) {
  .html #block-dexp-menu-dexp-menu-block-1 #dexp-dropdown {
    padding-bottom: 60px;
  }
}
/* STANDARD FONT STYLE */
body .block,
body {
  /* PREDEFINED WHITE SPACE */
  /* PREDEFINED WHITE SPACE WITH KEYLINE */
  /* PREDEFINED PADDING-BOTTOM */
}
body .block h1.lead-heading,
body h1.lead-heading {
  font-size: 49px;
  line-height: 65px;
  font-weight: 700;
  color: #009fda;
  margin-bottom: 0;
  font-family: Cairo;
}
@media all and (max-width: 570px) {
  body .block h1.lead-heading,
  body h1.lead-heading {
    font-size: 40px;
    line-height: 45px;
  }
}
body .block h2.lead-heading,
body h2.lead-heading,
body .block h2,
body h2 {
  font-size: 3em;
  line-height: 1.1em;
  display: block;
  font-weight: 500;
  color: #009fda;
  margin-top: 0;
  padding-bottom: 0;
  font-family: Cairo;
  margin-bottom: 20px;
}
@media all and (max-width: 570px) {
  body .block h2.lead-heading,
  body h2.lead-heading,
  body .block h2,
  body h2 {
    font-size: 2.5em;
  }
}
body .block h2.lead-heading + .sub-heading,
body h2.lead-heading + .sub-heading,
body .block h2 + .sub-heading,
body h2 + .sub-heading {
  padding-top: 20px;
}
body .block h3.sub-heading,
body h3.sub-heading,
body .block h3,
body h3 {
  color: #009fda;
  font-size: 1.8em;
  font-family: Roboto;
  font-weight: 700;
  padding-top: 35px;
  margin: 12px 0px 10px;
  letter-spacing: 0px;
}
body .block h3.sub-heading + table,
body h3.sub-heading + table,
body .block h3 + table,
body h3 + table {
  margin-top: 18px;
}
body .block h4.sub-heading,
body h4.sub-heading {
  color: #009fda;
}
body .block .intro,
body .intro {
  padding-bottom: 30px;
}
body .block .intro p,
body .intro p {
  font-size: 1.6em;
  line-height: 1.3em;
}
body .block .intro + .sub-heading,
body .intro + .sub-heading {
  padding-top: 0;
}
body .block p,
body p {
  font-size: 1.2em;
  padding-bottom: 0;
  line-height: 1.4em;
  margin: 0;
  margin-bottom: 15px;
  color: black;
}
body .block p.intro,
body p.intro {
  font-size: 1.6em;
}
body .block p b,
body p b,
body .block p strong,
body p strong {
  padding-top: 0;
}
body .block p.no-bottom-space,
body p.no-bottom-space {
  margin-bottom: 0;
}
body .block ul,
body ul,
body .block ol,
body ol {
  font-size: 1.2em;
  color: #000;
  margin-bottom: 30px;
}
@media all and (max-width: 570px) {
  body .block ul,
  body ul,
  body .block ol,
  body ol {
    padding-left: 20px;
    flex-wrap: wrap;
  }
}
@media all and (max-width: 570px) {
  body .block ul.nav,
  body ul.nav,
  body .block ol.nav,
  body ol.nav {
    padding-left: 0px;
  }
}
body .block ul.custom-list,
body ul.custom-list {
  padding-left: 15px;
}
body .block ul.custom-list li,
body ul.custom-list li {
  padding-left: 0px;
}
body .block b,
body b,
body .block strong,
body strong {
  padding-top: 10px;
  display: inline;
}
body .block a,
body a {
  color: #009fda;
}
body .block a b,
body a b,
body .block a strong,
body a strong {
  font-family: Roboto;
  font-weight: 700;
  opacity: 1;
  padding-top: 0;
}
body .block .dark-link,
body .dark-link {
  color: #000;
  transition: all 0.2s linear;
}
body .block .dark-link:hover,
body .dark-link:hover {
  color: #009fda;
}
body .block .dark-link a,
body .dark-link a {
  color: #000;
  text-decoration: underline;
  transition: all 0.2s linear;
}
body .block .dark-link a:hover,
body .dark-link a:hover {
  color: #009fda;
}
body .block .space-100,
body .space-100 {
  height: 100px;
  display: block;
  width: 100%;
}
@media all and (max-width: 570px) {
  body .block .space-100,
  body .space-100 {
    height: 50px;
  }
}
body .block .space-80,
body .space-80 {
  height: 80px;
  display: block;
  width: 100%;
}
@media all and (max-width: 570px) {
  body .block .space-80,
  body .space-80 {
    height: 40px;
  }
}
body .block .space-70,
body .space-70 {
  height: 70px;
  display: block;
  width: 100%;
}
@media all and (max-width: 570px) {
  body .block .space-70,
  body .space-70 {
    height: 35px;
  }
}
body .block .space-50,
body .space-50 {
  height: 50px;
  display: block;
  width: 100%;
}
@media all and (max-width: 570px) {
  body .block .space-50,
  body .space-50 {
    height: 25px;
  }
}
body .block .space-30,
body .space-30 {
  height: 30px;
  display: block;
  width: 100%;
}
@media all and (max-width: 570px) {
  body .block .space-30,
  body .space-30 {
    height: 15px;
  }
}
body .block .space-35,
body .space-35 {
  height: 35px;
  display: block;
  width: 100%;
}
@media all and (max-width: 570px) {
  body .block .space-35,
  body .space-35 {
    height: 15px;
  }
}
body .block .space-40,
body .space-40 {
  height: 40px;
  display: block;
  width: 100%;
}
@media all and (max-width: 570px) {
  body .block .space-40,
  body .space-40 {
    height: 20px;
  }
}
body .block .space-20,
body .space-20 {
  height: 30px;
  display: block;
  width: 100%;
}
@media all and (max-width: 570px) {
  body .block .space-20,
  body .space-20 {
    height: 10px;
  }
}
body .block .space-10,
body .space-10 {
  height: 10px;
  display: block;
  width: 100%;
}
@media all and (max-width: 570px) {
  body .block .space-10,
  body .space-10 {
    height: 5px;
  }
}
body .block .separator-50,
body .separator-50 {
  display: block;
  float: left;
  width: 100%;
  height: 0;
  margin: 50px 0 0 0;
  padding: 50px 0 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
body .block .separator-20,
body .separator-20 {
  display: block;
  float: left;
  width: 100%;
  height: 0;
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
body .block .bottom-space-50,
body .bottom-space-50 {
  margin-bottom: 50px;
}
@media all and (max-width: 570px) {
  body .block .bottom-space-50,
  body .bottom-space-50 {
    margin-bottom: 25px;
  }
}
body .block .bottom-space-20,
body .bottom-space-20 {
  margin-bottom: 20px;
}
@media all and (max-width: 570px) {
  body .block .bottom-space-20,
  body .bottom-space-20 {
    margin-bottom: 10px;
  }
}
body .block .ui-widget input,
body .ui-widget input,
body .block .ui-widget select,
body .ui-widget select,
body .block .ui-widget textarea,
body .ui-widget textarea,
body .block .ui-widget button,
body .ui-widget button {
  font-family: Roboto;
  font-size: 18px;
  color: #000;
}
body .block .ui-widget input[type="submit"],
body .ui-widget input[type="submit"],
body .block .ui-widget select[type="submit"],
body .ui-widget select[type="submit"],
body .block .ui-widget textarea[type="submit"],
body .ui-widget textarea[type="submit"],
body .block .ui-widget button[type="submit"],
body .ui-widget button[type="submit"] {
  color: #fff;
}
/* STANDARD TABLE */
body table,
body .block table {
  width: 100%;
  max-width: 700px;
  font-family: Roboto;
  font-size: 1.2em;
  color: #000;
  margin-top: 18px;
  margin-bottom: 15px;
}
body table tbody,
body .block table tbody {
  border: 0;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
}
body table tbody tr,
body .block table tbody tr {
  font-size: 1em;
  border-bottom: 1px solid #e0e0e0;
}
body table tbody tr:last-of-type,
body .block table tbody tr:last-of-type {
  border-bottom: 0;
}
body table tbody tr:hover,
body .block table tbody tr:hover {
  background: #f0f2f2;
}
body table tbody td,
body .block table tbody td {
  font-size: 1em;
  padding: 10px 15px;
}
body table + [class^="space-"],
body .block table + [class^="space-"] {
  float: left;
}
/* STANDARD RIGHT SIDEBAR */
#sb-container.region-right-sidebar .post-img div {
  height: 65%;
}
.block-system-main-block .right-sidebar,
.right-sidebar,
.region-right-sidebar {
  position: relative;
}
.block-system-main-block .right-sidebar.theme-pink .underline-heading:after,
.right-sidebar.theme-pink .underline-heading:after,
.region-right-sidebar.theme-pink .underline-heading:after {
  background: #920075;
}
.block-system-main-block .right-sidebar.theme-pink .nav li > a:hover,
.right-sidebar.theme-pink .nav li > a:hover,
.region-right-sidebar.theme-pink .nav li > a:hover {
  color: #920075;
}
.block-system-main-block .right-sidebar.theme-orange .underline-heading:after,
.right-sidebar.theme-orange .underline-heading:after,
.region-right-sidebar.theme-orange .underline-heading:after {
  background: #ffa02e;
}
.block-system-main-block .right-sidebar.theme-orange .nav li > a:hover,
.right-sidebar.theme-orange .nav li > a:hover,
.region-right-sidebar.theme-orange .nav li > a:hover {
  color: #ffa02e;
}
@media all and (max-width: 992px) {
  .block-system-main-block .right-sidebar.pd-sidebar,
  .right-sidebar.pd-sidebar,
  .region-right-sidebar.pd-sidebar {
    display: block;
  }
}
.block-system-main-block .right-sidebar .block,
.right-sidebar .block,
.region-right-sidebar .block {
  margin-bottom: 40px;
}
.block-system-main-block .right-sidebar .underline-heading,
.right-sidebar .underline-heading,
.region-right-sidebar .underline-heading {
  position: relative;
  font-family: Cairo;
  font-size: 1.4em;
  text-transform: uppercase;
}
.block-system-main-block .right-sidebar .underline-heading:after,
.right-sidebar .underline-heading:after,
.region-right-sidebar .underline-heading:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: #009fda;
  left: 0;
  bottom: -5px;
}
.block-system-main-block .right-sidebar .nav,
.right-sidebar .nav,
.region-right-sidebar .nav {
  margin-top: 30px;
  max-width: 230px;
  padding-left: 0;
}
.block-system-main-block .right-sidebar .nav li,
.right-sidebar .nav li,
.region-right-sidebar .nav li {
  padding-left: 0;
  font-size: 1em;
}
.block-system-main-block .right-sidebar .nav li > a,
.right-sidebar .nav li > a,
.region-right-sidebar .nav li > a {
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: 400;
  font-family: Roboto;
  transition: all 0.3s linear;
  text-decoration: none;
}
.block-system-main-block .right-sidebar .nav li > a:hover,
.right-sidebar .nav li > a:hover,
.region-right-sidebar .nav li > a:hover {
  color: #009fda;
}
.block-system-main-block .right-sidebar .nav li:first-child a,
.right-sidebar .nav li:first-child a,
.region-right-sidebar .nav li:first-child a {
  border-top: 0px;
}
.block-system-main-block .right-sidebar .nav li:last-child a,
.right-sidebar .nav li:last-child a,
.region-right-sidebar .nav li:last-child a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
/* PARTNERS LOGO CAROUSEL MOBILE */
@media all and (max-width: 570px) {
  .bxslide {
    margin: 0!important;
  }
}
/* STANDARD CLOSE BUTTON */
.close-btn {
  cursor: pointer;
  position: absolute;
  top: 36px;
  left: 30px;
  width: 25px;
  height: 25px;
  line-height: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  background: none;
  border: 1px solid #b5b5b5;
  transition: 0.2s linear;
}
.close-btn:before {
  content: '';
  width: 20px;
  transform: rotate(45deg);
  height: 2px;
  position: absolute;
  background: #b5b5b5;
}
.close-btn:after {
  content: '';
  position: absolute;
  width: 20px;
  transform: rotate(135deg);
  height: 2px;
  background: #b5b5b5;
}
.close-btn:hover {
  background: rgba(0, 0, 0, 0.3);
}
/* BACK TO PREV NAV */
.bottom-nav a {
  color: #333;
  transition: all 0.3s linear;
  padding: 0;
  font-size: 1.2em;
}
.bottom-nav a:hover {
  color: #009fda;
  opacity: 1;
}
/* RESTYLE ACCORDION PANEL*/
#section-main-content #dexp-accordions-wrapper.panel-group .panel-heading a {
  color: #fff;
}
#section-main-content #dexp-accordions-wrapper.panel-group .panel-heading a.collapsed {
  color: #009fda;
}
/* HIDE/SHOW ON LOGIN STATE */
.user-logged-in .user-logged-in-hide {
  display: none;
}
.user-log-out .user-log-out-hide {
  display: none;
}
/* DEFAULT RIGHT SIDEBAR WITH DRUPAL BLOCKS */
.region-right-sidebar h3.headline,
.right-sidebar h3.headline {
  position: relative;
  font-family: Cairo;
  font-size: 1.4em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.region-right-sidebar h3.sub-heading,
.right-sidebar h3.sub-heading {
  font-size: 24px!important;
}
.region-right-sidebar h3.text-center,
.right-sidebar h3.text-center {
  max-width: 255px;
  margin-left: auto;
  margin-right: auto;
}
.region-right-sidebar .brd-headling,
.right-sidebar .brd-headling {
  border-color: #009fda;
}
.region-right-sidebar .underline-heading,
.right-sidebar .underline-heading {
  position: relative;
  font-family: Cairo;
  font-size: 1.4em;
  text-transform: uppercase;
}
.region-right-sidebar .underline-heading:after,
.right-sidebar .underline-heading:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: #009fda;
  left: 0;
  bottom: -5px;
}
.region-right-sidebar ul,
.right-sidebar ul {
  margin: 30px 0 0 0;
}
.region-right-sidebar ul li,
.right-sidebar ul li {
  border: 0;
  margin: 0;
  padding: 0;
  line-height: 1.2em;
  font-size: 1em;
  list-style: none;
}
.region-right-sidebar ul li a,
.right-sidebar ul li a {
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: 400;
  font-family: Roboto;
  transition: all 0.3s linear;
  text-decoration: none;
  display: block;
}
.region-right-sidebar ul li a:hover,
.right-sidebar ul li a:hover {
  color: #009fda;
}
.region-right-sidebar ul li:first-child a,
.right-sidebar ul li:first-child a {
  border-top: 0;
}
.region-right-sidebar ul li.active a,
.right-sidebar ul li.active a {
  color: #009fda;
}
.region-right-sidebar .nav .views-field-title,
.right-sidebar .nav .views-field-title {
  border: 0;
  margin: 0;
  padding: 0;
  line-height: 1.2em;
  font-size: 1.2em;
  list-style: none;
}
.region-right-sidebar .nav .views-field-title a,
.right-sidebar .nav .views-field-title a {
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: 400;
  font-family: Roboto;
  transition: all 0.3s linear;
  text-decoration: none;
  display: block;
}
.region-right-sidebar .nav .views-field-title a:hover,
.right-sidebar .nav .views-field-title a:hover {
  color: #009fda;
}
.region-right-sidebar .nav .views-field-title a.active,
.right-sidebar .nav .views-field-title a.active {
  color: #009fda;
}
.region-right-sidebar .nav .views-field-title:first-child a,
.right-sidebar .nav .views-field-title:first-child a {
  border-top: 0;
}
.region-right-sidebar .nav .views-field-title:last-child a,
.right-sidebar .nav .views-field-title:last-child a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.Pagination {
  display: none;
}
/* STANDARD BUTTONS */
body .block .secondary-button {
  color: #fff;
  border: 1px solid #fff;
  font-family: Cairo;
  font-weight: 300;
  text-transform: uppercase;
  padding: 15px 0px;
  width: 80%;
  text-align: center;
  max-width: 294px;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 10;
}
body .block .secondary-button:hover,
body .block .secondary-button:focus {
  color: #019fda;
  background: #ffffff;
  font-weight: 700;
}
body .block .secondary-button:hover:before,
body .block .secondary-button:focus:before {
  opacity: 1;
}
body .block .primary-button {
  font-size: 15px;
  font-family: Cairo;
  color: white;
  background-color: #009fda;
  padding: 9px 15px;
  font-weight: 400;
  display: flex;
  max-width: max-content;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
}
body .block .primary-button:hover {
  opacity: 0.9;
}
body .block .primary-button.large {
  padding: 24px 15px;
  font-size: 20px;
}
body .block .simple-img-link {
  display: flex;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  max-width: max-content;
  transition: all 0.3s ease;
}
body .block .simple-img-link:hover {
  transform: scale(1.03);
}
/* DEFAULT TOP BANNER W BLUE STRIPE */
body #section-banner .block .top-banner,
.html #section-banner .block .top-banner {
  padding: 170px 25% 70px;
}
@media all and (max-width: 992px) {
  body #section-banner .block .top-banner,
  .html #section-banner .block .top-banner {
    padding: 70px 15% 30px;
  }
}
@media all and (max-width: 570px) {
  body #section-banner .block .top-banner,
  .html #section-banner .block .top-banner {
    padding: 70px 10% 30px;
  }
}
body #section-banner .block .top-banner.extended-width,
.html #section-banner .block .top-banner.extended-width {
  padding: 170px 5% 70px;
  max-width: calc(1045px + 5%);
  margin: 0 auto;
}
body #section-banner .block .top-banner.controlled-height,
.html #section-banner .block .top-banner.controlled-height {
  min-height: 450px;
}
@media all and (max-width: 992px) {
  body #section-banner .block .top-banner.controlled-height,
  .html #section-banner .block .top-banner.controlled-height {
    min-height: 350px;
  }
}
@media all and (max-width: 570px) {
  body #section-banner .block .top-banner.controlled-height,
  .html #section-banner .block .top-banner.controlled-height {
    min-height: 250px;
  }
}
body #section-banner .block .top-banner .page-main-header,
.html #section-banner .block .top-banner .page-main-header {
  color: #fff;
  font-family: Cairo;
  font-size: 4em;
  margin: 0px auto;
  line-height: 1em;
  text-transform: uppercase;
  text-align: center;
}
@media all and (max-width: 768px) {
  body #section-banner .block .top-banner .page-main-header,
  .html #section-banner .block .top-banner .page-main-header {
    font-size: 3.5em;
  }
}
@media all and (max-width: 570px) {
  body #section-banner .block .top-banner .page-main-header,
  .html #section-banner .block .top-banner .page-main-header {
    font-size: 2.5em;
  }
}
body #section-banner .block .top-banner .page-main-header.size-sm,
.html #section-banner .block .top-banner .page-main-header.size-sm {
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0.5px;
  font-family: Roboto;
  text-transform: inherit;
  font-weight: 400;
}
@media all and (max-width: 570px) {
  body #section-banner .block .top-banner .page-main-header.size-sm,
  .html #section-banner .block .top-banner .page-main-header.size-sm {
    font-size: 30px;
    line-height: 32px;
  }
}
body #section-banner .block .top-banner .separator,
.html #section-banner .block .top-banner .separator {
  width: 100%;
  position: relative;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  margin: 20px 0;
}
@media all and (max-width: 570px) {
  body #section-banner .block .top-banner .separator,
  .html #section-banner .block .top-banner .separator {
    margin: 10px 0;
  }
}
body #section-banner .block .top-banner .separator:after,
.html #section-banner .block .top-banner .separator:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 20px;
  background: #fff;
}
body #section-banner .block .top-banner .text-container,
.html #section-banner .block .top-banner .text-container {
  font-family: Roboto;
  color: #fff;
  font-size: 1.4em;
  font-weight: 300;
  text-align: left;
}
@media all and (max-width: 570px) {
  body #section-banner .block .top-banner .text-container,
  .html #section-banner .block .top-banner .text-container {
    font-size: 1.2em;
  }
}
body #section-banner .block .top-banner .arrowDown,
.html #section-banner .block .top-banner .arrowDown {
  border: 1px #fff solid;
  transform: scale(0.7);
  margin: 25px auto 15px;
}
body #section-banner .block .sub-top-banner,
.html #section-banner .block .sub-top-banner {
  font-family: Roboto;
  padding: 20px 0;
  margin: 0 auto;
  background-color: rgba(0, 159, 218, 0.9);
  color: #fff;
  font-size: 2em;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
}
@media all and (max-width: 570px) {
  body #section-banner .block .sub-top-banner,
  .html #section-banner .block .sub-top-banner {
    padding: 25px 25px;
    font-size: 1.7em;
    background-color: #009fda;
  }
}
body #section-banner .block .sub-top-banner.dark,
.html #section-banner .block .sub-top-banner.dark {
  background-color: #233143;
}
body #section-banner .block .sub-top-banner.width-cta-btn,
.html #section-banner .block .sub-top-banner.width-cta-btn {
  margin: 0 auto;
  font-family: Roboto;
  color: #fff;
  font-size: 1.4em;
  font-weight: 400;
  display: flex;
  justify-content: center;
  text-align: left;
  padding: 30px 0;
}
body #section-banner .block .sub-top-banner.width-cta-btn > .flex-container,
.html #section-banner .block .sub-top-banner.width-cta-btn > .flex-container {
  flex-wrap: nowrap;
  max-width: 1300px;
}
body #section-banner .block .sub-top-banner.width-cta-btn .left-content,
.html #section-banner .block .sub-top-banner.width-cta-btn .left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
}
body #section-banner .block .sub-top-banner.width-cta-btn .left-content span:not(.lead-text),
.html #section-banner .block .sub-top-banner.width-cta-btn .left-content span:not(.lead-text) {
  letter-spacing: 0.5px;
}
body #section-banner .block .sub-top-banner.width-cta-btn .right-content,
.html #section-banner .block .sub-top-banner.width-cta-btn .right-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
body #section-banner .block .sub-top-banner.width-cta-btn .lead-text,
.html #section-banner .block .sub-top-banner.width-cta-btn .lead-text {
  font-size: 1.6em;
  line-height: 1em;
  margin-bottom: 10px;
}
body #section-banner .block .sub-top-banner.width-cta-btn .lead-text .mobile-hidden,
.html #section-banner .block .sub-top-banner.width-cta-btn .lead-text .mobile-hidden {
  display: inline;
}
@media all and (max-width: 1200px) {
  body #section-banner .block .sub-top-banner.width-cta-btn .lead-text,
  .html #section-banner .block .sub-top-banner.width-cta-btn .lead-text {
    font-size: 1.4em;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .right-content,
  .html #section-banner .block .sub-top-banner.width-cta-btn .right-content {
    justify-content: center;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .left-content,
  .html #section-banner .block .sub-top-banner.width-cta-btn .left-content {
    padding-right: 0px;
    padding-left: 20px;
  }
}
@media all and (max-width: 768px) {
  body #section-banner .block .sub-top-banner.width-cta-btn,
  .html #section-banner .block .sub-top-banner.width-cta-btn {
    background: #009fda;
    text-align: center;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .flex-container,
  .html #section-banner .block .sub-top-banner.width-cta-btn .flex-container {
    flex-direction: column;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .left-content,
  .html #section-banner .block .sub-top-banner.width-cta-btn .left-content {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .right-content,
  .html #section-banner .block .sub-top-banner.width-cta-btn .right-content {
    width: 100%;
    justify-content: center;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .lead-text,
  .html #section-banner .block .sub-top-banner.width-cta-btn .lead-text {
    font-size: 1.3em;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .lead-text .mobile-hidden,
  .html #section-banner .block .sub-top-banner.width-cta-btn .lead-text .mobile-hidden {
    display: none;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn span:not(.lead-text),
  .html #section-banner .block .sub-top-banner.width-cta-btn span:not(.lead-text) {
    display: none;
  }
}
@media all and (max-width: 570px) {
  body #section-banner .block .sub-top-banner.width-cta-btn,
  .html #section-banner .block .sub-top-banner.width-cta-btn {
    font-size: 1.7em;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .left-content,
  .html #section-banner .block .sub-top-banner.width-cta-btn .left-content {
    padding-right: 0;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .lead-text,
  .html #section-banner .block .sub-top-banner.width-cta-btn .lead-text {
    font-size: 1.1em;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .lead-text + span,
  .html #section-banner .block .sub-top-banner.width-cta-btn .lead-text + span {
    display: none;
  }
  body #section-banner .block .sub-top-banner.width-cta-btn .secondary-button,
  .html #section-banner .block .sub-top-banner.width-cta-btn .secondary-button {
    font-size: 0.8em;
  }
}
/* RESTYLE DEFAULT DRUPAL ACCORDION  */
#section-main-content [id^="dexp-accordions-wrapper"].panel-group > p,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group > p {
  display: none;
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel {
  border-radius: 0;
  border: 0;
  box-shadow: unset;
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading {
  background: none;
  border: 0;
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title {
  font-size: 1em;
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a.collapsed,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a.collapsed {
  color: #333;
  font-size: 1.8em;
  font-family: Roboto;
  font-weight: 700;
  margin: 25px 0 0 0;
  position: relative;
  padding: 0 0 0 35px;
  display: table;
  border: 0;
  background: none;
  cursor: pointer;
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a.collapsed:before,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a.collapsed:before,
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a.collapsed:after,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a.collapsed:after {
  content: '';
  width: 15px;
  height: 4px;
  background: #009fda;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  transition: all 0.3s linear;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a.collapsed:after,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a.collapsed:after {
  transform: rotate(90deg) scale(1);
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a {
  color: #333 !important;
  font-size: 1.8em;
  font-family: Roboto;
  font-weight: 700;
  margin: 25px 0 0 0;
  position: relative;
  padding: 0 0 0 35px;
  display: table;
  border: 0;
  background: none;
  cursor: pointer;
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a:before,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a:before,
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a:after,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a:after {
  content: '';
  width: 15px;
  height: 4px;
  background: #009fda;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  transition: all 0.3s linear;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a:after,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title a:after {
  transform: rotate(90deg) scale(0);
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse,
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .in,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .in {
  border: 0;
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse .panel-body,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse .panel-body,
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .in .panel-body,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .in .panel-body {
  border: 0;
  color: #000;
  padding-left: 35px;
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse .panel-body b,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse .panel-body b,
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .in .panel-body b,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .in .panel-body b,
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse .panel-body strong,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse .panel-body strong,
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .in .panel-body strong,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .in .panel-body strong {
  font-weight: 700;
  padding-top: 10px;
  display: inline-block;
}
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse.in > .panel-body,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse.in > .panel-body,
#section-main-content [id^="dexp-accordions-wrapper"].panel-group .panel .in.in > .panel-body,
#section-content_third [id^="dexp-accordions-wrapper"].panel-group .panel .in.in > .panel-body {
  border-bottom: 1px solid #DBDBDB;
}
/* DEFAULT CTA STYLE */
.cta-primary {
  font-size: 1em;
  font-weight: 500;
  color: #333;
  transition: all 0.3s linear;
  position: relative;
  display: block;
  float: left;
}
.cta-primary a {
  display: flex;
}
.cta-primary a span:before {
  content: '\f054';
  font-family: FontAwesome;
  position: absolute;
  right: -20px;
  transition: all 0.2s linear;
}
.cta-primary a span:after {
  content: '\f068';
  font-family: FontAwesome;
  position: absolute;
  right: -20px;
  transform: translate(-8px);
  opacity: 0;
  transition: all 0.2s linear;
}
.cta-primary a:hover {
  color: #009fda;
}
.cta-primary a:hover span:before {
  right: -25px;
}
.cta-primary a:hover span:after {
  right: -20px;
  transform: translate(0px);
  opacity: 1;
}
/* BACK TO PREVIOUS */
#prev-btn {
  display: block;
  width: 100%;
  float: left;
  margin: 30px 0 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 30px;
}
#prev-btn a {
  color: #5E6167 !important;
  font-size: 1em;
  padding: 0;
  text-decoration: none !important;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s linear;
  display: flex;
  max-width: 200px;
  align-items: center;
}
#prev-btn a:before {
  content: '\f053';
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  transition: all 0.2s linear;
}
#prev-btn a:after {
  content: '\f068';
  font-family: FontAwesome;
  position: absolute;
  left: 5px;
  transform: translate(8px);
  opacity: 0;
  transition: all 0.2s linear;
}
#prev-btn a:hover,
#prev-btn a:focus {
  color: #009fda !important;
  background-color: none!important;
  padding-left: 30px;
}
#prev-btn a:hover:before,
#prev-btn a:focus:before {
  left: 0px;
}
#prev-btn a:hover:after,
#prev-btn a:focus:after {
  transform: translate(0px);
  opacity: 1;
}
/* BACK TO TOP */
.back-to-top {
  font-size: 1em;
  color: #5E6167;
  font-weight: 500;
  margin-top: 50px;
  display: block;
  width: 100%;
  padding-left: 20px;
}
.back-to-top.no-margin {
  margin: 0;
}
.back-to-top.large {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 18px!important;
  padding-left: 20px!important;
  text-decoration: underline;
  border: 0;
  background: none;
}
.back-to-top.large:hover,
.back-to-top.large:focus {
  color: #009fda;
  outline: none;
}
.back-to-top.large:before {
  position: absolute;
  content: "\f054";
  font-family: FontAwesome;
  background: none;
  width: auto;
  height: auto;
  font-size: 14px;
  left: 0px;
  transform: rotate(-90deg);
}
.back-to-top span {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.back-to-top span:before {
  content: '\f053';
  font-family: FontAwesome;
  position: absolute;
  left: -20px;
  top: -5px;
  transform: rotate(90deg);
  transition: all 0.2s linear;
}
.back-to-top span:after {
  content: '\f068';
  font-family: FontAwesome;
  position: absolute;
  left: -21px;
  top: 0px;
  transform: rotate(90deg);
  opacity: 1;
  transition: all 0.2s linear;
}
.back-to-top span:hover,
.back-to-top span:focus {
  color: #009fda !important;
}
.back-to-top span:hover:before,
.back-to-top span:focus:before {
  top: -15px;
}
.back-to-top span:hover:after,
.back-to-top span:focus:after {
  top: -10px;
}
/* PULSE CHEVRON IN CIRCLE */
#scroll-chevron {
  position: relative;
  margin: 35px 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media all and (max-width: 768px) {
  #scroll-chevron {
    margin: 35px 0 20px;
  }
}
#scroll-chevron a {
  display: block;
  position: relative;
  width: 46px;
  height: 46px;
}
#scroll-chevron a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 100%;
  box-sizing: border-box;
  opacity: 1;
  transition: all 0.2s linear;
}
#scroll-chevron a span:hover,
#scroll-chevron a span:focus {
  opacity: 0.8;
}
#scroll-chevron a span:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 16px;
  height: 16px;
  margin: -12px 0 0 -8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
#scroll-chevron a span:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: '';
  width: 44px;
  height: 44px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
  box-sizing: border-box;
}
#scroll-point,
.scroll-point {
  height: 0;
  float: left;
}
/* FULL WIDTH ELEMENT */
.full-width {
  width: 100vw;
  position: relative;
  display: flex;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.full-width.border-10 {
  width: 105vw;
}
.extent-15 {
  margin-left: -15px;
  width: calc(100% + 30px);
  display: block;
}
.full-width-alt {
  width: 100vw;
  position: relative;
  left: 66%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media 1200px {
  .full-width-alt {
    left: 50%;
  }
}
/* GRID BLOCK STYLE */
.grid-block {
  display: flex;
  flex-wrap: wrap;
}
.grid-block .item {
  width: 25%;
  padding: 15px;
}
@media 992px {
  .grid-block .item {
    width: 50%;
    text-align: center;
  }
}
/* RESPONSIVE EMBED VIDEO */
.video-embed {
  position: relative;
  padding: 0px;
  padding-top: 56.25%;
  margin-top: 8px;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.video-embed.inmotion_iframe {
  margin: 50px 0;
}
.video-embed .iframe,
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%!important;
  height: 100%!important;
  border: 0;
}
/* FEATURED BLOCK */
body .featured-block {
  background: #f2f3f4;
  padding: 25px 30px;
  margin-top: 20px;
  display: block;
  width: 100%;
}
body .featured-block h4 {
  font-weight: 500;
  color: #009fda;
  margin: 0 0 5px 0;
}
body .featured-block > ul {
  margin-bottom: 0px;
  padding-left: 0px;
}
body .featured-block p:last-of-type {
  margin-bottom: 0;
}
/* PRIMARY BANNER */
.primary-banner {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* FEATURED BOX ICON LAYOUT */
@media all and (min-width: 571px) {
  .featured-box-icon:hover .box-icon,
  .dexp-shortcodes-box:hover .box-icon {
    background: #009fda;
  }
  .featured-box-icon:hover .box-icon:before,
  .dexp-shortcodes-box:hover .box-icon:before {
    top: calc(-50% - 15px);
    opacity: 0;
  }
  .featured-box-icon:hover .box-icon:after,
  .dexp-shortcodes-box:hover .box-icon:after {
    top: calc(50% - 15px);
    opacity: 1;
  }
}
.featured-box-icon .box-icon,
.dexp-shortcodes-box .box-icon {
  float: none;
  display: flex;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #009fda;
  transition: 0.2s linear;
  /* ICONS

        Assign icons with appropriate classes

        */
}
.featured-box-icon .box-icon:before,
.dexp-shortcodes-box .box-icon:before {
  content: '';
  position: absolute;
  top: calc(50% - 15px);
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: 0.2s linear;
}
.featured-box-icon .box-icon:after,
.dexp-shortcodes-box .box-icon:after {
  content: '';
  position: absolute;
  top: calc(150% - 15px);
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.2s linear;
}
.featured-box-icon .box-icon.sample:before,
.dexp-shortcodes-box .box-icon.sample:before {
  background-image: url(/sites/default/files/MEMBERSHIP/membership-icons/details-B.png);
}
.featured-box-icon .box-icon.sample:after,
.dexp-shortcodes-box .box-icon.sample:after {
  background-image: url(/sites/default/files/MEMBERSHIP/membership-icons/details-W.png);
}
.featured-box-icon .box-title,
.dexp-shortcodes-box .box-title {
  margin: 10px 0;
  font-size: 1.6em;
  font-weight: 600;
  font-family: Roboto!important;
  text-align: center;
  padding-top: 0;
}
.featured-box-icon .box-content,
.dexp-shortcodes-box .box-content {
  text-align: center;
  margin: 10px 0;
}
.featured-box-icon .box-content p,
.dexp-shortcodes-box .box-content p {
  font-size: 1.4em;
}
/* STATE MAP FOR NDIS */
#ausmap-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  float: left;
  width: 100%;
  min-height: 600px;
}
@media all and (max-width: 768px) {
  #ausmap-container {
    min-height: 500px;
  }
}
@media all and (max-width: 570px) {
  #ausmap-container {
    min-height: 300px;
  }
}
#ausmap {
  background: url("/sites/default/files/RESOURCES/BW_map.png") top left no-repeat;
  position: absolute;
  width: 779px;
  height: 625px;
  transform: scale(0.8);
  display: block;
  padding: 0;
  margin: 0;
}
@media all and (max-width: 768px) {
  #ausmap {
    transform: scale(0.7);
  }
}
@media all and (max-width: 570px) {
  #ausmap {
    transform: scale(0.4);
  }
}
#ausmap li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  position: absolute;
}
#ausmap a {
  display: block;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  line-height: normal;
}
#ausmap #wa {
  left: 14px;
  top: 77px;
  width: 275px;
  z-index: 10;
}
#ausmap #wa a {
  height: 382px;
  text-align: center;
  padding-top: 10px;
  padding-left: 0px;
  color: #fff;
}
#ausmap #wa a:hover {
  background: url('/sites/default/files/RESOURCES/Color_map2.png') -14px -47px no-repeat;
  text-decoration: none;
}
#ausmap #nt {
  left: 290px;
  top: 41px;
  width: 161px;
  z-index: 10;
}
#ausmap #nt a {
  height: 260px;
  text-align: center;
  padding-top: 60px;
  padding-left: 0px;
  color: #fff;
}
#ausmap #nt a:hover {
  background: url('/sites/default/files/RESOURCES/Color_map2.png') -291px -8px no-repeat;
  text-decoration: none;
}
#ausmap #sa {
  left: 290px;
  top: 302px;
  width: 214px;
  z-index: 10;
}
#ausmap #sa a {
  height: 222px;
  text-align: center;
  padding-top: 15px;
  padding-left: 0px;
  color: #fff;
}
#ausmap #sa a:hover {
  background: url('/sites/default/files/RESOURCES/Color_map2.png') -292px -272px no-repeat;
  text-decoration: none;
}
#ausmap #tas {
  left: 570px;
  top: 550px;
  width: 72px;
  z-index: 10;
}
#ausmap #tas a {
  height: 69px;
  text-align: center;
  padding-top: 2px;
  padding-left: 0px;
  color: #fff;
  letter-spacing: -1px;
}
#ausmap #tas a:hover {
  background: url('/sites/default/files/RESOURCES/Color_map2.png') -570px -518px no-repeat;
  text-decoration: none;
}
#ausmap #qld {
  left: 451px;
  top: 26px;
  width: 283px;
  z-index: 9;
}
#ausmap #qld a {
  height: 345px;
  text-align: center;
  padding-top: 80px;
  padding-right: 20px;
  color: #fff;
}
#ausmap #qld a:hover {
  background: url('/sites/default/files/RESOURCES/Color_map1.png') 1px -27px no-repeat;
  text-decoration: none;
}
#ausmap #nsw {
  left: 506px;
  top: 340px;
  width: 229px;
  z-index: 10;
}
#ausmap #nsw a {
  height: 171px;
  text-align: center;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  color: #fff;
}
#ausmap #nsw a:hover {
  background: url('/sites/default/files/RESOURCES/Color_map2.png') -507px -309px no-repeat;
  text-decoration: none;
}
#ausmap #vic {
  left: 504px;
  top: 444px;
  width: 166px;
  z-index: 11;
}
#ausmap #vic a {
  height: 95px;
  text-align: center;
  padding-top: 13px;
  padding-right: 25px;
  color: #fff;
}
#ausmap #vic a:hover {
  background: url('/sites/default/files/RESOURCES/Color_map1.png') -51px -442px no-repeat;
  text-decoration: none;
}
#ausmap #act {
  left: 636px;
  top: 460px;
  width: 24px;
  z-index: 12;
}
#ausmap #act a {
  height: 25px;
  text-align: right;
  padding-top: 0px;
  padding-right: 0px;
  color: #ea9034;
}
#ausmap #act a:hover {
  background: url('/sites/default/files/RESOURCES/Color_map3.png') 7px 5px no-repeat;
  text-decoration: none;
  color: #322e2b;
}
/* DEFAULT HEADER BANNER */
body .header-banner h1 {
  font-family: Cairo;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  font-size: 5em;
  line-height: 1em;
  text-align: center;
}
@media all and (max-width: 768px) {
  body .header-banner h1 {
    font-size: 4em;
  }
}
@media all and (max-width: 570px) {
  body .header-banner h1 {
    font-size: 3em;
  }
}
@media all and (max-width: 480px) {
  body .header-banner h1 {
    font-size: 2.5em;
  }
}
/* FLEX GRID DRUPAL */
.w2 {
  display: flex;
  flex-wrap: wrap;
}
/* FIXED LINKED SHARE BUTTON */
body .socialMediaIcon li .IN-widget span {
  line-height: 0!important;
}
body .socialMediaIcon li .IN-widget button {
  font-family: Roboto!important;
  font-style: normal;
  padding: 0px 8px !important;
  font-size: 11px!important;
  font-weight: 500!important;
  height: 20px!important;
}
/* PAGE PAGINATION */
.pagination.pager {
  margin-bottom: 0;
  padding-top: 30px;
  padding-left: 0;
}
.pagination.pager li.pager-current a {
  font-weight: 700;
}
.pagination.pager li a:hover {
  font-weight: 700;
  color: #333;
}
/* BLUE SPINNING BUTTON */
.blue-spinning-btn {
  width: 100%;
  text-align: center;
  background: #009fda;
  color: #fff;
  padding: 9px;
}
.add-cpd-spinning-btn {
  padding: 5px 30px;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 92.75px;
  color: #000;
}
/* RIGHT SIDEBAR ON MOBILE */
@media all and (max-width: 992px) {
  .sidebar-overlay .region-right-sidebar,
  .sidebar-overlay .node .right-sidebar,
  .sidebar-overlay .right-sidebar {
    display: none;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    width: 100%;
  }
  .sidebar-overlay .region-right-sidebar .headline,
  .sidebar-overlay .node .right-sidebar .headline,
  .sidebar-overlay .right-sidebar .headline {
    margin-top: 0;
  }
}
@media all and (max-width: 570px) {
  .sidebar-overlay .region-right-sidebar,
  .sidebar-overlay .node .right-sidebar,
  .sidebar-overlay .right-sidebar {
    position: fixed!important;
    z-index: 998;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 40px 100px 40px!important;
    background: #fff;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 0px 0px white;
  }
  .sidebar-overlay .region-right-sidebar.active,
  .sidebar-overlay .node .right-sidebar.active,
  .sidebar-overlay .right-sidebar.active {
    transform: translate(0, 0);
    box-shadow: -20px 0px 20px 20px white;
    overflow-y: auto;
  }
  .sidebar-overlay .region-right-sidebar.active .sidebar-toggle,
  .sidebar-overlay .node .right-sidebar.active .sidebar-toggle,
  .sidebar-overlay .right-sidebar.active .sidebar-toggle {
    left: -60px;
  }
  .sidebar-overlay .region-right-sidebar.active + .sidebar-overlay,
  .sidebar-overlay .node .right-sidebar.active + .sidebar-overlay,
  .sidebar-overlay .right-sidebar.active + .sidebar-overlay {
    transform: translate(0, 0);
  }
  .sidebar-overlay .region-right-sidebar .right-sidebar,
  .sidebar-overlay .node .right-sidebar .right-sidebar,
  .sidebar-overlay .right-sidebar .right-sidebar {
    padding: 0;
    display: block!important;
  }
}
.sidebar-overlay {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  height: 100vh;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
@media all and (max-width: 992px) {
  .sidebar-overlay {
    width: 350px;
    transform: translate(calc(100vw - 0px), 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  }
  .sidebar-overlay.active {
    transform: translate(calc(100vw - 350px), 0);
    box-shadow: 0px 0px 13px 8px rgba(0, 0, 0, 0.3);
  }
}
@media all and (max-width: 570px) {
  .sidebar-overlay {
    width: 100%;
    transform: translate(100%, 0);
  }
  .sidebar-overlay.active {
    transform: translate(0, 0);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
  }
}
.sidebar-overlay.active {
  z-index: 1050;
}
.sidebar-overlay.active .sidebar-toggle {
  left: -60px;
  z-index: 999;
}
.sidebar-overlay.active .region-right-sidebar,
.sidebar-overlay.active .right-sidebar {
  height: 100%;
  overflow: auto;
}
.sidebar-overlay .sidebar-toggle {
  cursor: pointer;
  display: block;
  position: absolute;
  opacity: 0;
  top: 117px;
  min-width: 150px;
  left: -90px;
  text-align: center;
  transform: rotate(-90deg) translate(0, 30px);
  background: #009fda;
  color: #fff;
  padding: 5px;
  transition: all 0.5s linear;
}
.sidebar-overlay .sidebar-toggle::first-letter {
  text-transform: uppercase;
}
.sidebar-overlay .sidebar-toggle.off-right {
  transform: rotate(-90deg) translate(0, 0px);
  opacity: 1;
}
@media all and (max-width: 992px) {
  .no-scroll {
    overflow: hidden;
  }
}
@media all and (max-width: 570px) {
  .no-scroll {
    position: fixed;
    height: 100vh;
    overflow: hidden;
    padding-right: 0;
  }
  .no-scroll #section-clients,
  .no-scroll #section-bottom,
  .no-scroll #section-socials,
  .no-scroll #section-header {
    z-index: 995;
  }
}
#section-clients {
  margin-top: 0px;
}
.space-100 + #section-clients,
#section-bottomfullwidth + #section-clients {
  margin-top: 0px;
}
.chevron-active {
  max-width: 100%;
}
.chevron-active .media-chevron {
  position: absolute;
  left: -99999px;
  visibility: hidden;
}
.chevron-active .media-chevron + .media-chevron-menu label {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 14px;
  width: 12px;
  top: 14px;
  right: 15px;
  cursor: pointer;
}
.chevron-active .media-chevron + .media-chevron-menu label span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0.65;
  transform: rotate(0deg);
  transition: all 0.3s linear;
}
.chevron-active .media-chevron + .media-chevron-menu label span.bar-1 {
  transform: rotate(-45deg);
  left: 4px;
}
.chevron-active .media-chevron + .media-chevron-menu label span.bar-2 {
  transform: rotate(45deg);
  right: 4px;
}
.chevron-active .media-chevron + .media-chevron-menu .selected {
  display: block;
  position: absolute;
  cursor: pointer;
  top: 0;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 10px 30px;
}
.chevron-active .media-chevron:checked + .media-chevron-menu label .bar-1 {
  transform: rotate(45deg);
}
.chevron-active .media-chevron:checked + .media-chevron-menu label .bar-2 {
  transform: rotate(-45deg);
}
.chevron-active ul {
  flex-direction: column;
  opacity: 0;
}
.chevron-active ul li {
  border: 0!important;
  width: 100%;
  margin: 5px 0 !important;
}
.chevron-active ul li.active {
  background: none!important;
}
.chevron-active ul li.active a {
  color: #333 !important;
}
.account-nav {
  width: max-content;
}
@media all and (min-width: 993px) {
  .account-nav {
    display: none;
  }
}
.account-nav li.active a,
.account-nav li.active:hover a {
  background: none;
  color: #009fda !important;
}
.account-nav.chevron-active {
  min-width: 100%;
  position: relative;
}
.account-nav.chevron-active ul li a {
  font-size: 1em;
  padding: 5px 15px;
}
.account-nav.chevron-active .account-chevron {
  position: absolute;
  left: -99999px;
  visibility: hidden;
}
.account-nav.chevron-active .account-chevron + .account-chevron-menu {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
}
.account-nav.chevron-active .account-chevron + .account-chevron-menu .selected {
  display: block;
  position: absolute;
  cursor: pointer;
  padding: 10px 40px 10px 13px;
  font-size: 1.6em;
  font-weight: 700;
  color: #009fda;
  font-family: cairo;
  width: auto;
}
.account-nav.chevron-active .account-chevron + .account-chevron-menu .selected:before,
.account-nav.chevron-active .account-chevron + .account-chevron-menu .selected:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  top: calc(50% - 0.5px);
  background: #009fda;
  transition: all 0.3s linear;
}
.account-nav.chevron-active .account-chevron + .account-chevron-menu .selected:before {
  transform: rotate(45deg);
  right: 18px;
}
.account-nav.chevron-active .account-chevron + .account-chevron-menu .selected:after {
  transform: rotate(-45deg);
  right: 11px;
}
.account-nav.chevron-active .account-chevron + .account-chevron-menu label {
  position: absolute;
  display: none;
  flex-direction: row;
  align-items: center;
  height: 14px;
  width: 12px;
  top: 14px;
  right: 15px;
  cursor: pointer;
}
.account-nav.chevron-active .account-chevron + .account-chevron-menu label span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0.65;
  transition: all 0.3s linear;
}
.account-nav.chevron-active .account-chevron + .account-chevron-menu label span.bar-1 {
  transform: rotate(-45deg);
  left: 4px;
}
.account-nav.chevron-active .account-chevron + .account-chevron-menu label span.bar-2 {
  transform: rotate(45deg);
  right: 4px;
}
.account-nav.chevron-active .account-chevron:checked + .account-chevron-menu label .bar-1 {
  transform: rotate(45deg);
}
.account-nav.chevron-active .account-chevron:checked + .account-chevron-menu label .bar-2 {
  transform: rotate(-45deg);
}
.account-nav.chevron-active .account-chevron:checked + .account-chevron-menu .selected:before {
  transform: rotate(-45deg);
}
.account-nav.chevron-active .account-chevron:checked + .account-chevron-menu .selected:after {
  transform: rotate(45deg);
}
@media all and (max-width: 768px) {
  .account-nav ul.nav li {
    font-size: 1em!important;
  }
}
/*
----------------------------------------------------------------
LET'S ADJUST OUR WEBSITE TO SCOPE WITH BLOODY IE
----------------------------------------------------------------
*/
/* HIDE PARALLAX IN IE */
.ie_browser .img-parallax {
  display: none;
}
/* LOGIN FORM ADJUSTMENT FOR IE */
.ie_browser #apa-create-log-in-form {
  width: 100%;
}
/* BOX ICONS */
.ie_browser .dexp-shortcodes-box .box-icon:before,
.ie_browser .dexp-shortcodes-box .box-icon:after {
  display: block;
  left: calc(50% - 15px);
}
.ie_browser .dexp-shortcodes-box .box-content {
  width: 100%;
}
/* POPUP CLOSE BUTTON */
.ie_browser .close-popup {
  position: relative;
}
.ie_browser .close-popup:before,
.ie_browser .close-popup:after {
  display: block;
  left: 5px;
}
.ie_browser .OthersiteButtonClose:before,
.ie_browser .OthersiteButtonClose:after {
  display: block;
  left: 2px;
}
.ie_browser .modal-dialog .close .ui-button-icon-primary {
  position: relative;
}
.ie_browser .modal-dialog .close .ui-button-icon-primary:before,
.ie_browser .modal-dialog .close .ui-button-icon-primary:after {
  left: 0;
  display: block;
}
/* TOP NAV */
.ie_browser #section-socials .pull-right.social-icons {
  background: none;
}
.ie_browser #section-socials .pull-right.social-icons ul {
  position: absolute;
  right: 135px;
  top: -1px;
}
.ie_browser #section-socials .LogInPadding,
.ie_browser #section-socials .DashboardPadding {
  position: absolute;
  left: 0px;
}
.ie_browser #section-socials .LogOutPadding {
  position: absolute;
  left: 60px;
}
.ie_browser.user-logged-in .pull-right.social-icons ul {
  right: 196px!important;
}
/* TOOLS BLOCKS */
.ie_browser #section-map .tools-features .tool-block {
  max-width: none!important;
  padding: 100px 10%!important;
}
/* SSO LOGIN PAGE(S) */
.ie_browser .page-apa-cm-login #section-main-content {
  display: block;
}
/* PD LANDING PAGE BANNER */
.ie_browser.page-node-86 #section-banner #block-block-123 {
  background-position: 70% 0px !important;
}
.ie_browser.page-node-86 #section-banner #block-block-123 .sub-top-banner {
  display: block;
}
/* ---------------------ABOUT US---------------------- */
/* annual report */
.ie_browser.page-node-138 .left-content .brochure-grid .item {
  width: 33.33%;
}
/* partner services */
.ie_browser.page-node-241 #partners-info {
  left: 0;
  right: 0;
}
/* reconciliation */
.ie_browser #section-main-content [id^='dexp-accordions-wrapper'].panel-group .panel {
  box-shadow: none;
}
/* APA team */
.ie_browser.page-node-149 #block-apateamsblock div[id*='apateammember-block'] .node-apateam .portfolio-image .field-item,
.ie_browser.page-node-149 #block-apateamsblock #apateammember-block .node-apateam .portfolio-image .field-item,
.ie_browser.node-type-apateam #related-members [id^='apateammember-block'] .node-apateam .portfolio-image .field-item {
  display: block;
}
.ie_browser.page-node-149 #block-apateamsblock div[id*='apateammember-block'] .node-apateam .portfolio-image .field-item img,
.ie_browser.page-node-149 #block-apateamsblock #apateammember-block .node-apateam .portfolio-image .field-item img,
.ie_browser.node-type-apateam #related-members [id^='apateammember-block'] .node-apateam .portfolio-image .field-item img {
  height: 100%;
}
/* --------------------- PD ---------------------- */
.ie_browser.page-node-611 #section-banner #block-block-322 {
  background-position: 70% 0px !important;
  background-repeat: no-repeat;
}
.ie_browser.page-node-611 #section-banner #block-block-322 .sub-top-banner {
  display: block;
}
.ie_browser.page-node-611 #section-banner #block-block-322 .sub-top-banner .featured-logo:after {
  top: 0;
}
/* --------------------- RESEARCH ---------------------- */
/* share urls INMOTION/RESEARCH/MEDIA */
.ie_browser .meta .meta-share-url {
  display: block;
  text-align: right;
}
.ie_browser .meta .meta-share-url ul.socialMediaIcon li .fb_iframe_widget {
  top: -5px;
}
.ie_browser .meta .meta-share-url .IN-widget {
  position: relative;
  top: 1px;
}
/* research stories */
.ie_browser.page-node-2272 #section-main-content .block-system-main-block .post-content .view-media .dexp-grid-items .node .team {
  display: block;
}
/* --------------------- HOME MAIN BLOCKS ---------------------- */
.ie_browser #section-banner .region .home-main-grid .main-block .node .HomeTitle {
  min-height: 20%!important;
  padding-top: 20%!important;
}
.ie_browser #section-banner .region .home-main-grid .image-grid .node .HomeTitle {
  min-height: 15%!important;
  padding-top: 35%!important;
}
/* --------------------- SOCIAL NAV ---------------------- */
.ie_browser .SocialIcons {
  border-bottom: 0.3px solid rgba(0, 0, 0, 0.045);
}
.ie_browser .region-socials .block .content div.borderLeftForTop {
  border-left: rgba(0, 0, 0, 0.045) 0.3px solid;
}
.ie_browser .region-socials ul:not(.contextual-links) li {
  border-left: rgba(0, 0, 0, 0.045) 0.3px solid;
}
/*
----------------------------------------------------------------
END ADJUSTMENT FOR BLOODY IE
----------------------------------------------------------------
*/
/*
----------------------------------------------------------------
ADJUSTMENT FOR CLUMSY FIREFOX
----------------------------------------------------------------
*/
body.firefox-browser select {
  -moz-appearance: window;
}
.firefox-browser #loginAT .modal-dialog {
  overflow-x: hidden!important;
}
.firefox-browser #loginAT .modal-dialog .modal-body {
  margin-right: -17px;
}
/*
----------------------------------------------------------------
END ADJUSTMENT FOR CLUMSY FIREFOX
----------------------------------------------------------------
*/
.readmore-container .readmore-content,
.readmore-container .a_readmore {
  overflow: hidden;
  position: relative;
}
.readmore-container .readmore-content:after,
.readmore-container .a_readmore:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-image: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 85%);
  transition: all 0.5s linear;
}
.readmore-container .readmore-content.minimized:after,
.readmore-container .a_readmore.minimized:after {
  height: 100px;
}
.readmore-container .readmore-content.minimized + .readmore-toggle:before,
.readmore-container .a_readmore.minimized + .readmore-toggle:before {
  transform: rotate(-45deg);
}
.readmore-container .readmore-content.minimized + .readmore-toggle:after,
.readmore-container .a_readmore.minimized + .readmore-toggle:after {
  transform: rotate(45deg);
}
.readmore-container .readmore-toggle {
  display: block;
  width: 125px;
  padding: 10px 10px 10px 0;
  font-size: 1.2em;
  font-weight: 500;
  text-align: left;
  color: #009fda;
  position: relative;
  margin-top: 20px;
}
.readmore-container .readmore-toggle:after,
.readmore-container .readmore-toggle:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  top: calc(50% - 1px);
  background: #009fda;
  transition: all 0.5s linear;
}
.readmore-container .readmore-toggle:before {
  right: 18px;
  transform: rotate(45deg);
}
.readmore-container .readmore-toggle:after {
  right: 25px;
  transform: rotate(-45deg);
}
.a_readmore_container .a_readmore {
  overflow: hidden;
  position: relative;
}
.a_readmore_container .a_readmore:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-image: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 85%);
  transition: all 0.5s linear;
}
.a_readmore_container .a_readmore.minimized:after {
  height: 100px;
}
.a_readmore_container .a_readmore.minimized + .a_readmore_toggle:before {
  transform: rotate(45deg);
}
.a_readmore_container .a_readmore.minimized + .a_readmore_toggle:after {
  transform: rotate(-45deg);
}
.a_readmore_container .a_readmore_toggle {
  display: block;
  width: max-content;
  padding: 10px 10px 10px 0;
  font-size: 1.2em;
  font-weight: 500;
  text-align: left;
  color: #009fda;
  position: relative;
  margin-top: 20px;
}
.a_readmore_container .a_readmore_toggle:after,
.a_readmore_container .a_readmore_toggle:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  top: calc(50% - 1px);
  background: #009fda;
  transition: all 0.5s linear;
}
.a_readmore_container .a_readmore_toggle:before {
  right: -12px;
  transform: rotate(-45deg);
}
.a_readmore_container .a_readmore_toggle:after {
  right: -19px;
  transform: rotate(45deg);
}
.dashboard-left-nav .navbar-collapse {
  position: relative;
}
.dashboard-left-nav .navbar-collapse .blink-arrows-right {
  position: absolute;
  width: 30px;
  height: 20px;
  background: rgba(0, 0, 0, 0.7);
  top: calc(50% - 10px);
  right: 0;
  display: flex;
  align-items: center;
}
.dashboard-left-nav .navbar-collapse .blink-arrows-right span {
  position: absolute;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0.7;
  width: 15px;
  height: 15px;
  transform: rotate(-45deg);
  right: 15px;
}
.dashboard-left-nav .navbar-collapse .blink-arrows-right span:nth-child(even) {
  right: 0;
}
/* ADJUST BOOTSTRAP */
body {
  color: #666666;
}
body .col-xs-1,
body .col-sm-1,
body .col-md-1,
body .col-lg-1,
body .col-xs-2,
body .col-sm-2,
body .col-md-2,
body .col-lg-2,
body .col-xs-3,
body .col-sm-3,
body .col-md-3,
body .col-lg-3,
body .col-xs-4,
body .col-sm-4,
body .col-md-4,
body .col-lg-4,
body .col-xs-5,
body .col-sm-5,
body .col-md-5,
body .col-lg-5,
body .col-xs-6,
body .col-sm-6,
body .col-md-6,
body .col-lg-6,
body .col-xs-7,
body .col-sm-7,
body .col-md-7,
body .col-lg-7,
body .col-xs-8,
body .col-sm-8,
body .col-md-8,
body .col-lg-8,
body .col-xs-9,
body .col-sm-9,
body .col-md-9,
body .col-lg-9,
body .col-xs-10,
body .col-sm-10,
body .col-md-10,
body .col-lg-10,
body .col-xs-11,
body .col-sm-11,
body .col-md-11,
body .col-lg-11,
body .col-xs-12,
body .col-sm-12,
body .col-md-12,
body .col-lg-12 {
  min-height: 0;
}
/* STYLE LOGIN PAGE FOR ADMINS */
.page-user #section-main-content {
  padding: 50px 0 100px;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-user #section-main-content .dexp-page-toolbar ul.nav {
  display: flex;
  justify-content: center;
  border-bottom: 0;
}
.page-user #section-main-content .dexp-page-toolbar ul.nav li.active {
  text-decoration: underline;
}
.page-user #section-main-content #user-login,
.page-user #section-main-content #user-pass,
.page-user #section-main-content #user-register-form {
  display: flex;
  justify-content: center;
}
.page-user #section-main-content #user-login .form-item-name,
.page-user #section-main-content #user-pass .form-item-name,
.page-user #section-main-content #user-register-form .form-item-name,
.page-user #section-main-content #user-login .form-item-pass,
.page-user #section-main-content #user-pass .form-item-pass,
.page-user #section-main-content #user-register-form .form-item-pass {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-user #section-main-content #user-login .form-item-name:before,
.page-user #section-main-content #user-pass .form-item-name:before,
.page-user #section-main-content #user-register-form .form-item-name:before,
.page-user #section-main-content #user-login .form-item-pass:before,
.page-user #section-main-content #user-pass .form-item-pass:before,
.page-user #section-main-content #user-register-form .form-item-pass:before {
  content: "";
  position: absolute;
  left: 12px;
  top: calc(50% - 7.5px);
  width: 15px;
  height: 15px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.page-user #section-main-content #user-login .form-item-name label,
.page-user #section-main-content #user-pass .form-item-name label,
.page-user #section-main-content #user-register-form .form-item-name label,
.page-user #section-main-content #user-login .form-item-pass label,
.page-user #section-main-content #user-pass .form-item-pass label,
.page-user #section-main-content #user-register-form .form-item-pass label {
  display: none;
}
.page-user #section-main-content #user-login .form-item-name .description,
.page-user #section-main-content #user-pass .form-item-name .description,
.page-user #section-main-content #user-register-form .form-item-name .description,
.page-user #section-main-content #user-login .form-item-pass .description,
.page-user #section-main-content #user-pass .form-item-pass .description,
.page-user #section-main-content #user-register-form .form-item-pass .description {
  font-size: 1em;
  position: absolute;
  top: calc(50% - 9px);
  left: 40px;
  color: #333;
  z-index: 9;
  opacity: 1;
  transition: all 0.3s linear;
}
.page-user #section-main-content #user-login .form-item-name input,
.page-user #section-main-content #user-pass .form-item-name input,
.page-user #section-main-content #user-register-form .form-item-name input,
.page-user #section-main-content #user-login .form-item-pass input,
.page-user #section-main-content #user-pass .form-item-pass input,
.page-user #section-main-content #user-register-form .form-item-pass input {
  background: none;
  position: relative;
  z-index: 10;
  padding-left: 40px;
}
.page-user #section-main-content #user-login .form-item-name input:focus + .description,
.page-user #section-main-content #user-pass .form-item-name input:focus + .description,
.page-user #section-main-content #user-register-form .form-item-name input:focus + .description,
.page-user #section-main-content #user-login .form-item-pass input:focus + .description,
.page-user #section-main-content #user-pass .form-item-pass input:focus + .description,
.page-user #section-main-content #user-register-form .form-item-pass input:focus + .description {
  top: 0;
  opacity: 0;
}
.page-user #section-main-content #user-login .form-item-name input.filled + .description,
.page-user #section-main-content #user-pass .form-item-name input.filled + .description,
.page-user #section-main-content #user-register-form .form-item-name input.filled + .description,
.page-user #section-main-content #user-login .form-item-pass input.filled + .description,
.page-user #section-main-content #user-pass .form-item-pass input.filled + .description,
.page-user #section-main-content #user-register-form .form-item-pass input.filled + .description {
  top: 0;
  opacity: 0;
}
.page-user #section-main-content #user-login .form-item-name input.error,
.page-user #section-main-content #user-pass .form-item-name input.error,
.page-user #section-main-content #user-register-form .form-item-name input.error,
.page-user #section-main-content #user-login .form-item-pass input.error,
.page-user #section-main-content #user-pass .form-item-pass input.error,
.page-user #section-main-content #user-register-form .form-item-pass input.error {
  border: 1px solid #920075;
}
.page-user #section-main-content #user-login .form-item-name,
.page-user #section-main-content #user-pass .form-item-name,
.page-user #section-main-content #user-register-form .form-item-name {
  margin-top: 30px;
}
.page-user #section-main-content #user-login .form-item-name:before,
.page-user #section-main-content #user-pass .form-item-name:before,
.page-user #section-main-content #user-register-form .form-item-name:before {
  background-image: url(/sites/default/files/dashboard-icon/account-G.png);
}
.page-user #section-main-content #user-login .form-item-pass:before,
.page-user #section-main-content #user-pass .form-item-pass:before,
.page-user #section-main-content #user-register-form .form-item-pass:before {
  background-image: url(/sites/default/files/general-icon/password-icon-lg.png);
}
.page-user #section-main-content #user-login #edit-actions,
.page-user #section-main-content #user-pass #edit-actions,
.page-user #section-main-content #user-register-form #edit-actions {
  margin-top: 30px;
}
.page-user #section-main-content #user-login #edit-actions input,
.page-user #section-main-content #user-pass #edit-actions input,
.page-user #section-main-content #user-register-form #edit-actions input {
  min-width: 100%;
}
.page-user #section-main-content #user-login #edit-actions input:hover,
.page-user #section-main-content #user-pass #edit-actions input:hover,
.page-user #section-main-content #user-register-form #edit-actions input:hover {
  color: #fff;
  opacity: 0.8;
  background: #009fda;
  border-color: #009fda;
}
.page-user #section-clients {
  margin-top: 0;
}
.page-user #modalContent {
  position: fixed!important;
  top: 30vh!important;
}
.page-user #modalContent .ctools-modal-content {
  height: auto!important;
}
.page-user #modalContent .ctools-modal-content .modal-header {
  min-height: 35px;
}
.page-user #modalContent #modal-content {
  min-width: 100%;
  min-height: 100%;
  height: auto!important;
  overflow: hidden;
}
.page-user #modalContent #modal-content .alert-danger {
  background-color: #fff;
  border-color: #920075;
}
.page-user #modalContent .user-info-from-cookie {
  display: flex;
  justify-content: center;
}
.page-user #modalContent .user-info-from-cookie > div {
  width: 90%;
}
.page-user #modalContent .user-info-from-cookie .form-item-name,
.page-user #modalContent .user-info-from-cookie .form-item-mail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-user #modalContent .user-info-from-cookie .form-item-name:before,
.page-user #modalContent .user-info-from-cookie .form-item-mail:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 15px;
  height: 15px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.page-user #modalContent .user-info-from-cookie .form-item-name label,
.page-user #modalContent .user-info-from-cookie .form-item-mail label {
  display: none;
}
.page-user #modalContent .user-info-from-cookie .form-item-name .description,
.page-user #modalContent .user-info-from-cookie .form-item-mail .description {
  font-size: 1em;
  position: relative;
  color: #333;
  padding-top: 20px;
}
.page-user #modalContent .user-info-from-cookie .form-item-name input,
.page-user #modalContent .user-info-from-cookie .form-item-mail input {
  background: none;
  position: relative;
  z-index: 10;
  padding-left: 40px;
}
.page-user #modalContent .user-info-from-cookie .form-item-name input.error,
.page-user #modalContent .user-info-from-cookie .form-item-mail input.error {
  border: 1px solid #920075;
}
.page-user #modalContent .user-info-from-cookie .form-item-name {
  margin-top: 30px;
}
.page-user #modalContent .user-info-from-cookie .form-item-name:before {
  background-image: url(/sites/default/files/dashboard-icon/account-G.png);
}
.page-user #modalContent .user-info-from-cookie .form-item-mail:before {
  background-image: url(/sites/default/files/contact-us/icons/MAILING_ADDRESS_G.png);
}
.page-user #modalContent .user-info-from-cookie .form-actions {
  margin-top: 30px;
}
.page-user #modalContent .user-info-from-cookie .form-actions input {
  min-width: 100%;
}
.page-user #modalContent .user-info-from-cookie .form-actions input:hover,
.page-user #modalContent .user-info-from-cookie .form-actions input:focus {
  color: #fff;
  opacity: 0.8;
  background: #009fda;
  border-color: #009fda;
}
.page-user #modalContent .user-info-from-cookie .form-actions .blue-spinning-btn {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-user .throbber {
  display: none;
}
/* CONTACT PAGE LOCATION GRID */
.location_grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 50px;
}
.location_grid span {
  color: #333;
}
.location_grid .location_item {
  width: 33.33%;
  padding: 15px;
}
@media all and (max-width: 768px) {
  .location_grid .location_item {
    width: 50%;
  }
}
@media all and (max-width: 570px) {
  .location_grid .location_item {
    width: 100%;
  }
}
.location_grid .location_item .item_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 2px solid #f0f2f2;
}
.location_grid .location_item .item_wrapper .show_email {
  position: absolute;
  top: calc(3% + 200px);
  right: 4%;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 0.9em;
}
.location_grid .location_item .item_wrapper .location_banner {
  width: calc(100% + 30px*2);
  left: -30px;
  top: -30px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 200px;
  overflow: hidden;
}
.location_grid .location_item .item_wrapper .location_address {
  display: flex;
  flex-direction: column;
}
.location_grid .location_item .item_wrapper .location_address .state {
  font-family: Cairo;
  font-size: 2em;
  font-weight: 500;
}
@media all and (max-width: 570px) {
  .location_grid .location_item .item_wrapper .location_address .state {
    font-size: 1.5em;
  }
}
.location_grid .location_item .item_wrapper .location_details {
  display: flex;
  flex-direction: column;
}
.location_grid .location_item .item_wrapper .location_details .detail_label {
  font-weight: 700;
  padding-top: 15px;
  opacity: 0.7;
}
.location_grid .location_item .item_wrapper .location_contact {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  margin-top: auto;
}
.location_grid .location_item .item_wrapper .location_contact:before {
  content: '';
  position: absolute;
  top: 15px;
  width: 100%;
  height: 1px;
  background: #f0f2f2;
}
.location_grid .location_item .item_wrapper .location_contact a {
  font-size: 1.2em;
}
.location_grid .location_item .item_wrapper .location_contact.combine {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.location_grid .location_item .item_wrapper .location_contact.combine.break_line {
  flex-direction: column;
}
.location_grid .location_item .item_wrapper .location_contact.combine a {
  width: 50%;
}
@media all and (min-width: 769px) {
  .location_grid .location_item.main_item_full_width {
    width: 100%;
  }
  .location_grid .location_item.main_item_full_width .item_wrapper {
    padding-right: 33.33%;
    position: relative;
  }
  .location_grid .location_item.main_item_full_width .item_wrapper .show_email {
    top: 5%;
    right: 33.5%;
  }
  .location_grid .location_item.main_item_full_width .item_wrapper .location_banner {
    position: absolute;
    left: 66.77%;
    top: 0;
    bottom: 0;
    padding-left: 15px;
    max-width: 33.33%;
    max-height: unset;
  }
  .location_grid .location_item.main_item_full_width .item_wrapper .location_details {
    flex-direction: row;
  }
  .location_grid .location_item.main_item_full_width .item_wrapper .location_details .child_detail {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
  .location_grid .location_item.main_item_full_width .item_wrapper .location_contact {
    margin-right: 15px;
  }
}
.location_grid .location_item .item_wrapper .location_details .child_detail {
  display: flex;
  flex-direction: column;
}
/* ADD HELP BAR */
#users_help_bar {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  max-height: 300px;
  background: #920075;
  /*border: 1px solid @pink;*/
  padding: 0px 20px;
  opacity: 1;
  z-index: 99999;
  /*
    &.minimized{
        transform: translateY( calc(~'100% - 47px') );
    } */
}
#users_help_bar.modal_disabled {
  display: none;
}
#users_help_bar .close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  width: 20px;
  height: 20px;
  background: none;
  border: 1px solid #ffffff;
  float: none;
  top: 12px;
  opacity: 1;
  transition: all 0.3s linear;
  right: 10px;
  cursor: pointer;
}
#users_help_bar .close:hover {
  opacity: 1;
}
#users_help_bar .close:before,
#users_help_bar .close:after {
  content: '';
  position: absolute;
  width: 80%;
  height: 1px;
  background-color: #ffffff;
}
#users_help_bar .close:before {
  transform: rotate(45deg);
}
#users_help_bar .close:after {
  transform: rotate(-45deg);
}
#users_help_bar .modal_header {
  padding: 10px 50px;
  max-width: 1500px;
  margin: 0 auto;
  background: #920075;
  position: relative;
  z-index: 10;
  left: -20px;
  width: calc(100% + 40px);
  cursor: default;
}
#users_help_bar .modal_header span {
  font-family: Cairo;
  font-size: 1.3em;
  font-weight: 400;
  color: #fff;
}
@media all and (max-width: 325px) {
  #users_help_bar .modal_header span {
    font-size: 1em;
  }
}
#users_help_bar .modal_content a {
  display: inline-block;
}
/* RESPONSIVE TABLE */
.table_wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  max-width: 1500px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  /* define table width */
  /* hide row/column on screen view */
  /* collapse columns on screen view */
  /* table row */
}
.table_wrapper.width_1_2 {
  width: 50%;
  max-width: 750px;
}
.table_wrapper.width_2_3 {
  width: 75%;
  max-width: 1000px;
}
@media all and (max-width: 992px) {
  .table_wrapper .large_tablet_hide {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .table_wrapper .tablet_hide {
    display: none;
  }
}
@media all and (max-width: 480px) {
  .table_wrapper .phone_hide {
    display: none;
  }
}
@media all and (max-width: 992px) {
  .table_wrapper.large_tablet_collapse,
  .table_wrapper .large_tablet_collapse {
    width: 100%;
  }
  .table_wrapper.large_tablet_collapse .table_row,
  .table_wrapper .large_tablet_collapse .table_row {
    flex-direction: column;
    padding: 10px 0;
  }
  .table_wrapper.large_tablet_collapse .table_row.table_header,
  .table_wrapper .large_tablet_collapse .table_row.table_header {
    display: none;
  }
  .table_wrapper.large_tablet_collapse .table_row [class^='table_col_'],
  .table_wrapper .large_tablet_collapse .table_row [class^='table_col_'] {
    width: 100%;
  }
  .table_wrapper.large_tablet_collapse .table_row [class^='table_col_'].center_verticle,
  .table_wrapper .large_tablet_collapse .table_row [class^='table_col_'].center_verticle,
  .table_wrapper.large_tablet_collapse .table_row [class^='table_col_'].center_all,
  .table_wrapper .large_tablet_collapse .table_row [class^='table_col_'].center_all {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .table_wrapper.large_tablet_collapse .table_row [class^='table_col_'] span.title,
  .table_wrapper .large_tablet_collapse .table_row [class^='table_col_'] span.title {
    display: block;
  }
  .table_wrapper.large_tablet_collapse .table_row [class^='table_col_'] a.download,
  .table_wrapper .large_tablet_collapse .table_row [class^='table_col_'] a.download {
    display: block;
    padding: 15px 15px 0;
  }
}
@media all and (max-width: 768px) {
  .table_wrapper.small_tablet_collapse,
  .table_wrapper .small_tablet_collapse {
    width: 100%;
  }
  .table_wrapper.small_tablet_collapse .table_row,
  .table_wrapper .small_tablet_collapse .table_row {
    flex-direction: column;
    padding: 10px 0;
  }
  .table_wrapper.small_tablet_collapse .table_row.table_header,
  .table_wrapper .small_tablet_collapse .table_row.table_header {
    display: none;
  }
  .table_wrapper.small_tablet_collapse .table_row [class^='table_col_'],
  .table_wrapper .small_tablet_collapse .table_row [class^='table_col_'] {
    width: 100%;
  }
  .table_wrapper.small_tablet_collapse .table_row [class^='table_col_'].center_verticle,
  .table_wrapper .small_tablet_collapse .table_row [class^='table_col_'].center_verticle,
  .table_wrapper.small_tablet_collapse .table_row [class^='table_col_'].center_all,
  .table_wrapper .small_tablet_collapse .table_row [class^='table_col_'].center_all {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .table_wrapper.small_tablet_collapse .table_row [class^='table_col_'] span.title,
  .table_wrapper .small_tablet_collapse .table_row [class^='table_col_'] span.title {
    display: block;
  }
  .table_wrapper.small_tablet_collapse .table_row [class^='table_col_'] a.download,
  .table_wrapper .small_tablet_collapse .table_row [class^='table_col_'] a.download {
    display: block;
    padding: 15px 15px 0;
  }
}
@media all and (max-width: 570px) {
  .table_wrapper.mobile_collapse,
  .table_wrapper .mobile_collapse {
    width: 100%;
  }
  .table_wrapper.mobile_collapse .table_row,
  .table_wrapper .mobile_collapse .table_row {
    flex-direction: column;
    padding: 10px 0;
  }
  .table_wrapper.mobile_collapse .table_row.table_header,
  .table_wrapper .mobile_collapse .table_row.table_header {
    display: none;
  }
  .table_wrapper.mobile_collapse .table_row [class^='table_col_'],
  .table_wrapper .mobile_collapse .table_row [class^='table_col_'] {
    width: 100%;
  }
  .table_wrapper.mobile_collapse .table_row [class^='table_col_'].center_verticle,
  .table_wrapper .mobile_collapse .table_row [class^='table_col_'].center_verticle,
  .table_wrapper.mobile_collapse .table_row [class^='table_col_'].center_all,
  .table_wrapper .mobile_collapse .table_row [class^='table_col_'].center_all {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .table_wrapper.mobile_collapse .table_row [class^='table_col_'] span.title,
  .table_wrapper .mobile_collapse .table_row [class^='table_col_'] span.title {
    display: block;
  }
  .table_wrapper.mobile_collapse .table_row [class^='table_col_'] a.download,
  .table_wrapper .mobile_collapse .table_row [class^='table_col_'] a.download {
    display: block;
    padding: 15px 15px 0;
  }
}
.table_wrapper .table_row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-width: 1px 0 0 0;
  /* table columns */
  /* table section */
  /* table header */
  /* column width */
}
.table_wrapper .table_row:last-child {
  border-width: 1px 0;
}
.table_wrapper .table_row [class^='table_col_'] {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-width: 0 1px 0 0;
  /* column content center and direction */
}
.table_wrapper .table_row [class^='table_col_']:last-child {
  border-width: 0;
}
.table_wrapper .table_row [class^='table_col_'].center_verticle {
  justify-content: center;
  text-align: center;
}
.table_wrapper .table_row [class^='table_col_'].center_horizon {
  align-items: center;
}
.table_wrapper .table_row [class^='table_col_'].center_all {
  justify-content: center;
  align-items: center;
}
.table_wrapper .table_row [class^='table_col_'] span.title {
  display: none;
  font-size: 1.2em;
  font-weight: 500;
  width: 100%;
}
.table_wrapper .table_row.table_section {
  border-left: 2px solid #009fda;
}
.table_wrapper .table_row.table_header {
  background: #fafafa;
}
.table_wrapper .table_row.table_header span {
  font-size: 1.2em;
  font-weight: 500;
}
.table_wrapper .table_row .table_col_1 {
  width: 8.33333333%;
}
.table_wrapper .table_row .table_col_2 {
  width: 16.66666667%;
}
.table_wrapper .table_row .table_col_3 {
  width: 25%;
}
.table_wrapper .table_row .table_col_4 {
  width: 33.33333333%;
}
.table_wrapper .table_row .table_col_5 {
  width: 41.66666667%;
}
.table_wrapper .table_row .table_col_6 {
  width: 50%;
}
.table_wrapper .table_row .table_col_7 {
  width: 58.33333333%;
}
.table_wrapper .table_row .table_col_8 {
  width: 66.66666667%;
}
.table_wrapper .table_row .table_col_9 {
  width: 75%;
}
.table_wrapper .table_row .table_col_10 {
  width: 83.33333333%;
}
.table_wrapper .table_row .table_col_11 {
  width: 91.66666667%;
}
.table_wrapper .table_row .table_col_12 {
  width: 100%;
}
.password_field {
  display: flex;
  flex-direction: row;
}
.password_field input {
  background: none;
  border-right: 0!important;
}
.password_field .show_password {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  cursor: pointer;
}
.password_field .show_password i {
  color: #5b5a58;
}
.password_field .show_password.active i {
  color: #009fda;
}
/* PAYMENT PROGRESS PIE CHART */
#reset_data {
  margin: 50px auto;
  display: block;
}
.progress-pie-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #E5E5E5;
  position: relative;
}
.progress-pie-chart.gt-50 {
  background-color: #00b8f1;
}
.progress-pie-chart + #value {
  display: none;
}
.ppc-progress {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% -  200px/2);
  top: calc(50% -  200px/2);
  width: 200px;
  height: 200px;
  clip: rect(0, 200px, 200px, 200px/2);
}
.ppc-progress .ppc-progress-fill {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% -  200px/2);
  top: calc(50% -  200px/2);
  width: 200px;
  height: 200px;
  clip: rect(0, 200px/2, 200px, 0);
  background: #00b8f1;
  transform: rotate(0deg);
}
.gt-50 .ppc-progress {
  clip: rect(0, 200px/2, 200px, 0);
}
.gt-50 .ppc-progress .ppc-progress-fill {
  clip: rect(0, 200px, 200px, 200px/2);
  background: #E5E5E5;
}
.ppc-percents {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% -  200px/1.15/2);
  top: calc(50% -  200px/1.15/2);
  width: 200px/1.15;
  height: 200px/1.15;
  background: #fff;
  text-align: center;
  display: table;
}
.ppc-percents span {
  display: block;
  font-size: 2.6em;
  font-weight: bold;
  color: #00b8f1;
}
.pcc-percents-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.progress-pie-chart {
  margin: 50px auto 0;
}
/* inmotion archives carousel */
/* Default Variables */
/* Slider */
.slick-loading .slick-list {
  background: #fff url('ajax-loader.gif') center center no-repeat;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}
.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: 0px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  padding: 0!important;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 45px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
@media all and (max-width: 570px) {
  .slick-dots li {
    width: 25px;
  }
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 55px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
@media all and (max-width: 570px) {
  .slick-dots li button {
    width: 35px;
  }
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  transition: all 0.3s ease-in-out;
  top: 5px;
  left: 0;
  border-radius: 5px;
  background: #E7E8E9;
  content: "•";
  width: 55px;
  height: 10px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #E7E8E9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0;
}
@media all and (max-width: 570px) {
  .slick-dots li button:before {
    width: 35px;
    height: 6px;
  }
}
.slick-dots li.slick-active button:before {
  background: #D0CECE;
  z-index: 9;
  transition: all 0s linear;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  animation: all 0.3s ease-in;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide:focus {
  outline: none;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.archive_carousel_wrapper .archive {
  height: 0;
  overflow: hidden;
}
.archive_carousel_wrapper .archive .item .inner_wrapper {
  position: relative;
  width: 85%;
  display: block;
  margin: 0 auto;
  transition: all 0.3s linear;
}
.archive_carousel_wrapper .archive .item .inner_wrapper img {
  max-width: 100%;
}
.archive_carousel_wrapper .archive .item .inner_wrapper .archive-title {
  display: block;
  margin-top: 15px;
  text-align: center;
  opacity: 0;
  transition: all 0.3s linear;
}
.archive_carousel_wrapper .archive .item .inner_wrapper .archive-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-shadow: none;
}
.archive_carousel_wrapper .archive .item .inner_wrapper .archive-cover:focus {
  outline: none;
}
.archive_carousel_wrapper .archive .item.slick-center .inner_wrapper {
  transform: scale(1.15);
}
.archive_carousel_wrapper .archive .item.slick-center .inner_wrapper .archive-title {
  opacity: 1;
}
.archive_carousel_wrapper .archive .item:focus,
.archive_carousel_wrapper .archive .item:active {
  outline: none;
}
.archive_carousel_wrapper .archive.active {
  height: auto;
  padding-bottom: 65px;
}
.archive_carousel_wrapper .archive.archive_grid .item:hover .inner_wrapper {
  transform: scale(1.15);
}
.archive_carousel_wrapper .archive.archive_grid .item:hover .inner_wrapper .archive-title {
  opacity: 1;
}
.archive_wrapper {
  max-width: 1000px;
  margin: 0 auto 100px;
  display: block;
}
@media all and (max-width: 768px) {
  .archive_wrapper {
    margin-bottom: 60px;
  }
}
@media all and (max-width: 570px) {
  .archive_wrapper {
    margin-bottom: 30px;
  }
}
.archive_wrapper .light-lead-heading {
  font-size: 2em;
  color: #333;
  font-weight: 300;
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 2px;
}
.archive_wrapper .archive_year {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-top: 2px solid #F6F7F7;
  border-bottom: 2px solid #F6F7F7;
}
.archive_wrapper .archive_year .item {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 10px;
  cursor: pointer;
  padding: 25px 10px;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
}
@media all and (max-width: 570px) {
  .archive_wrapper .archive_year .item {
    font-size: 1em;
    padding: 25px 5px;
    margin: 0 5px;
  }
}
.archive_wrapper .archive_year .item.active {
  border-top: 4px solid #009FDA;
  margin-top: -4px;
}
.archive_wrapper .archive_year .more {
  min-width: 60px;
  height: 77px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #333;
  text-decoration: none;
}
.archive_wrapper .archive_year .more .letter {
  font-size: 1em;
  position: relative;
  min-width: 7px;
}
.archive_wrapper .archive_year .more .letter:after {
  content: '';
  position: absolute;
  top: calc(50% - 3.5px);
  left: calc(50% - 3.5px);
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #D0CECE;
  transition: all 0.3s linear;
}
.archive_wrapper .archive_year .more .letter:nth-child(2):after {
  transition-delay: 0.2s;
}
.archive_wrapper .archive_year .more .letter:nth-child(3):after {
  transition-delay: 0.4s;
}
.archive_wrapper .archive_year .more:hover .letter:after {
  background: #333;
}
/* APP GRID VIEW */
body .block #app_grid h3.sub_heading {
  color: #333;
  font-weight: 300;
  font-size: 1.7em;
  padding: 0 15px;
  margin-bottom: 0;
}
@media all and (max-width: 325px) {
  body .block #app_grid h3.sub_heading {
    font-size: 1.5em;
  }
}
#featured_app_main_container {
  margin-top: 120px;
}
@media all and (max-width: 768px) {
  #featured_app_main_container {
    margin-top: 90px;
  }
}
@media all and (max-width: 570px) {
  #featured_app_main_container {
    margin-top: 60px;
  }
}
#featured_app_scroll_point {
  display: block;
  height: 1px;
  width: 100%;
}
.view-id-featured_app_grid {
  /* featured app */
  /* app grid */
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid {
    margin-bottom: 50px;
  }
}
.view-id-featured_app_grid.view-display-id-block {
  padding-bottom: 75px;
  margin: 0px 17.5px 70px;
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block {
    margin: 0px 10.5px 70px;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content {
  display: flex;
  flex-wrap: wrap;
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* app featured image */
  /* app platforms */
  /* app content */
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img {
  order: 2;
  width: calc(50% - 50px);
  padding: 30px 17.5px 0;
  position: relative;
}
@media all and (max-width: 1025px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img {
    width: 50%;
  }
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img {
    width: 100%;
    margin-top: 35px;
    min-height: unset;
    padding: 0;
    position: relative;
  }
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img .field--name-field-featured-image {
    min-height: unset;
    position: relative;
  }
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img .field--name-field-featured-image img {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
  }
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img {
    width: 100%;
    margin-top: 35px;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img .field--name-field-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img .field--name-field-featured-image {
    min-height: unset;
    position: relative;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img .field--name-field-featured-image img {
  max-height: 100%;
  position: absolute;
  height: 100%;
  max-width: unset;
  width: auto;
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img .field--name-field-featured-image img {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img .supported_platforms {
  position: absolute;
  top: 15px;
  left: 15px;
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_featured_img .supported_platforms .field-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content {
  order: 1;
  width: 50%;
  /* hide content for popups */
}
@media all and (max-width: 1025px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content {
    padding-right: 35px;
  }
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content {
    width: 100%;
  }
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content {
    width: 100%;
    padding-right: 0;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .lead-heading {
  font-size: 3.9em;
  font-weight: 300;
}
@media all and (max-width: 1025px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .lead-heading {
    font-size: 3.2em;
  }
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .lead-heading {
    font-size: 3em;
  }
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .lead-heading {
    font-size: 2.5em;
  }
}
@media all and (max-width: 325px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .lead-heading {
    font-size: 2em;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading {
  display: flex;
  justify-content: flex-start;
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading {
    flex-direction: column;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading.logo_alt {
  margin: 20px 0 25px;
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo {
  display: block;
  max-width: max-content;
  max-height: max-content;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(40, 48, 79, 0), 0 2px 4px rgba(40, 48, 79, 0.2), inset 0 -1px 4px rgba(23, 78, 138, 0.09);
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo img {
  max-width: 150px;
  max-height: 74px;
  height: auto;
  width: auto;
}
@media all and (max-width: 1025px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo img {
    max-width: 135px;
  }
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo img {
    max-width: 150px;
  }
}
@media all and (max-width: 325px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo img {
    max-width: 135px;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo.logo {
  border-radius: 0;
  box-shadow: unset;
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo.logo + .app_title_provider {
  margin-left: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo.logo + .app_title_provider {
    padding: 0;
    margin: 10px 0 0px;
    border: 0;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo.logo + .app_title_provider:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
  filter: blur(10px);
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_logo.logo + .app_title_provider .app_title {
  display: none;
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_title_provider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.1em;
  padding-left: 20px;
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_title_provider {
    padding: 0;
    margin: 10px 0 0px;
    border: 0;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_title_provider .app_title {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 0;
  color: #333;
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_title_provider .app_title {
    font-size: 1.2em;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_title_provider .app_provider {
  font-size: 1.2em;
  color: #333;
  display: flex;
}
@media all and (max-width: 1025px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_title_provider .app_provider {
    font-size: 1em;
  }
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_title_provider .app_provider {
    font-size: 1.2em;
  }
}
@media all and (max-width: 325px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_heading .app_title_provider .app_provider {
    font-size: 1.1em;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_description {
  font-size: 1.2em;
  margin-top: 15px;
  margin-bottom: 30px;
  overflow: hidden;
  display: -webkit-box;
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_description {
    font-size: 1.1em;
    margin-bottom: 25px;
  }
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_description {
    margin-bottom: 20px;
  }
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .app_description p {
  margin: 0;
  padding: 0;
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .cta-primary {
  font-size: 1.2em;
}
.view-id-featured_app_grid.view-display-id-block .view-content .app_inner_wrapper .app_content .hidden_content {
  display: none;
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content {
  display: flex;
  flex-wrap: wrap;
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row {
  width: 33.33%;
  padding: 30px 17.5px 70px;
  /* app content */
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row {
    padding: 30px 17.5px 50px;
  }
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row {
    width: 100%;
    padding: 30px 10.5px;
  }
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content {
  /* hide content for popups */
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_heading .app_logo {
  display: none;
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_heading .app_title {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-bottom: 0;
  padding-top: 20px;
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_heading .app_title {
    font-size: 1.2em;
  }
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_heading .app_provider {
  font-size: 1.2em;
  color: #009fda;
  display: flex;
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_description {
  font-size: 1.2em;
  margin-top: 15px;
  padding-top: 15px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_description {
    font-size: 1.1em;
    margin-bottom: 25px;
  }
}
@media all and (max-width: 570px) {
  .view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_description {
    margin-bottom: 20px;
  }
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_description p {
  margin: 0;
  padding: 0;
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_readmore {
  font-size: 1.2em;
  color: #333;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s linear;
}
@media all and (max-width: 768px) {
  .view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_readmore {
    font-size: 1.1em;
  }
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .app_readmore:hover {
  color: #009fda;
}
.view-id-featured_app_grid.view-display-id-block_1 .view-content .views-row .app_content .hidden_content {
  display: none;
}
/* app grid banner */
@media all and (max-width: 1025px) {
  .page-node-779 #section-banner .block,
  body #section-banner .app_market_place {
    background-position: 64% 30%!important;
  }
}
@media all and (max-width: 570px) {
  .page-node-779 #section-banner .block,
  body #section-banner .app_market_place {
    background-position: 75% 30%!important;
    background-image: url(/sites/default/files/APP-MOBILE-F-2-min.jpg) !important;
  }
}
.page-node-779 #section-banner .block .top-banner,
body #section-banner .app_market_place .top-banner {
  padding: 120px 25%;
}
@media all and (max-width: 1025px) {
  .page-node-779 #section-banner .block .top-banner,
  body #section-banner .app_market_place .top-banner {
    padding: 120px 15%!important;
  }
}
@media all and (max-width: 768px) {
  .page-node-779 #section-banner .block .top-banner,
  body #section-banner .app_market_place .top-banner {
    padding: 70px 10% 30px!important;
  }
}
.page-node-779 #section-banner .block .top-banner .page-main-header,
body #section-banner .app_market_place .top-banner .page-main-header {
  padding: 0 10%;
}
.page-node-779 #section-banner .block .top-banner .text-container,
body #section-banner .app_market_place .top-banner .text-container {
  text-align: center;
}
.page-node-779 #section-banner .block .top-banner .flex-cell.note,
body #section-banner .app_market_place .top-banner .flex-cell.note {
  text-align: center;
  color: #fff;
  padding: 20px 12% 0px;
  display: inline;
}
@media all and (max-width: 768px) {
  .page-node-779 #section-banner .block .top-banner .flex-cell.note,
  body #section-banner .app_market_place .top-banner .flex-cell.note {
    padding: 20px 12% 50px;
  }
}
@media all and (max-width: 570px) {
  .page-node-779 #section-banner .block .top-banner .flex-cell.note,
  body #section-banner .app_market_place .top-banner .flex-cell.note {
    font-size: 0.9em;
  }
}
@media all and (max-width: 325px) {
  .page-node-779 #section-banner .block .top-banner .flex-cell.note,
  body #section-banner .app_market_place .top-banner .flex-cell.note {
    padding: 20px 2% 50px;
  }
}
.page-node-779 #section-banner .block .top-banner .flex-cell.note span,
body #section-banner .app_market_place .top-banner .flex-cell.note span {
  font-weight: 700;
}
/* lightbox background */
body .sl-overlay {
  opacity: 1;
}
body .sl-wrapper .sl-close {
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px!important;
  height: 25px!important;
  cursor: pointer;
  font-size: 0!important;
  padding: 0!important;
}
body .sl-wrapper .sl-close:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  transform: rotate(45deg);
  background: #b5b5b5;
  top: calc(50% - 1px);
  left: calc(50% - 7.5px);
}
body .sl-wrapper .sl-close:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  transform: rotate(-45deg);
  background: #b5b5b5;
  top: calc(50% - 1px);
  left: calc(50% - 7.5px);
}
body .sl-wrapper .sl-counter {
  font-size: 1em;
}
body .sl-wrapper .sl-navigation button.sl-prev svg,
body .sl-wrapper .sl-navigation button.sl-next svg {
  max-height: 20px;
}
body .sl-wrapper .sl-navigation button.sl-prev:hover,
body .sl-wrapper .sl-navigation button.sl-next:hover {
  opacity: 0.7;
}
body .sl-wrapper .sl-navigation button.sl-prev {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
/* styles cta button */
.cta_light {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 25px;
  font-size: 1.2em;
  font-weight: 500;
  width: max-content;
  position: relative;
}
.cta_light:after {
  position: absolute;
  content: '';
  height: 2px;
  width: 13px;
  background: #009fda;
  border-radius: 10px;
  right: 0;
  transform: translateX(-12px) translateY(-0.5px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cta_light:hover:after {
  transform: translateX(-6px) translateY(-0.5px);
  opacity: 1;
}
.cta_light:hover svg {
  margin-left: 10px;
}
.cta_light svg {
  height: 15px;
  width: 15px;
  margin-left: 6px;
  transition: all 0.3s ease-in-out;
}
.cta_light svg path {
  stroke: #009fda;
}
/* -------------------------Online Community Page-------------------------- */
/* Online Community Banner */
.html #section-banner .block.online_community_banner {
  position: relative;
}
@media all and (max-width: 570px) {
  .html #section-banner .block.online_community_banner {
    background-image: url(/sites/default/files/SOCIAL%20MOBILE%20F-min.jpg) !important;
  }
  .html #section-banner .block.online_community_banner .img-parallax {
    display: none;
  }
}
.html #section-banner .block.online_community_banner .top-banner {
  padding: 170px 25% 125px;
  min-height: 400px;
  justify-content: center;
}
@media all and (max-width: 570px) {
  .html #section-banner .block.online_community_banner .top-banner {
    padding: 100px 7%;
    min-height: unset;
  }
}
.html #section-banner .block.online_community_banner .top-banner .text-container {
  text-align: center;
  display: block;
  max-width: 500px;
}
.html #section-banner .block.online_community_banner .image_credit {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}
@media all and (max-width: 768px) {
  .html #section-banner .block.online_community_banner .image_credit {
    display: none;
  }
}
/* Online Community Grid */
.gridbox_logo_top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gridbox_logo_top .items_wrapper {
  margin: 8vh auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 900px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 0;
  border-left: 0;
}
.gridbox_logo_top .items_wrapper .item {
  width: calc(100%/3);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-top: 0;
  border-right: 0;
  position: relative;
  text-align: center;
}
@media all and (max-width: 570px) {
  .gridbox_logo_top .items_wrapper .item {
    padding: 20px;
    width: calc(100%/2);
  }
}
.gridbox_logo_top .items_wrapper .item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.gridbox_logo_top .items_wrapper .item a:hover + .facebook_icon svg path {
  fill: #3b5998;
}
.gridbox_logo_top .items_wrapper .item a:hover + .twitter_icon svg path {
  fill: #38A1F3;
}
.gridbox_logo_top .items_wrapper .item a:hover + .instagram_icon svg path {
  fill: #3f6f94;
}
.gridbox_logo_top .items_wrapper .item a:hover + .linkedin_icon svg path {
  fill: #0b7bb5;
}
.gridbox_logo_top .items_wrapper .item a:hover + .youtube_icon svg path {
  fill: #c4302b;
}
.gridbox_logo_top .items_wrapper .item .icon svg:not(.transform) {
  width: 60px;
  height: 60px;
}
@media all and (max-width: 570px) {
  .gridbox_logo_top .items_wrapper .item .icon svg:not(.transform) {
    height: 40px;
  }
}
.gridbox_logo_top .items_wrapper .item .icon svg:not(.transform) path {
  fill: #a6a8ab;
  transition: all 0.3s linear;
}
.gridbox_logo_top .items_wrapper .item .icon svg.transform {
  width: 130px;
  height: 70px;
  margin-top: -10px;
}
@media all and (max-width: 570px) {
  .gridbox_logo_top .items_wrapper .item .icon svg.transform {
    height: 60px;
    margin-top: 0px;
  }
}
.gridbox_logo_top .items_wrapper .item .icon svg.transform path {
  transition: all 0.3s linear;
}
.gridbox_logo_top .items_wrapper .item .icon.transform_icon.gray path {
  fill: #a6a8ab;
}
.gridbox_logo_top .items_wrapper .item .icon.facebook_icon svg,
.gridbox_logo_top .items_wrapper .item .icon.instagram_icon svg,
.gridbox_logo_top .items_wrapper .item .icon.linkedin_icon svg {
  height: 50px;
}
@media all and (max-width: 570px) {
  .gridbox_logo_top .items_wrapper .item .icon.facebook_icon svg,
  .gridbox_logo_top .items_wrapper .item .icon.instagram_icon svg,
  .gridbox_logo_top .items_wrapper .item .icon.linkedin_icon svg {
    height: 40px;
  }
}
.sub_text_center {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8vh;
  font-size: 1.3em;
}
.sub_text_center p {
  font-size: 1.4em;
  max-width: 500px;
}
/* social media contact block */
body .social_media_contact {
  padding: 8vh 0;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
body .social_media_contact .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .social_media_contact h2.lead-heading {
  font-weight: 300;
  margin-bottom: 0;
  max-width: 80%;
}
@media all and (max-width: 570px) {
  body .social_media_contact h2.lead-heading {
    font-size: 2.9em;
  }
}
@media all and (max-width: 325px) {
  body .social_media_contact h2.lead-heading {
    font-size: 2.5em;
  }
}
body .social_media_contact .sub-heading {
  font-size: 1.8em;
}
@media all and (max-width: 768px) {
  body .social_media_contact .sub-heading {
    max-width: 80%;
  }
}
@media all and (max-width: 570px) {
  body .social_media_contact .sub-heading {
    font-size: 1.5em;
  }
}
@media all and (max-width: 325px) {
  body .social_media_contact .sub-heading {
    font-size: 1.3em;
  }
}
body .social_media_contact .sub-heading a {
  color: #333;
  font-weight: 500;
  transition: all 0.3s linear;
}
body .social_media_contact .sub-heading a:hover {
  color: #009fda;
}
/* HIDE FLIP BOOK COVER */
._df_thumb,
._df_book {
  margin: 0;
  box-shadow: none;
}
._df_thumb ._df_book-cover,
._df_book ._df_book-cover {
  display: none!important;
}
.mobile_visible {
  display: none!important;
}
@media all and (max-width: 480px) {
  .mobile_visible {
    display: inherit!important;
  }
}
/* remove unuse fonts */
body a b,
body span b {
  font-family: Roboto;
}
/* TRADIES BANNER */
.html #section-banner .block #tradies-main-banner {
  padding: 170px 25% 130px;
}
@media all and (max-width: 1025px) {
  .html #section-banner .block #tradies-main-banner {
    padding: 130px 15% 100px;
  }
}
.html #section-banner .block #tradies-main-banner .text-container {
  text-align: center;
}
/* TRADIES GRID */
#tradies-grid {
  margin: 12vh 0;
}
@media all and (max-width: 1025px) {
  #tradies-grid {
    margin: 8vh 0;
  }
}
@media all and (max-width: 570px) {
  #tradies-grid {
    margin: 12vh 0;
  }
}
#tradies-grid .grid_header {
  margin-bottom: 6vh;
}
#tradies-grid .grid_header h2 {
  margin: 0;
  color: #333;
  font-size: 2.3em;
  text-align: center;
}
#tradies-grid .grid_wrapper {
  display: flex;
  justify-content: center;
}
@media all and (max-width: 570px) {
  #tradies-grid .grid_wrapper {
    flex-direction: column;
  }
}
#tradies-grid .grid_wrapper .tradies_item {
  width: calc(33.33% - 15px);
  display: flex;
  flex-direction: column;
  max-width: 420px;
  margin: 0 15px;
}
@media all and (max-width: 570px) {
  #tradies-grid .grid_wrapper .tradies_item {
    flex-direction: column;
    margin: 0;
    width: 100%;
    margin-bottom: 8vh;
  }
  #tradies-grid .grid_wrapper .tradies_item:last-of-type {
    margin-bottom: 0;
  }
}
#tradies-grid .grid_wrapper .tradies_item .item_featured_image {
  padding-bottom: 54.5%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#tradies-grid .grid_wrapper .tradies_item .item_details {
  margin-top: 30px;
}
@media all and (max-width: 570px) {
  #tradies-grid .grid_wrapper .tradies_item .item_details {
    margin-top: 15px;
  }
}
#tradies-grid .grid_wrapper .tradies_item .item_details .item_heading {
  font-size: 1.3em;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
#tradies-grid .grid_wrapper .tradies_item .item_details .item_url {
  color: #333;
  font-size: 1.2em;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.2s ease;
}
#tradies-grid .grid_wrapper .tradies_item .item_details .item_url:hover {
  color: #009fda;
}
/* CAMPAIGN SUPPORTER GRID */
.campaign_supporter_section .campaign_supporters {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-width: 1px 0;
  margin: 3vh 0 10vh;
  padding: 10px 0 15px;
}
.campaign_supporter_section .campaign_supporters .supporter_heading h3 {
  font-size: 1.2em;
  color: #333;
  padding: 0;
}
.campaign_supporter_section .campaign_supporters .supporter_grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media all and (max-width: 1025px) {
  .campaign_supporter_section .campaign_supporters .supporter_grid {
    justify-content: center;
  }
}
@media all and (max-width: 570px) {
  .campaign_supporter_section .campaign_supporters .supporter_grid {
    justify-content: space-between;
  }
}
.campaign_supporter_section .campaign_supporters .supporter_grid .supporter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 25%;
}
@media all and (max-width: 1025px) {
  .campaign_supporter_section .campaign_supporters .supporter_grid .supporter {
    width: 33%;
    margin-bottom: 15px;
  }
}
@media all and (max-width: 570px) {
  .campaign_supporter_section .campaign_supporters .supporter_grid .supporter {
    width: 40%;
  }
}
.campaign_supporter_section .campaign_supporters .supporter_grid .supporter .supporter_logo {
  padding-bottom: 50px;
}
@media all and (max-width: 1025px) {
  .campaign_supporter_section .campaign_supporters .supporter_grid .supporter .supporter_logo {
    padding-bottom: 35px;
  }
}
@media all and (max-width: 570px) {
  .campaign_supporter_section .campaign_supporters .supporter_grid .supporter .supporter_logo {
    padding-bottom: 0;
  }
}
.campaign_supporter_section .campaign_supporters .supporter_grid .supporter .supporter_url {
  position: absolute;
  bottom: 5px;
  color: #333;
  transition: all 0.2s ease;
}
.campaign_supporter_section .campaign_supporters .supporter_grid .supporter .supporter_url:hover {
  text-decoration: underline;
  color: #009fda;
}
@media all and (max-width: 570px) {
  .campaign_supporter_section .campaign_supporters .supporter_grid .supporter .supporter_url {
    display: none;
  }
}
/* AUDIO PLAYER */
.audio_player {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(15px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  /* close button */
  /* play list */
  /* control panel */
}
@media all and (min-width: 571px) {
  .audio_player {
    min-width: 500px;
  }
}
@media all and (max-width: 570px) {
  .audio_player {
    min-width: 100%;
  }
}
.audio_player.active {
  transform: translateY(0px) scale(1);
  opacity: 1;
  visibility: visible;
}
.audio_player .close_player {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.audio_player .close_player:before,
.audio_player .close_player:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  transition: all 0.2s ease;
}
.audio_player .close_player:after {
  transform: rotate(-45deg);
}
.audio_player .close_player:hover:before,
.audio_player .close_player:hover:after {
  background: #ffffff;
}
.audio_player .audio_playlist {
  display: flex;
  flex-direction: column;
  padding: 25px 25px 0;
}
.audio_player .audio_playlist .audio_item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
}
.audio_player .audio_playlist .audio_item.active .audio_title,
.audio_player .audio_playlist .audio_item:hover .audio_title,
.audio_player .audio_playlist .audio_item.active .audio_duration,
.audio_player .audio_playlist .audio_item:hover .audio_duration {
  color: #ffffff;
}
.audio_player .audio_playlist .audio_item.active .audio_play_icon svg path,
.audio_player .audio_playlist .audio_item:hover .audio_play_icon svg path {
  fill: hsl(196, 100%, 47%);
}
.audio_player .audio_playlist .audio_item audio {
  display: none;
}
.audio_player .audio_playlist .audio_item .audio_play_icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audio_player .audio_playlist .audio_item .audio_play_icon svg {
  width: 25px;
  height: 25px;
}
.audio_player .audio_playlist .audio_item .audio_play_icon svg path,
.audio_player .audio_playlist .audio_item .audio_play_icon svg rect {
  transition: all 0.2s ease;
  fill: rgba(255, 255, 255, 0.5);
}
.audio_player .audio_playlist .audio_item .audio_title,
.audio_player .audio_playlist .audio_item .audio_duration {
  font-size: 1.4em;
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 0;
  transition: all 0.2s ease;
}
.audio_player .audio_playlist .audio_item .audio_title {
  flex: 1;
  padding: 10px 30px 10px 20px;
}
.audio_player .control_panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  margin: 25px 0 0;
  border-top: 3px solid hsl(196, 100%, 47%);
}
.audio_player .control_panel .audio_info {
  flex: 4;
}
.audio_player .control_panel .audio_info .status {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  font-size: 0.9em;
  display: block;
}
.audio_player .control_panel .audio_info .playing_title {
  display: block;
  color: #fff;
  font-size: 1.2em;
}
.audio_player .control_panel .audio_actions {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.audio_player .control_panel .audio_actions svg {
  width: 15px;
}
.audio_player .control_panel .audio_actions svg path,
.audio_player .control_panel .audio_actions svg rect {
  transition: all 0.2s ease;
  fill: rgba(255, 255, 255, 0.6);
}
.audio_player .control_panel .audio_actions > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audio_player .control_panel .audio_actions > a > span {
  display: flex;
}
.audio_player .control_panel .audio_actions .audio_play_icon svg,
.audio_player .control_panel .audio_actions .audio_pause_icon svg {
  width: 50px;
  height: 50px;
}
.audio_player .control_panel .audio_actions .audio_prev svg,
.audio_player .control_panel .audio_actions .audio_next svg {
  width: 20px;
  height: 20px;
}
.audio_player .control_panel .audio_actions .audio_prev:hover svg path,
.audio_player .control_panel .audio_actions .audio_next:hover svg path,
.audio_player .control_panel .audio_actions .audio_pause_icon:hover svg path,
.audio_player .control_panel .audio_actions .audio_play_icon:hover svg path,
.audio_player .control_panel .audio_actions .audio_prev:hover svg rect,
.audio_player .control_panel .audio_actions .audio_next:hover svg rect,
.audio_player .control_panel .audio_actions .audio_pause_icon:hover svg rect,
.audio_player .control_panel .audio_actions .audio_play_icon:hover svg rect {
  fill: #ffffff;
}
.audio_player .control_panel .audio_actions .audio_status {
  margin: 0 25px;
}
.audio_player .control_panel .audio_actions .audio_status.pause .audio_pause_icon {
  display: none!important;
}
.audio_player .control_panel .audio_actions .audio_status.play .audio_play_icon {
  display: none!important;
}
.audio_player .control_panel .audio_play_time {
  flex: 4;
  display: flex;
  justify-content: flex-end;
}
.audio_player .control_panel .audio_play_time .audio_current_sec {
  font-size: 1.2em;
  color: #fff;
}
.audio_player .control_panel .audio_play_time .separator {
  padding: 0 10px;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.5);
}
.audio_player .control_panel .audio_play_time .audio_duration {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.5);
}
/* info icon for MTprice */
.MTprice .info_icon {
  margin-left: 10px;
  cursor: pointer;
}
.MTprice .info_icon svg {
  width: 15px;
  height: 15px;
}
.MTprice .info_icon svg path {
  fill: #666666;
}
/* save card message */
.save_card_msg {
  color: #920075;
  display: none;
}
#join-insurance-form .save_card_msg,
#renew-insurance-form .save_card_msg {
  padding-top: 15px;
}
/* DASHBOARD FULL WIDTH NOTE */
.full_width_note {
  font-size: 0.9em;
  background: #f9f9f9;
  padding: 25px;
  margin: 10px 0;
  border-radius: 15px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
}
.full_width_note ul:last-of-type {
  margin-bottom: 0!important;
}
.note_trigger {
  width: 15px;
  display: inline-block;
  margin-left: 5px;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}
.note_trigger:hover svg path,
.note_trigger.active svg path {
  fill: #009fda;
}
.note_box {
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  background: #f7f7f7;
  border-radius: 12px;
}
.workplace_nav {
  display: flex;
  flex-direction: row;
}
.workplace_nav #tabmenu {
  margin-bottom: 0;
}
.workplace_nav .add-workplace-join {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 10px 0;
  margin: 0!important;
}
.workplace_nav .add-workplace-join .icon {
  width: 20px;
  height: 20px;
}
.workplace_nav .add-workplace-join .icon svg path {
  fill: #009fda;
}
.workplace_nav .add-workplace-join span:not(.icon) {
  font-size: 15px;
  margin-right: 15px;
}
#magazine-subscription {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
}
@media all and (max-width: 768px) {
  #magazine-subscription {
    padding: 100px 0;
  }
}
@media all and (max-width: 570px) {
  #magazine-subscription {
    padding: 50px 0;
  }
}
#magazine-subscription .inner-magazine-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 925px;
  margin: 0 auto;
}
#magazine-subscription .inner-magazine-wrapper .magazine-grid {
  display: block;
  position: relative;
  max-width: 300px;
}
@media all and (max-width: 768px) {
  #magazine-subscription .inner-magazine-wrapper .magazine-grid {
    max-width: 580px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
}
#magazine-subscription .inner-magazine-wrapper .magazine-grid .magazine {
  display: inline-block;
  width: 100%;
  max-width: 140px;
  margin: 4px;
  box-shadow: 1px 8px 12px rgba(0, 0, 0, 0.1), 0 6px 10px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 768px) {
  #magazine-subscription .inner-magazine-wrapper .magazine-grid .magazine {
    width: calc(25% - 8px);
  }
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content {
  position: relative;
  display: block;
  width: calc(100% - 300px);
  padding: 0 0 0 60px;
}
@media all and (max-width: 768px) {
  #magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content {
    width: 100%;
    padding: 50px 0 0 0;
    max-width: 580px;
    margin: 0 auto;
  }
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .lead-heading {
  font-size: 3.5em;
  margin-bottom: 35px;
}
@media all and (max-width: 570px) {
  #magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .lead-heading {
    font-size: 3em;
    margin-bottom: 25px;
  }
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content p {
  font-size: 1.7em;
  color: #525252;
}
@media all and (max-width: 570px) {
  #magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content p {
    font-size: 1.2em;
  }
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .subscribe-option {
  margin: 35px 0;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 570px) {
  #magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .subscribe-option {
    margin: 25px 0;
  }
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .subscribe-option .option {
  display: block;
  width: 50%;
}
@media all and (max-width: 924px) {
  #magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .subscribe-option .option {
    width: 100%;
    margin-bottom: 20px;
  }
  #magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .subscribe-option .option:last-of-type {
    margin-bottom: 0px;
  }
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .subscribe-option .option label {
  display: flex;
  align-items: center;
  font-size: 1.3em;
  font-weight: 500;
  color: #525252;
  margin: 0;
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .subscribe-option .option label:before {
  box-shadow: 0 0 0 2px #009fda;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  margin-right: 12px;
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .subscribe-option .option label:after {
  transform: rotate(45deg) scale(2);
  left: 7px;
  top: 14px;
  background: #009fda;
  box-shadow: 2px 0 0 #009fda, 4px 0 0 #009fda, 4px -2px 0 #009fda, 4px -4px 0 #009fda, 4px -6px 0 #009fda, 4px -8px 0 #009fda;
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .action-wrapper .accent-btn {
  padding: 10px 30px;
  margin-right: 10px;
  min-width: 175px;
}
@media all and (max-width: 570px) {
  #magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .action-wrapper .accent-btn {
    margin-right: 5px;
    min-width: calc(50% - 10px);
    padding: 10px 0;
  }
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .action-wrapper .accent-btn.back-to-prev {
  background: #A6A8AB;
  color: #fff;
}
#magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .note p {
  font-size: 1.2em;
  margin: 0;
  margin-top: auto;
  display: block;
  position: relative;
  color: #525252;
}
@media all and (max-width: 570px) {
  #magazine-subscription .inner-magazine-wrapper .magazine-subscribe-content .note p {
    font-size: 1em;
  }
}
/* SIMPLE CONTENT BANNER */
.simple-content-banner {
  padding: 150px 0;
  display: flex;
  justify-content: center;
}
@media all and (max-width: 768px) {
  .simple-content-banner {
    padding: 96px 0;
  }
}
@media all and (max-width: 570px) {
  .simple-content-banner {
    padding: 75px 0;
  }
}
.simple-content-banner .banner-inner-wrapper {
  width: 100%;
  max-width: 915px;
}
.simple-content-banner.default-width .banner-inner-wrapper {
  max-width: 100%;
}
.simple-content-banner.gutter-medium {
  padding: 100px 0;
}
@media all and (max-width: 768px) {
  .simple-content-banner.gutter-medium {
    padding: 55px 0;
  }
}
@media all and (max-width: 570px) {
  .simple-content-banner.gutter-medium {
    padding: 50px 0;
  }
}
.simple-content-banner .banner-heading h2 {
  color: #009fda;
  font-size: 50px;
  line-height: 55px;
  font-weight: 500;
  text-align: center;
}
.simple-content-banner .banner-heading h2:first-child {
  margin-top: 0;
}
.simple-content-banner .banner-heading h2:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 570px) {
  .simple-content-banner .banner-heading h2 {
    font-size: 35px;
    line-height: 40px;
  }
}
.simple-content-banner .banner-body {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  margin-top: 54px;
  font-family: Roboto;
}
@media all and (max-width: 570px) {
  .simple-content-banner .banner-body {
    margin-top: 25px;
    font-size: 16px;
    line-height: 18px;
  }
}
.simple-content-banner .banner-body:first-child {
  margin-top: 0;
}
.simple-content-banner .banner-body a {
  text-decoration: none;
  font-weight: 500;
}
.simple-content-banner .banner-body a:hover {
  text-decoration: underline;
}
.simple-content-banner .banner-body p {
  margin-top: 16px;
  margin-bottom: 0;
}
.simple-content-banner .banner-body p:first-child {
  margin-top: 0;
}
.research .simple-content-banner.gutter-medium {
  padding-top: 30px;
}
/* FEATURED FIGURE BOX */
.featured-figure-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: #f0f2f2;
  padding: 45px 0;
  /* STYLE 2 */
}
@media all and (max-width: 768px) {
  .featured-figure-box {
    padding: 45px;
  }
}
.featured-figure-box .box-heading {
  text-align: center;
}
.featured-figure-box .box-heading h3 {
  font-size: 50px;
  line-height: 50px;
  color: #32363D;
  font-family: Cairo;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
@media all and (max-width: 768px) {
  .featured-figure-box .box-heading h3 {
    font-size: 40px;
  }
}
.featured-figure-box .box-body {
  display: flex;
  margin-top: 35px;
}
.featured-figure-box .box-body .box-grid {
  display: flex;
  width: 100%;
}
@media all and (max-width: 768px) {
  .featured-figure-box .box-body .box-grid {
    flex-direction: column;
  }
}
.featured-figure-box .box-body .box-grid .box-item {
  flex: 1;
  padding: 0 50px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px dashed #393939;
}
.featured-figure-box .box-body .box-grid .box-item:last-child {
  border-right: 0;
}
@media all and (max-width: 1400px) {
  .featured-figure-box .box-body .box-grid .box-item {
    padding: 0 35px 35px;
  }
}
@media all and (max-width: 768px) {
  .featured-figure-box .box-body .box-grid .box-item {
    border-right: 0;
    border-bottom: 1px dashed #393939;
    padding: 35px 0;
  }
  .featured-figure-box .box-body .box-grid .box-item:first-child {
    padding-top: 0;
  }
  .featured-figure-box .box-body .box-grid .box-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.featured-figure-box .box-body .box-grid .box-item .svg-icon {
  width: 130px;
  height: 130px;
}
@media all and (max-width: 1400px) {
  .featured-figure-box .box-body .box-grid .box-item .svg-icon {
    width: 100px;
    height: 100px;
  }
}
.featured-figure-box .box-body .box-grid .box-item .figured-content {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Cairo;
  margin-top: 35px;
}
@media all and (max-width: 768px) {
  .featured-figure-box .box-body .box-grid .box-item .figured-content {
    margin-top: 25px;
  }
}
.featured-figure-box .box-body .box-grid .box-item .figured-content .figure {
  font-size: 94px;
  line-height: 75px;
  color: #009fda;
  font-weight: 500;
  margin: 0;
}
@media all and (max-width: 1400px) {
  .featured-figure-box .box-body .box-grid .box-item .figured-content .figure {
    font-size: 50px;
    line-height: 50px;
  }
}
.featured-figure-box .box-body .box-grid .box-item .figured-content .label {
  font-size: 22px;
  line-height: 25px;
  font-weight: 600;
  color: #32363D;
  margin: 0;
  padding: 0;
  text-align: left;
  margin-left: 14px;
}
@media all and (max-width: 1400px) {
  .featured-figure-box .box-body .box-grid .box-item .figured-content .label {
    font-size: 18px;
    line-height: 20px;
  }
}
.featured-figure-box.style-2 .box-heading h3 {
  font-size: 37px;
  font-weight: 400;
}
.featured-figure-box.style-2 .box-body .box-grid .box-item {
  padding: 0 50px;
}
@media all and (max-width: 1200px) {
  .featured-figure-box.style-2 .box-body .box-grid .box-item {
    padding: 0 30px;
  }
}
@media all and (max-width: 992px) {
  .featured-figure-box.style-2 .box-body .box-grid .box-item {
    padding: 50px 30px;
  }
  .featured-figure-box.style-2 .box-body .box-grid .box-item:first-child {
    padding-top: 0;
  }
  .featured-figure-box.style-2 .box-body .box-grid .box-item:last-child {
    padding-bottom: 0;
  }
}
.featured-figure-box.style-2 .box-body .box-grid .box-item .box-label {
  font-size: 26px;
  line-height: 25px;
  color: #32363D;
  font-family: Cairo;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
.featured-figure-box.style-2 .box-body .box-grid .box-item .featured-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 168px;
  height: 168px;
  border: 10px solid #009fda;
  border-radius: 50%;
  margin-top: 28px;
}
@media all and (max-width: 1200px) {
  .featured-figure-box.style-2 .box-body .box-grid .box-item .featured-figure {
    width: 115px;
    height: 115px;
    border-width: 8px;
  }
}
@media all and (max-width: 992px) {
  .featured-figure-box.style-2 .box-body .box-grid .box-item .featured-figure {
    width: 168px;
    height: 168px;
    border-width: 10px;
  }
}
.featured-figure-box.style-2 .box-body .box-grid .box-item .featured-figure p {
  margin: 0;
  padding: 0;
  font-size: 87px;
  font-family: Cairo;
  font-weight: 500;
  line-height: 87px;
  color: #009fda;
}
@media all and (max-width: 1200px) {
  .featured-figure-box.style-2 .box-body .box-grid .box-item .featured-figure p {
    font-size: 68px;
  }
}
@media all and (max-width: 992px) {
  .featured-figure-box.style-2 .box-body .box-grid .box-item .featured-figure p {
    font-size: 87px;
  }
}
.featured-figure-box.style-2 .box-body .box-grid .box-item .figured-content {
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}
.featured-figure-box.style-2 .box-body .box-grid .box-item .figured-content .label {
  font-size: 26px;
  font-weight: 500;
  margin-left: 0;
  width: 100%;
  text-align: center;
}
.featured-figure-box.style-2 .box-body .box-grid .box-item .figured-content .figure {
  font-size: 35px;
  line-height: 50px;
  font-weight: 700;
}
/* SUB TOPBANNER WITH CTA BANNER */
.sub-top-banner .banner-cta {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 992px) {
  .sub-top-banner .banner-cta {
    flex-direction: column;
  }
}
.sub-top-banner .banner-cta .media-container {
  margin-right: 5%;
}
@media all and (max-width: 992px) {
  .sub-top-banner .banner-cta .media-container {
    margin: 0 0 24px;
  }
}
.sub-top-banner .banner-cta .content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: auto;
}
@media all and (max-width: 992px) {
  .sub-top-banner .banner-cta .content-container {
    flex-direction: column;
  }
}
.sub-top-banner .banner-cta .content-container .content-wrapper {
  text-align: left;
}
@media all and (max-width: 992px) {
  .sub-top-banner .banner-cta .content-container .content-wrapper {
    text-align: center;
  }
}
.sub-top-banner .banner-cta .content-container .content-wrapper .heading {
  font-size: 28px;
  line-height: 30px;
  color: white;
  font-weight: 200;
  margin: 0;
  padding: 0;
}
@media all and (max-width: 1200px) {
  .sub-top-banner .banner-cta .content-container .content-wrapper .heading {
    font-size: 23px;
    line-height: 27px;
  }
}
@media all and (max-width: 570px) {
  .sub-top-banner .banner-cta .content-container .content-wrapper .heading {
    font-size: 20px;
    line-height: 23px;
  }
}
.sub-top-banner .banner-cta .content-container .content-wrapper .sub-heading {
  font-size: 20px !important;
  line-height: 30px;
  font-weight: 500;
  color: white;
  margin: 0;
  padding: 0;
}
@media all and (max-width: 1200px) {
  .sub-top-banner .banner-cta .content-container .content-wrapper .sub-heading {
    font-size: 18px;
    line-height: 25px;
  }
}
@media all and (max-width: 570px) {
  .sub-top-banner .banner-cta .content-container .content-wrapper .sub-heading {
    font-size: 16px;
    line-height: 20px;
    margin-top: 4px;
  }
}
.sub-top-banner .banner-cta .content-container .actions-wrapper {
  display: flex;
  flex: auto;
  margin-left: 5%;
  justify-content: flex-end;
}
@media all and (max-width: 992px) {
  .sub-top-banner .banner-cta .content-container .actions-wrapper {
    margin: 24px 0 0px;
  }
}
.sub-top-banner .banner-cta .content-container .actions-wrapper .secondary-button {
  padding: 15px;
  font-size: 16px;
  width: 100%;
}
@media all and (max-width: 992px) {
  .sub-top-banner .banner-cta .content-container .actions-wrapper .secondary-button {
    min-width: 190px;
  }
}
/* OUTLINED ACCORDION */
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group > .panel:last-of-type .panel-heading .panel-title > a.collapsed {
  border-bottom-width: 1px;
}
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-heading .panel-title {
  width: 100%;
}
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-heading .panel-title > a {
  border: 1px solid #DBDBDB;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 20px 45px;
  font-size: 20px;
  background-color: #f0f2f2;
  transition: background-color 0.5s ease;
}
@media all and (max-width: 570px) {
  body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-heading .panel-title > a {
    padding: 20px 15px 20px 45px!important;
    font-size: 18px!important;
  }
}
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-heading .panel-title > a:after {
  display: none!important;
}
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-heading .panel-title > a:before {
  content: "\f054";
  font-family: FontAwesome;
  background: none;
  width: auto;
  height: auto;
  font-size: 14px;
  top: inherit;
  left: 18px;
  transform: rotate(90deg);
  color: #009fda;
}
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-heading .panel-title > a.collapsed {
  border: 1px solid #DBDBDB;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 20px 45px;
  font-size: 20px;
  background-color: #f0f2f2;
  transition: background-color 0.5s ease;
  border-bottom-width: 0px;
  background-color: rgba(255, 255, 255, 0);
}
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-heading .panel-title > a.collapsed:before {
  content: "\f054";
  font-family: FontAwesome;
  background: none;
  width: auto;
  height: auto;
  font-size: 14px;
  top: inherit;
  left: 18px;
  color: #009fda;
  transform: rotate(0deg);
}
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-body {
  padding: 50px 0 65px!important;
}
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-body p:last-child,
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-body ul:last-child,
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-body h1:last-child,
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-body h2:last-child,
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-body h3:last-child,
body #section-main-content .outlined-accordion > div[id^="dexp-accordions-wrapper"].panel-group .panel-body h4:last-child {
  margin-bottom: 0;
}
body #section-main-content .outlined-accordion.border-expanded > div[id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title > a {
  color: #009fda !important;
  text-decoration: underline;
}
body #section-main-content .outlined-accordion.border-expanded > div[id^="dexp-accordions-wrapper"].panel-group .panel .panel-heading .panel-title > a.collapsed {
  text-decoration: none;
  color: #5C5C5C !important;
}
body #section-main-content .outlined-accordion.border-expanded > div[id^="dexp-accordions-wrapper"].panel-group .panel .panel-collapse > .panel-body {
  border: 1px solid #DBDBDB;
  border-top-width: 0;
  padding: 50px 15px 65px !important;
}
body #section-main-content .outlined-accordion.border-expanded > div[id^="dexp-accordions-wrapper"].panel-group .panel:not(:last-of-type) .panel-collapse > .panel-body {
  border-bottom-width: 0;
}
/* TAB BANNER */
.tab-banner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 70px 0;
}
.tab-banner.no-gutter {
  padding: 0;
}
.tab-banner.light .banner-toggles .toggle {
  border-color: #eceef0;
  color: #545454;
  font-weight: 300!important;
  font-size: 16px!important;
}
.tab-banner.toggle-font-secondary .banner-toggles .toggle {
  font-family: Cairo!important;
  font-weight: 400!important;
}
.tab-banner.set-width-toggle .banner-toggles .toggle {
  min-width: 130px;
  margin: 4px 0;
}
.tab-banner.set-width-toggle .banner-toggles .toggle:not(:last-child) {
  border-right: 1px solid #eceef0;
}
.tab-banner.toggle-slim .banner-toggles .toggle {
  margin: 4px 0;
  padding: 0px 20px !important;
  font-size: 20px!important;
  font-weight: 500!important;
  border: 0 solid white!important;
}
@media all and (max-width: 570px) {
  .tab-banner.toggle-slim .banner-toggles .toggle {
    padding: 0px 15px !important;
    font-size: 16px!important;
  }
}
.tab-banner.toggle-slim .banner-toggles .toggle:hover {
  color: #009fda;
  background: none;
  border: 0 solid white!important;
}
.tab-banner.toggle-slim .banner-toggles .toggle.active {
  border: 0 solid white!important;
  background: none;
  color: #009fda;
  position: relative;
}
.tab-banner.toggle-slim .banner-toggles .toggle.active:after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: calc(100% - 40px);
  border-top: 1px solid #009fda;
}
.tab-banner.toggle-slim .banner-toggles .toggle:hover + .toggle,
.tab-banner.toggle-slim .banner-toggles .toggle:focus + .toggle,
.tab-banner.toggle-slim .banner-toggles .toggle .active + .toggle {
  border: 0 solid white!important;
}
.tab-banner.toggle-slim .banner-toggles .toggle:first-child {
  padding-left: 0!important;
}
.tab-banner.toggle-slim .banner-toggles .toggle:first-child.active:after {
  width: calc(100% - 20px);
}
.tab-banner.toggle-slim .banner-toggles .toggle:last-child {
  padding-right: 0!important;
}
.tab-banner.toggle-slim .banner-toggles .toggle:last-child.active:after {
  width: calc(100% - 20px);
}
.tab-banner.toggle-sm-horizon {
  position: relative;
  z-index: 10;
}
.tab-banner.toggle-sm-horizon:before,
.tab-banner.toggle-sm-horizon:after {
  content: '';
  position: absolute;
  top: 40px;
  height: 28px;
  width: 25px;
  z-index: 15;
}
@media all and (max-width: 570px) {
  .tab-banner.toggle-sm-horizon:before,
  .tab-banner.toggle-sm-horizon:after {
    top: 25px;
  }
}
.tab-banner.toggle-sm-horizon:before {
  left: -25px;
  background: linear-gradient(-90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.487833) 36%, #fff 82%);
}
.tab-banner.toggle-sm-horizon:after {
  right: -25px;
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.487833) 36%, #fff 82%);
}
.tab-banner.toggle-sm-horizon .toggles-trigger {
  display: none;
}
.tab-banner.toggle-sm-horizon .banner-toggles {
  position: relative;
  flex-wrap: nowrap;
  overflow: auto;
  margin-left: -25px;
  margin-right: -25px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tab-banner.toggle-sm-horizon .banner-toggles::-webkit-scrollbar {
  display: none;
}
.tab-banner.toggle-sm-horizon .banner-toggles .toggle {
  min-width: max-content;
}
.tab-banner.toggle-sm-horizon .banner-toggles .toggle:first-child {
  padding-left: 25px!important;
}
.tab-banner.toggle-sm-horizon .banner-toggles .toggle:first-child.active:after {
  width: calc(100% - 45px);
}
.tab-banner.toggle-sm-horizon .banner-toggles .toggle:last-child {
  padding-right: 25px!important;
}
.tab-banner.toggle-sm-horizon .banner-toggles .toggle:last-child.active:after {
  width: calc(100% - 45px);
}
.tab-banner.toggle-sm-horizon .banner-toggles .toggle .heading.bold {
  font-family: "Roboto" !important;
  font-size: 2em;
  font-weight: 900;
}
.tab-banner.toggle-align-left .banner-toggles {
  justify-content: flex-start;
}
.tab-banner.toggle-align-right .banner-toggles {
  justify-content: flex-end;
}
.tab-banner .banner-header .heading,
.tab-banner .banner-header p {
  text-align: center;
}
.tab-banner .banner-header .heading:last-child,
.tab-banner .banner-header p:last-child {
  margin-bottom: 0;
}
.tab-banner .banner-header .heading.bold {
  font-family: "Roboto" !important;
  font-size: 2em;
  font-weight: 900;
}
.tab-banner .toggles-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0!important;
  border: 0;
  margin-top: 35px;
  background: none;
}
.tab-banner .toggles-trigger:first-child {
  margin-top: 0;
}
.tab-banner .toggles-trigger:focus {
  outline: none;
}
.tab-banner .toggles-trigger.active .toggle-icon {
  background: rgba(0, 0, 0, 0);
}
.tab-banner .toggles-trigger.active .toggle-icon:before {
  top: 0px;
  transform: rotate(45deg);
}
.tab-banner .toggles-trigger.active .toggle-icon:after {
  bottom: 0px;
  transform: rotate(-45deg);
}
.tab-banner .toggles-trigger.active .toggle-icon:not(.mobile-nav-initialised) {
  display: none;
}
.tab-banner .toggles-trigger .toggle-label {
  top: 20px;
  font-family: Roboto;
  text-transform: uppercase;
  font-size: 1.2em;
  line-height: 1em;
  font-weight: 300;
  letter-spacing: 0;
}
.tab-banner .toggles-trigger .toggle-icon {
  position: relative;
  height: 2px;
  width: 18px;
  background: rgba(0, 0, 0, 0.65);
  transition: all 0.5s ease-in-out;
}
.tab-banner .toggles-trigger .toggle-icon:before,
.tab-banner .toggles-trigger .toggle-icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.65);
  left: 0;
  transition: all 0.5s ease-in-out;
}
.tab-banner .toggles-trigger .toggle-icon:before {
  top: -6px;
}
.tab-banner .toggles-trigger .toggle-icon:after {
  bottom: -6px;
}
.tab-banner .toggles-trigger:not(.mobile-nav-initialised) {
  display: none;
}
.tab-banner .banner-toggles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
@media all and (max-width: 992px) {
  .tab-banner .banner-toggles:not(.link-nav) {
    padding-top: 25px;
  }
}
.tab-banner .banner-toggles.text-normal {
  text-transform: initial;
}
.tab-banner .banner-toggles:not(.no-gutter) {
  padding-top: 40px;
}
.tab-banner .banner-toggles.link-nav .toggle {
  border: 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
  padding-top: 0!important;
  padding-bottom: 0!important;
}
.tab-banner .banner-toggles.link-nav .toggle:hover,
.tab-banner .banner-toggles.link-nav .toggle:focus,
.tab-banner .banner-toggles.link-nav .toggle.active {
  border: 0;
  border-bottom: 3px solid #009fda;
  background: none;
  color: #009fda;
  font-weight: 700!important;
}
@media all and (max-width: 992px) {
  .tab-banner .banner-toggles.link-nav .toggle {
    max-width: max-content;
  }
}
.tab-banner .banner-toggles:not(.link-nav) .toggle:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0);
}
@media all and (max-width: 992px) {
  .tab-banner .banner-toggles:not(.link-nav) .toggle:not(:last-child).sm-full-width {
    border-right: 1px solid #85888D;
  }
}
.tab-banner .banner-toggles:not(.link-nav) .toggle:hover,
.tab-banner .banner-toggles:not(.link-nav) .toggle:focus,
.tab-banner .banner-toggles:not(.link-nav) .toggle.active {
  background-color: #009fda;
  color: white;
  border: 1px solid #009fda;
  outline: none;
}
.tab-banner .banner-toggles:not(.link-nav) .toggle:hover .toggle,
.tab-banner .banner-toggles:not(.link-nav) .toggle:focus .toggle,
.tab-banner .banner-toggles:not(.link-nav) .toggle.active .toggle {
  border-left: 1px solid rgba(255, 255, 255, 0);
}
@media all and (max-width: 992px) {
  .tab-banner .banner-toggles:not(.link-nav) .toggle:hover .toggle.sm-full-width,
  .tab-banner .banner-toggles:not(.link-nav) .toggle:focus .toggle.sm-full-width,
  .tab-banner .banner-toggles:not(.link-nav) .toggle.active .toggle.sm-full-width {
    border-left: 1px solid #85888D;
    border-right: 1px solid #85888D;
  }
}
.tab-banner .banner-toggles.theme-orange.link-nav .toggle:hover,
.tab-banner .banner-toggles.theme-orange.link-nav .toggle:focus,
.tab-banner .banner-toggles.theme-orange.link-nav .toggle.active {
  border-color: #ffa02e;
  color: #ffa02e;
}
@media all and (min-width: 993px) {
  .tab-banner .banner-toggles.theme-orange:not(.link-nav) .toggle {
    border-color: #DBDBDB;
  }
}
.tab-banner .banner-toggles.theme-orange:not(.link-nav) .toggle:hover,
.tab-banner .banner-toggles.theme-orange:not(.link-nav) .toggle:focus,
.tab-banner .banner-toggles.theme-orange:not(.link-nav) .toggle.active {
  background-color: #ffa02e;
  border-color: #ffa02e;
}
.tab-banner .banner-toggles.size-sm .toggle {
  font-size: 16px!important;
  padding: 7px 15px !important;
}
.tab-banner .banner-toggles.mobile-nav-initialised {
  transition: all 0.5s ease-in-out;
}
.tab-banner .banner-toggles.mobile-nav-initialised.collapsed {
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  padding-top: 0;
  height: 0;
}
.tab-banner .banner-toggles.mobile-nav-initialised.expanded {
  visibility: visible;
  opacity: 1;
}
.tab-banner .banner-toggles .toggle-nav-label {
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto";
  margin-right: 26px;
  max-width: max-content;
}
@media all and (max-width: 992px) {
  .tab-banner .banner-toggles .toggle-nav-label {
    display: none;
  }
}
.tab-banner .banner-toggles .toggle {
  font-size: 18px!important;
  font-weight: 400!important;
  font-family: Roboto!important;
  color: #32363D;
  background-color: rgba(255, 255, 255, 0);
  padding: 9px 15px!important;
  display: flex;
  max-width: max-content;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid #85888D;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0;
  z-index: 1;
}
.tab-banner .banner-toggles .toggle.large {
  min-width: 348px;
  font-size: 18px!important;
}
@media all and (max-width: 570px) {
  .tab-banner .banner-toggles .toggle.large {
    min-width: unset;
    font-size: 16px!important;
    width: 100%!important;
    max-width: 100%;
  }
}
@media all and (max-width: 570px) {
  .tab-banner .banner-toggles .toggle {
    min-width: unset;
    font-size: 16px!important;
    border: 0;
    font-weight: 400!important;
    margin: 4px 0;
    width: 100%!important;
    max-width: 100%;
  }
}
.tab-banner .banner-toggles .toggle:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0);
}
@media all and (max-width: 570px) {
  .tab-banner .banner-toggles .toggle:not(:last-child).sm-full-width {
    border-right: 1px solid #85888D;
  }
}
.tab-banner .banner-toggles .toggle:hover,
.tab-banner .banner-toggles .toggle:focus,
.tab-banner .banner-toggles .toggle.active {
  background-color: #009fda;
  color: white;
  border: 1px solid #009fda;
  outline: none;
}
.tab-banner .banner-toggles .toggle:hover + .toggle,
.tab-banner .banner-toggles .toggle:focus + .toggle,
.tab-banner .banner-toggles .toggle.active + .toggle {
  border-left: 1px solid rgba(255, 255, 255, 0);
}
@media all and (max-width: 570px) {
  .tab-banner .banner-toggles .toggle:hover + .toggle.sm-full-width,
  .tab-banner .banner-toggles .toggle:focus + .toggle.sm-full-width,
  .tab-banner .banner-toggles .toggle.active + .toggle.sm-full-width {
    border-left: 1px solid #85888D;
    border-right: 1px solid #85888D;
  }
}
.tab-banner .banner-tab-container {
  padding-top: 35px;
}
.tab-banner .banner-tab-container.large-margin {
  padding-top: 90px;
}
@media all and (max-width: 570px) {
  .tab-banner .banner-tab-container.large-margin {
    padding-top: 35px;
  }
}
.tab-banner .banner-tab-container .tab {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
}
.tab-banner .banner-tab-container .tab.active {
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow: visible;
}
/* GRID MEMBERS */
.grid-members {
  display: flex;
  width: 100%;
}
.grid-members .dexp-grid-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -15px;
  margin-right: -15px;
}
.grid-members .dexp-grid-items .node-team {
  width: 25%;
}
@media all and (min-width: 769px) {
  .grid-members .dexp-grid-items .node-team:nth-child(-n + 4) .team {
    margin-top: 0;
  }
}
@media all and (max-width: 768px) {
  .grid-members .dexp-grid-items .node-team {
    width: 50%;
  }
  .grid-members .dexp-grid-items .node-team:nth-child(-n + 2) .team {
    margin-top: 0;
  }
}
@media all and (max-width: 570px) {
  .grid-members .dexp-grid-items .node-team {
    width: 100%;
  }
  .grid-members .dexp-grid-items .node-team:nth-child(2) .team {
    margin-top: 50px;
  }
}
.grid-members .dexp-grid-items .node-team .team {
  background: none;
  margin: 90px 0 0;
}
@media all and (max-width: 768px) {
  .grid-members .dexp-grid-items .node-team .team {
    margin: 50px 0 0;
  }
}
.grid-members .dexp-grid-items .node-team .team:hover {
  box-shadow: none;
}
.grid-members .dexp-grid-items .node-team .team .team-name {
  border-color: #cbcbcb;
  margin: 0;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.grid-members .dexp-grid-items .node-team .team .team-name > h5 {
  color: black;
  font-size: 18px;
}
.grid-members .dexp-grid-items .node-team .team .team-name > span {
  font-size: 18px;
  color: black;
  font-style: normal;
}
@media all and (min-width: 571px) {
  .grid-members .dexp-grid-items .node-team .team .team-name > span {
    min-height: 50px;
  }
}
.grid-members .dexp-grid-items .node-team .team .team-about {
  margin: 0;
}
.grid-members .dexp-grid-items .node-team .team .team-about .field-item p:last-child {
  margin-bottom: 0;
}
.grid-members .dexp-grid-items .node-team .team .team-email {
  margin: 0;
  margin-top: 16px;
  padding-top: 16px;
  border-color: #cbcbcb;
}
/* POSTS NODE WITH GRID MEMBERS */
.grid-members .dexp-grid-items .node-home-news-tiles {
  display: flex;
  flex-direction: column;
}
.grid-members .dexp-grid-items .node-home-news-tiles .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media all and (max-width: 570px) {
  .grid-members .dexp-grid-items .node-home-news-tiles .content {
    flex-direction: row;
  }
}
.grid-members .dexp-grid-items .node-home-news-tiles .content .item-description {
  height: auto!important;
  flex: auto;
}
.grid-members .dexp-grid-items .node-home-news-tiles .content .item-description .description {
  padding-bottom: 0!important;
  display: flex;
  align-items: center;
}
/* LOGO GRID BANNER */
.logo-grid-banner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 70px 0;
}
.logo-grid-banner .banner-header-wrapper .heading {
  font-size: 37px;
  line-height: 42px;
  color: #32363D;
  text-align: center;
}
.logo-grid-banner .banner-header-wrapper h2,
.logo-grid-banner .banner-header-wrapper h3,
.logo-grid-banner .banner-header-wrapper p {
  padding-top: 0;
  margin-top: 0;
}
.logo-grid-banner .banner-header-wrapper h2:last-child,
.logo-grid-banner .banner-header-wrapper h3:last-child,
.logo-grid-banner .banner-header-wrapper p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.logo-grid-banner .banner-body-wrapper {
  margin-top: 50px;
}
.logo-grid-banner .banner-body-wrapper .logo-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.logo-grid-banner .banner-body-wrapper .logo-grid-wrapper .single-logo {
  width: 33.3333%;
  padding: 30px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 292px;
  border: 1px solid #cacaca;
}
@media all and (max-width: 992px) {
  .logo-grid-banner .banner-body-wrapper .logo-grid-wrapper .single-logo {
    width: 50%;
  }
}
@media all and (max-width: 570px) {
  .logo-grid-banner .banner-body-wrapper .logo-grid-wrapper .single-logo {
    width: 100%;
  }
}
/* SIMPLE IMAGE BOX */
.simple-image-box {
  display: flex;
  flex-wrap: wrap;
}
.simple-image-box .content-wrapper {
  flex: auto;
}
/* SIMPLE CTA BANNER */
.simple-cta-banner {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #f0f2f2;
  padding: 70px 30px;
}
.simple-cta-banner.slim {
  padding: 50px 30px;
}
.simple-cta-banner.slim .banner-body-wrapper {
  margin-top: 32px;
}
.simple-cta-banner.slim .banner-body-wrapper .cta-wrapper > a {
  padding: 18px 15px;
  font-size: 18px;
  line-height: 22px;
}
.simple-cta-banner.slim .banner-footer-wrapper {
  margin-top: 16px;
}
.simple-cta-banner .banner-header-wrapper .heading {
  color: #32363D;
  font-size: 35px;
  line-height: 38px;
  font-weight: 300;
  text-align: center;
}
@media all and (max-width: 570px) {
  .simple-cta-banner .banner-header-wrapper .heading {
    font-size: 32px;
    line-height: 36px;
  }
}
.simple-cta-banner .banner-header-wrapper h2,
.simple-cta-banner .banner-header-wrapper h3,
.simple-cta-banner .banner-header-wrapper p {
  padding: 0;
  margin-top: 0;
}
.simple-cta-banner .banner-header-wrapper h2:last-child,
.simple-cta-banner .banner-header-wrapper h3:last-child,
.simple-cta-banner .banner-header-wrapper p:last-child {
  margin-bottom: 0;
}
.simple-cta-banner .banner-body-wrapper {
  margin-top: 50px;
}
@media all and (max-width: 570px) {
  .simple-cta-banner .banner-body-wrapper {
    margin-top: 35px;
  }
}
.simple-cta-banner .banner-body-wrapper .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 805px;
  margin: 0 auto;
}
.simple-cta-banner .banner-body-wrapper .cta-wrapper > a {
  margin: 8px;
  padding: 28px 20px;
  width: 100%;
  max-width: calc(50% - 16px);
  font-size: 20px;
  line-height: 24px;
  display: block;
  text-align: center;
  font-weight: 300;
}
@media all and (max-width: 992px) {
  .simple-cta-banner .banner-body-wrapper .cta-wrapper > a {
    font-size: 16px;
    line-height: 20px;
  }
}
@media all and (max-width: 570px) {
  .simple-cta-banner .banner-body-wrapper .cta-wrapper > a {
    max-width: 100%;
    padding: 15px;
  }
}
.simple-cta-banner .banner-body-wrapper .cta-wrapper > a u {
  text-decoration: none;
  position: relative;
}
.simple-cta-banner .banner-body-wrapper .cta-wrapper > a u:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0px;
  border-top: 1px;
  border-top: 1px solid white;
  bottom: 8px;
  left: 0;
}
.simple-cta-banner .banner-footer-wrapper {
  margin-top: 30px;
}
.simple-cta-banner .banner-footer-wrapper .disclaimer {
  text-align: center;
  font-size: 18px;
}
.simple-cta-banner .banner-footer-wrapper h2,
.simple-cta-banner .banner-footer-wrapper h3,
.simple-cta-banner .banner-footer-wrapper p {
  margin-top: 0;
  padding-top: 0;
}
.simple-cta-banner .banner-footer-wrapper h2:last-child,
.simple-cta-banner .banner-footer-wrapper h3:last-child,
.simple-cta-banner .banner-footer-wrapper p:last-child {
  margin-bottom: 0;
}
/* BRICK NAV */
.brick-nav {
  display: flex;
  width: 100%;
}
.brick-nav .view-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.brick-nav .view-content .views-row {
  align-self: flex-start;
  transition: all 0.3s ease;
  padding: 15px 12px;
  border-bottom: 1px solid #E7E8E9;
  position: relative;
}
.brick-nav .view-content .views-row:after {
  content: '';
  position: absolute;
  right: -1px;
  top: 15%;
  width: 1px;
  height: 70%;
  background: #E7E8E9;
}
.brick-nav .view-content .views-row a {
  font-family: Roboto;
  color: #32363D;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  font-weight: 400;
}
.brick-nav .view-content .views-row a:hover,
.brick-nav .view-content .views-row a.active {
  color: #009fda;
  text-decoration: underline;
}
.brick-nav .view-content .views-row span {
  display: flex;
}
.brick-nav .link-wrapper .link-row {
  padding: 5px 0;
  border-bottom: 1px solid #E7E8E9;
}
.brick-nav .link-wrapper .link-row a:first-child {
  padding-left: 0;
}
.brick-nav .link-wrapper .link-row a:last-child {
  border-right-width: 0;
}
.brick-nav .link-wrapper a {
  padding: 8px 15px;
  font-family: Roboto;
  color: #32363D;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  display: inline-block;
  border-right: 1px solid #E7E8E9;
  transition: color 0.3s ease;
}
.brick-nav .link-wrapper a:hover {
  color: #009fda;
}
/* SIMPLE IMAGE BANNER */
.simple-image-banner {
  min-height: 300px;
}
@media all and (max-width: 992px) {
  .simple-image-banner {
    min-height: 250px;
  }
}
@media all and (max-width: 570px) {
  .simple-image-banner {
    min-height: 150px;
  }
}
/* SPACING */
.spacing {
  position: relative;
  display: flex;
  width: 100%;
  margin: 70px 0;
}
.spacing:space-large {
  margin: 100px 0;
}
.spacing.space-small {
  margin: 35px 0;
}
.spacing.border-visible {
  border-top: 1px solid #DBDBDB;
}
.spacing.border-visible.chunk {
  border-width: 3px;
}
.svg-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.svg-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.svg-icon-orange {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.svg-icon-orange svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.svg-icon-orange svg path {
  fill: #ffa02e;
  stroke: none;
}
.fontStyle {
  color: #5E6167;
}
.size-100 {
  width: 100px!important;
  height: 100px!important;
  margin-top: -20px;
}
.blue-headline h2 {
  color: #009fda !important;
}
[class^="flex-col-"] h1:first-of-type {
  margin-top: 0;
}
[class^="flex-col-"] h1 + h3 {
  padding-top: 0;
}
/* ICON GRID */
.icon-box-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 150px 0;
}
@media all and (max-width: 570px) {
  .icon-box-grid {
    margin: 50px 0;
  }
}
.icon-box-grid .box {
  width: calc(33.3333% - 50px);
  color: #000000;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 88px;
}
@media all and (max-width: 570px) {
  .icon-box-grid .box {
    margin-top: 50px;
  }
}
.icon-box-grid .box:hover .box-content h3:after {
  width: 100%;
}
@media all and (min-width: 769px) {
  .icon-box-grid .box:nth-child(-n + 3) {
    margin-top: 0;
  }
}
@media all and (min-width: 571px) {
  .icon-box-grid .box:nth-child(-n + 2) {
    margin-top: 0;
  }
}
@media all and (max-width: 570px) {
  .icon-box-grid .box:first-child {
    margin-top: 0;
  }
}
@media all and (max-width: 768px) {
  .icon-box-grid .box {
    width: calc(50% - 35px);
  }
}
@media all and (max-width: 570px) {
  .icon-box-grid .box {
    width: 100%;
  }
}
.icon-box-grid .box .box-icon {
  width: 66px;
  height: 66px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.icon-box-grid .box .box-icon svg {
  position: absolute;
  height: 100%;
  width: 100%;
}
.icon-box-grid .box .box-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-box-grid .box .box-content h3 {
  font-family: Roboto;
  font-size: 23px;
  line-height: 28px;
  color: #009fda;
  margin-top: 16px;
  margin-bottom: 0;
  position: relative;
  font-weight: 600;
  padding-top: 0;
}
@media all and (max-width: 570px) {
  .icon-box-grid .box .box-content h3 {
    font-weight: 500;
  }
}
.icon-box-grid .box .box-content h3:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: #009fda;
  transition: width 0.3s ease-in;
}
.icon-box-grid .box .box-content p {
  font-family: Roboto;
  margin-top: 16px;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0;
  font-weight: 300;
}
.right-sidebar .block .primary-button.large {
  padding: 24px 34px;
  font-size: 20px;
  width: 100%;
  max-width: 100%;
  align-items: center;
  justify-content: center;
}
.right-sidebar.theme-pink .underline-heading:after {
  background-color: #920075;
}
/* EXTEND PARALLAX BANNER WITH LARGER HEIGHT */
@media all and (min-width: 993px) {
  [class*="jarallax"].large {
    min-height: 555px;
  }
}
/* APPLY STYLING FOR SPECIFIC HEADING 1 */
h1.heading {
  font-family: Cairo;
  font-size: 63px;
  font-weight: 600;
  line-height: 66px;
  color: #009FDA;
}
@media all and (max-width: 992px) {
  h1.heading {
    font-size: 55px;
    line-height: 58px;
  }
}
@media all and (max-width: 570px) {
  h1.heading {
    font-size: 33px;
    line-height: 36px;
  }
}
h1.heading.controlled-width {
  max-width: 792px;
  margin-left: auto;
  margin-right: auto;
}
body .dexp-body-inner .intro-20 > p {
  font-size: 20px;
}
@media all and (max-width: 570px) {
  body .dexp-body-inner .intro-20 > p {
    font-size: 18px;
  }
}
body .dexp-body-inner .intro-24 > p {
  font-size: 24px;
}
@media all and (max-width: 570px) {
  body .dexp-body-inner .intro-24 > p {
    font-size: 20px;
  }
}
/* BACK TO TOP */
.back-to-top-alt {
  font-size: 1em;
  color: #5E6167;
  font-weight: 500;
  margin-top: 50px;
  display: block;
  width: 100%;
  padding-left: 20px;
}
.back-to-top-alt.no-margin {
  margin: 0;
}
.back-to-top-alt.large {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 18px!important;
  padding-left: 20px!important;
  text-decoration: underline;
  border: 0;
  background: none;
}
.back-to-top-alt.large:hover,
.back-to-top-alt.large:focus {
  color: #009fda;
  outline: none;
}
.back-to-top-alt.large:before {
  position: absolute;
  content: "\f054";
  font-family: FontAwesome;
  background: none;
  width: auto;
  height: auto;
  font-size: 14px;
  left: 0px;
  transform: rotate(-90deg);
}
.back-to-top-alt span {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.back-to-top-alt span:before {
  content: '\f053';
  font-family: FontAwesome;
  position: absolute;
  left: -20px;
  top: -5px;
  transform: rotate(90deg);
  transition: all 0.2s linear;
}
.back-to-top-alt span:after {
  content: '\f068';
  font-family: FontAwesome;
  position: absolute;
  left: -21px;
  top: 0px;
  transform: rotate(90deg);
  opacity: 1;
  transition: all 0.2s linear;
}
.back-to-top-alt span:hover,
.back-to-top-alt span:focus {
  color: #009fda !important;
}
.back-to-top-alt span:hover:before,
.back-to-top-alt span:focus:before {
  top: -15px;
}
.back-to-top-alt span:hover:after,
.back-to-top-alt span:focus:after {
  top: -10px;
}
/* hide donate btn on PRF get involved page */
.hidden-donate-btn .primary-button.donate {
  display: none;
}
/* element styling for block */
.block .content > p:last-child,
.block .content > ul:last-child {
  margin-bottom: 0;
}
.page-node-213 #section-main-content {
  display: none;
}
.page-node-213 #section-features {
  margin: 0;
}
/* SPACING */
.spacing {
  position: relative;
  display: flex;
  width: 100%;
  margin: 70px 0;
}
.spacing:space-large {
  margin: 100px 0;
}
.spacing.space-small {
  margin: 35px 0;
}
.spacing.border-visible {
  border-top: 1px solid #DBDBDB;
}
.spacing.border-visible.chunk {
  border-width: 3px;
}
/* TAB BANNER */
.tab-banner-alt {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 70px 0;
}
.tab-banner-alt.no-gutter {
  padding: 0;
}
.tab-banner-alt.light .banner-toggles .toggle {
  border-color: #eceef0;
  color: #545454;
  font-weight: 300!important;
  font-size: 16px!important;
}
.tab-banner-alt.toggle-font-secondary .banner-toggles .toggle {
  font-family: Cairo!important;
  font-weight: 400!important;
}
.tab-banner-alt.set-width-toggle .banner-toggles .toggle {
  min-width: 130px;
  margin: 4px 0;
}
.tab-banner-alt.set-width-toggle .banner-toggles .toggle:not(:last-child) {
  border-right: 1px solid #eceef0;
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle {
  margin: 4px 0;
  padding: 0px 20px !important;
  font-size: 20px!important;
  font-weight: 500!important;
  border: 0 solid white!important;
}
@media all and (max-width: 570px) {
  .tab-banner-alt.toggle-slim .banner-toggles .toggle {
    padding: 0px 15px !important;
    font-size: 16px!important;
  }
  .tab-banner-alt.toggle-slim .banner-toggles .toggle:after {
    width: calc(100% - 30px);
    position: absolute!important;
  }
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle:hover {
  color: #009fda;
  background: none;
  border: 0 solid white!important;
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle:after {
  content: '';
  position: absolute!important;
  visibility: hidden;
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle.active {
  border: 0 solid white!important;
  background: none;
  color: #009fda;
  position: relative;
  visibility: visible;
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle.active:after {
  content: '';
  position: absolute!important;
  bottom: 4px;
  width: calc(100% - 40px);
  border-top: 1px solid #009fda;
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle:hover + .toggle,
.tab-banner-alt.toggle-slim .banner-toggles .toggle:focus + .toggle,
.tab-banner-alt.toggle-slim .banner-toggles .toggle .active + .toggle {
  border: 0 solid white!important;
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle:first-child {
  padding-left: 0!important;
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle:first-child.active:after {
  width: calc(100% - 20px);
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle:last-child {
  padding-right: 0!important;
}
.tab-banner-alt.toggle-slim .banner-toggles .toggle:last-child.active:after {
  width: calc(100% - 20px);
}
.tab-banner-alt.toggle-sm-horizon {
  position: relative;
  z-index: 10;
}
.tab-banner-alt.toggle-sm-horizon:before,
.tab-banner-alt.toggle-sm-horizon:after {
  content: '';
  position: absolute;
  top: 40px;
  height: 28px;
  width: 25px;
  z-index: 15;
}
@media all and (max-width: 570px) {
  .tab-banner-alt.toggle-sm-horizon:before,
  .tab-banner-alt.toggle-sm-horizon:after {
    top: 25px;
  }
}
.tab-banner-alt.toggle-sm-horizon:before {
  left: -25px;
  background: linear-gradient(-90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.487833) 36%, #fff 82%);
}
.tab-banner-alt.toggle-sm-horizon:after {
  right: -25px;
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.487833) 36%, #fff 82%);
}
.tab-banner-alt.toggle-sm-horizon .toggles-trigger {
  display: none;
}
.tab-banner-alt.toggle-sm-horizon .banner-toggles {
  position: relative;
  flex-wrap: nowrap;
  overflow: auto;
  margin-left: -25px;
  margin-right: -25px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tab-banner-alt.toggle-sm-horizon .banner-toggles::-webkit-scrollbar {
  display: none;
}
.tab-banner-alt.toggle-sm-horizon .banner-toggles .toggle {
  min-width: max-content;
}
.tab-banner-alt.toggle-sm-horizon .banner-toggles .toggle:first-child {
  padding-left: 25px!important;
}
.tab-banner-alt.toggle-sm-horizon .banner-toggles .toggle:first-child.active:after {
  width: calc(100% - 45px);
}
.tab-banner-alt.toggle-sm-horizon .banner-toggles .toggle:last-child {
  padding-right: 25px!important;
}
.tab-banner-alt.toggle-sm-horizon .banner-toggles .toggle:last-child.active:after {
  width: calc(100% - 45px);
}
.tab-banner-alt.toggle-align-left .banner-toggles {
  justify-content: flex-start;
}
.tab-banner-alt.toggle-align-right .banner-toggles {
  justify-content: flex-end;
}
.tab-banner-alt .banner-header .heading,
.tab-banner-alt .banner-header p {
  text-align: center;
}
.tab-banner-alt .banner-header .heading:last-child,
.tab-banner-alt .banner-header p:last-child {
  margin-bottom: 0;
}
.tab-banner-alt .toggles-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0!important;
  border: 0;
  margin-top: 35px;
  background: none;
}
.tab-banner-alt .toggles-trigger:focus {
  outline: none;
}
.tab-banner-alt .toggles-trigger.active .toggle-icon {
  background: rgba(0, 0, 0, 0);
}
.tab-banner-alt .toggles-trigger.active .toggle-icon:before {
  top: 0px;
  transform: rotate(45deg);
}
.tab-banner-alt .toggles-trigger.active .toggle-icon:after {
  bottom: 0px;
  transform: rotate(-45deg);
}
.tab-banner-alt .toggles-trigger .toggle-label {
  top: 20px;
  font-family: Roboto;
  text-transform: uppercase;
  font-size: 1.2em;
  line-height: 1em;
  font-weight: 300;
  letter-spacing: 0;
}
.tab-banner-alt .toggles-trigger .toggle-icon {
  position: relative;
  height: 2px;
  width: 18px;
  background: rgba(0, 0, 0, 0.65);
  transition: all 0.5s ease-in-out;
}
.tab-banner-alt .toggles-trigger .toggle-icon:before,
.tab-banner-alt .toggles-trigger .toggle-icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.65);
  left: 0;
  transition: all 0.5s ease-in-out;
}
.tab-banner-alt .toggles-trigger .toggle-icon:before {
  top: -6px;
}
.tab-banner-alt .toggles-trigger .toggle-icon:after {
  bottom: -6px;
}
@media all and (min-width: 571px) {
  .tab-banner-alt .toggles-trigger {
    display: none;
  }
}
.tab-banner-alt .banner-toggles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}
@media all and (max-width: 570px) {
  .tab-banner-alt .banner-toggles {
    padding-top: 25px;
  }
}
.tab-banner-alt .banner-toggles.mobile-nav-initialised {
  transition: all 0.5s ease-in-out;
}
.tab-banner-alt .banner-toggles.mobile-nav-initialised.collapsed {
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  padding-top: 0;
  height: 0;
}
.tab-banner-alt .banner-toggles.mobile-nav-initialised.expanded {
  visibility: visible;
  opacity: 1;
}
.tab-banner-alt .banner-toggles .toggle {
  font-size: 18px!important;
  font-weight: 400!important;
  font-family: Roboto!important;
  color: #32363D;
  background-color: rgba(255, 255, 255, 0);
  padding: 9px 15px!important;
  display: flex;
  max-width: max-content;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid #85888D;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.tab-banner-alt .banner-toggles .toggle.large {
  min-width: 348px;
  font-size: 18px!important;
}
@media all and (max-width: 570px) {
  .tab-banner-alt .banner-toggles .toggle.large {
    min-width: unset;
    font-size: 16px!important;
    width: 100%!important;
    max-width: 100%;
  }
}
@media all and (max-width: 570px) {
  .tab-banner-alt .banner-toggles .toggle {
    min-width: unset;
    font-size: 16px!important;
    border: 0;
    font-weight: 400!important;
    margin: 4px 0;
    width: 100%!important;
    max-width: 100%;
  }
}
.tab-banner-alt .banner-toggles .toggle:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0);
}
@media all and (max-width: 570px) {
  .tab-banner-alt .banner-toggles .toggle:not(:last-child).sm-full-width {
    border-right: 1px solid #85888D;
  }
}
.tab-banner-alt .banner-toggles .toggle:hover,
.tab-banner-alt .banner-toggles .toggle:focus,
.tab-banner-alt .banner-toggles .toggle.active {
  background-color: #009fda;
  color: white;
  border: 1px solid #009fda;
  outline: none;
}
.tab-banner-alt .banner-toggles .toggle:hover + .toggle,
.tab-banner-alt .banner-toggles .toggle:focus + .toggle,
.tab-banner-alt .banner-toggles .toggle.active + .toggle {
  border-left: 1px solid rgba(255, 255, 255, 0);
}
@media all and (max-width: 570px) {
  .tab-banner-alt .banner-toggles .toggle:hover + .toggle.sm-full-width,
  .tab-banner-alt .banner-toggles .toggle:focus + .toggle.sm-full-width,
  .tab-banner-alt .banner-toggles .toggle.active + .toggle.sm-full-width {
    border-left: 1px solid #85888D;
    border-right: 1px solid #85888D;
  }
}
.tab-banner-alt .banner-tab-container {
  padding-top: 35px;
}
.tab-banner-alt .banner-tab-container.large-margin {
  padding-top: 90px;
}
@media all and (max-width: 570px) {
  .tab-banner-alt .banner-tab-container.large-margin {
    padding-top: 35px;
  }
}
.tab-banner-alt .banner-tab-container .tab {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
}
.tab-banner-alt .banner-tab-container .tab.active {
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow: visible;
}
.left-content-alt {
  padding-left: 15px;
}
@media all and (max-width: 768px) {
  .left-content-alt {
    padding: 0 30px;
    width: 100%!important;
  }
}
@media all and (max-width: 570px) {
  .left-content-alt {
    padding: 0 10px;
  }
}
.left-content-alt ul:last-child {
  margin-bottom: 0;
}
body.theme-pink,
body .block.theme-pink,
body .theme-pink,
body .block .theme-pink {
  color: #393939;
}
body.theme-pink ul,
body .block.theme-pink ul,
body .theme-pink ul,
body .block .theme-pink ul,
body.theme-pink p,
body .block.theme-pink p,
body .theme-pink p,
body .block .theme-pink p {
  color: #393939;
}
body.theme-pink,
body .block.theme-pink,
body .theme-pink,
body .block .theme-pink,
body.theme-pink .block,
body .block.theme-pink .block,
body .theme-pink .block,
body .block .theme-pink .block,
body.theme-pink.left-content,
body .block.theme-pink.left-content,
body .theme-pink.left-content,
body .block .theme-pink.left-content,
body.theme-pink .left-content,
body .block.theme-pink .left-content,
body .theme-pink .left-content,
body .block .theme-pink .left-content,
body.theme-pink.right-sidebar,
body .block.theme-pink.right-sidebar,
body .theme-pink.right-sidebar,
body .block .theme-pink.right-sidebar,
body.theme-pink .right-sidebar,
body .block.theme-pink .right-sidebar,
body .theme-pink .right-sidebar,
body .block .theme-pink .right-sidebar {
  color: #393939;
}
body.theme-pink ul,
body .block.theme-pink ul,
body .theme-pink ul,
body .block .theme-pink ul,
body.theme-pink .block ul,
body .block.theme-pink .block ul,
body .theme-pink .block ul,
body .block .theme-pink .block ul,
body.theme-pink.left-content ul,
body .block.theme-pink.left-content ul,
body .theme-pink.left-content ul,
body .block .theme-pink.left-content ul,
body.theme-pink .left-content ul,
body .block.theme-pink .left-content ul,
body .theme-pink .left-content ul,
body .block .theme-pink .left-content ul,
body.theme-pink.right-sidebar ul,
body .block.theme-pink.right-sidebar ul,
body .theme-pink.right-sidebar ul,
body .block .theme-pink.right-sidebar ul,
body.theme-pink .right-sidebar ul,
body .block.theme-pink .right-sidebar ul,
body .theme-pink .right-sidebar ul,
body .block .theme-pink .right-sidebar ul,
body.theme-pink p,
body .block.theme-pink p,
body .theme-pink p,
body .block .theme-pink p,
body.theme-pink .block p,
body .block.theme-pink .block p,
body .theme-pink .block p,
body .block .theme-pink .block p,
body.theme-pink.left-content p,
body .block.theme-pink.left-content p,
body .theme-pink.left-content p,
body .block .theme-pink.left-content p,
body.theme-pink .left-content p,
body .block.theme-pink .left-content p,
body .theme-pink .left-content p,
body .block .theme-pink .left-content p,
body.theme-pink.right-sidebar p,
body .block.theme-pink.right-sidebar p,
body .theme-pink.right-sidebar p,
body .block .theme-pink.right-sidebar p,
body.theme-pink .right-sidebar p,
body .block.theme-pink .right-sidebar p,
body .theme-pink .right-sidebar p,
body .block .theme-pink .right-sidebar p {
  color: #393939;
}
body.theme-pink h1,
body .block.theme-pink h1,
body .theme-pink h1,
body .block .theme-pink h1,
body.theme-pink .block h1,
body .block.theme-pink .block h1,
body .theme-pink .block h1,
body .block .theme-pink .block h1,
body.theme-pink.left-content h1,
body .block.theme-pink.left-content h1,
body .theme-pink.left-content h1,
body .block .theme-pink.left-content h1,
body.theme-pink .left-content h1,
body .block.theme-pink .left-content h1,
body .theme-pink .left-content h1,
body .block .theme-pink .left-content h1,
body.theme-pink.right-sidebar h1,
body .block.theme-pink.right-sidebar h1,
body .theme-pink.right-sidebar h1,
body .block .theme-pink.right-sidebar h1,
body.theme-pink .right-sidebar h1,
body .block.theme-pink .right-sidebar h1,
body .theme-pink .right-sidebar h1,
body .block .theme-pink .right-sidebar h1,
body.theme-pink h2,
body .block.theme-pink h2,
body .theme-pink h2,
body .block .theme-pink h2,
body.theme-pink .block h2,
body .block.theme-pink .block h2,
body .theme-pink .block h2,
body .block .theme-pink .block h2,
body.theme-pink.left-content h2,
body .block.theme-pink.left-content h2,
body .theme-pink.left-content h2,
body .block .theme-pink.left-content h2,
body.theme-pink .left-content h2,
body .block.theme-pink .left-content h2,
body .theme-pink .left-content h2,
body .block .theme-pink .left-content h2,
body.theme-pink.right-sidebar h2,
body .block.theme-pink.right-sidebar h2,
body .theme-pink.right-sidebar h2,
body .block .theme-pink.right-sidebar h2,
body.theme-pink .right-sidebar h2,
body .block.theme-pink .right-sidebar h2,
body .theme-pink .right-sidebar h2,
body .block .theme-pink .right-sidebar h2,
body.theme-pink h3,
body .block.theme-pink h3,
body .theme-pink h3,
body .block .theme-pink h3,
body.theme-pink .block h3,
body .block.theme-pink .block h3,
body .theme-pink .block h3,
body .block .theme-pink .block h3,
body.theme-pink.left-content h3,
body .block.theme-pink.left-content h3,
body .theme-pink.left-content h3,
body .block .theme-pink.left-content h3,
body.theme-pink .left-content h3,
body .block.theme-pink .left-content h3,
body .theme-pink .left-content h3,
body .block .theme-pink .left-content h3,
body.theme-pink.right-sidebar h3,
body .block.theme-pink.right-sidebar h3,
body .theme-pink.right-sidebar h3,
body .block .theme-pink.right-sidebar h3,
body.theme-pink .right-sidebar h3,
body .block.theme-pink .right-sidebar h3,
body .theme-pink .right-sidebar h3,
body .block .theme-pink .right-sidebar h3,
body.theme-pink h4,
body .block.theme-pink h4,
body .theme-pink h4,
body .block .theme-pink h4,
body.theme-pink .block h4,
body .block.theme-pink .block h4,
body .theme-pink .block h4,
body .block .theme-pink .block h4,
body.theme-pink.left-content h4,
body .block.theme-pink.left-content h4,
body .theme-pink.left-content h4,
body .block .theme-pink.left-content h4,
body.theme-pink .left-content h4,
body .block.theme-pink .left-content h4,
body .theme-pink .left-content h4,
body .block .theme-pink .left-content h4,
body.theme-pink.right-sidebar h4,
body .block.theme-pink.right-sidebar h4,
body .theme-pink.right-sidebar h4,
body .block .theme-pink.right-sidebar h4,
body.theme-pink .right-sidebar h4,
body .block.theme-pink .right-sidebar h4,
body .theme-pink .right-sidebar h4,
body .block .theme-pink .right-sidebar h4,
body.theme-pink h5,
body .block.theme-pink h5,
body .theme-pink h5,
body .block .theme-pink h5,
body.theme-pink .block h5,
body .block.theme-pink .block h5,
body .theme-pink .block h5,
body .block .theme-pink .block h5,
body.theme-pink.left-content h5,
body .block.theme-pink.left-content h5,
body .theme-pink.left-content h5,
body .block .theme-pink.left-content h5,
body.theme-pink .left-content h5,
body .block.theme-pink .left-content h5,
body .theme-pink .left-content h5,
body .block .theme-pink .left-content h5,
body.theme-pink.right-sidebar h5,
body .block.theme-pink.right-sidebar h5,
body .theme-pink.right-sidebar h5,
body .block .theme-pink.right-sidebar h5,
body.theme-pink .right-sidebar h5,
body .block.theme-pink .right-sidebar h5,
body .theme-pink .right-sidebar h5,
body .block .theme-pink .right-sidebar h5,
body.theme-pink h6,
body .block.theme-pink h6,
body .theme-pink h6,
body .block .theme-pink h6,
body.theme-pink .block h6,
body .block.theme-pink .block h6,
body .theme-pink .block h6,
body .block .theme-pink .block h6,
body.theme-pink.left-content h6,
body .block.theme-pink.left-content h6,
body .theme-pink.left-content h6,
body .block .theme-pink.left-content h6,
body.theme-pink .left-content h6,
body .block.theme-pink .left-content h6,
body .theme-pink .left-content h6,
body .block .theme-pink .left-content h6,
body.theme-pink.right-sidebar h6,
body .block.theme-pink.right-sidebar h6,
body .theme-pink.right-sidebar h6,
body .block .theme-pink.right-sidebar h6,
body.theme-pink .right-sidebar h6,
body .block.theme-pink .right-sidebar h6,
body .theme-pink .right-sidebar h6,
body .block .theme-pink .right-sidebar h6 {
  color: #ffa02e;
}
body.theme-pink a,
body .block.theme-pink a,
body .theme-pink a,
body .block .theme-pink a,
body.theme-pink .block a,
body .block.theme-pink .block a,
body .theme-pink .block a,
body .block .theme-pink .block a,
body.theme-pink.left-content a,
body .block.theme-pink.left-content a,
body .theme-pink.left-content a,
body .block .theme-pink.left-content a,
body.theme-pink .left-content a,
body .block.theme-pink .left-content a,
body .theme-pink .left-content a,
body .block .theme-pink .left-content a,
body.theme-pink.right-sidebar a,
body .block.theme-pink.right-sidebar a,
body .theme-pink.right-sidebar a,
body .block .theme-pink.right-sidebar a,
body.theme-pink .right-sidebar a,
body .block.theme-pink .right-sidebar a,
body .theme-pink .right-sidebar a,
body .block .theme-pink .right-sidebar a {
  color: #ffa02e;
}
body.theme-pink .secondary-button,
body .block.theme-pink .secondary-button,
body .theme-pink .secondary-button,
body .block .theme-pink .secondary-button {
  color: white;
}
body.theme-pink .secondary-button:hover,
body .block.theme-pink .secondary-button:hover,
body .theme-pink .secondary-button:hover,
body .block .theme-pink .secondary-button:hover {
  color: #ffa02e;
}
body .color-pink {
  color: #ffa02e !important;
}
body .color-bluewood {
  color: #233143 !important;
}
.block .content {
  width: 100%;
  display: block;
}
.full-width-alt {
  width: calc(100vw - var(--sbw));
  position: relative;
  display: flex;
  left: calc(50% + (var(--sbw)/2));
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.countdown-container .headline {
  font-size: 24px;
  color: #233143;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  font-weight: 700;
}
.countdown-container .countdown {
  margin-top: 3rem;
  display: block;
  position: relative;
}
@media all and (max-width: 992px) {
  .countdown-container .countdown {
    margin-top: 0;
  }
}
.countdown-container .countdown ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 992px) {
  .countdown-container .countdown ul {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.countdown-container .countdown ul li {
  width: 25%;
  font-size: 2.2rem;
  text-align: center;
}
@media all and (max-width: 992px) {
  .countdown-container .countdown ul li {
    width: 100%;
    padding: 1rem 0;
    max-width: 225px;
  }
}
.countdown-container .countdown ul li:not(:last-child) {
  border-right: 1px dashed #393939;
}
@media all and (max-width: 992px) {
  .countdown-container .countdown ul li:not(:last-child) {
    border-right: 0;
    border-bottom: 1px dashed #393939;
  }
}
.countdown-container .countdown ul li .days,
.countdown-container .countdown ul li .hours,
.countdown-container .countdown ul li .minutes,
.countdown-container .countdown ul li .seconds {
  font-family: 'Cairo';
  font-size: 9.4rem;
  line-height: 1;
  margin-right: 2.3rem;
  letter-spacing: -5px;
  font-weight: 500;
}
@media all and (max-width: 1200px) {
  .countdown-container .countdown ul li .days,
  .countdown-container .countdown ul li .hours,
  .countdown-container .countdown ul li .minutes,
  .countdown-container .countdown ul li .seconds {
    font-size: 7rem;
    margin-right: 1.5rem;
  }
}
@media all and (max-width: 992px) {
  .countdown-container .countdown ul li .days,
  .countdown-container .countdown ul li .hours,
  .countdown-container .countdown ul li .minutes,
  .countdown-container .countdown ul li .seconds {
    font-size: 9.4rem;
    margin-right: 2.3rem;
  }
}
body .block .icon-list {
  margin: 0;
  list-style: none;
  padding: 0;
}
body .block .icon-list > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  line-height: 1.3;
}
body .block .icon-list > li:not(:last-child) {
  margin-bottom: 16px;
}
body .block .icon-list > li .icon {
  margin-right: 25px;
  transform: translateY(2px);
}
body .block .content-box {
  display: flex;
  align-items: center;
}
@media all and (max-width: 768px) {
  body .block .content-box {
    flex-wrap: wrap;
    justify-content: center;
  }
}
body .block .content-box .icon {
  display: flex;
}
body .block .content-box .align-end {
  align-self: flex-end;
}
body .block .content-box .content-wrapper {
  padding: 16px 7% 16px 0;
}
@media all and (max-width: 768px) {
  body .block .content-box .content-wrapper {
    padding: 32px 16px;
  }
}
body .block .content-box .content-wrapper p:last-child {
  margin-bottom: 0;
}
body .block .content-box .content-wrapper .intro {
  font-size: 1.6em;
  padding-bottom: 0;
}
body .block .icon-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
}
body .block .icon-box .icon {
  width: 60px;
  height: 60px;
}
body .block .icon-box .icon.size-70 {
  width: 70px;
  height: 70px;
}
body .block .icon-box .box-content h3 {
  padding: 0;
  margin: 20px 0;
  font-size: 23px;
  font-weight: 400;
}
body .block .simple-carousel {
  padding: 0 48px;
}
body .block .simple-carousel .slick-arrow {
  font-size: 0px!important;
}
body .block .simple-carousel .slick-arrow.slick-disabled {
  opacity: 0.3;
}
body .block .simple-carousel .slick-arrow .icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .block .simple-carousel .slick-arrow .icon.reverse {
  transform: scaleX(-1);
}
body .block .simple-carousel .slick-arrow .icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .block .simple-carousel .slick-arrow:before {
  display: none;
}
body .block .bg-bluewood .simple-carousel .slick-arrow .icon svg {
  fill: white;
}
.fontsize-20 {
  font-size: 20px!important;
}
@media all and (max-width: 570px) {
  .fontsize-20 {
    font-size: 16px!important;
  }
}
.fontsize-22 {
  font-size: 22px!important;
}
@media all and (max-width: 570px) {
  .fontsize-22 {
    font-size: 18px!important;
  }
}
.fontsize-solid-26 {
  font-size: 26px!important;
}
.fontsize-50 {
  font-size: 50px!important;
}
@media all and (max-width: 570px) {
  .fontsize-50 {
    font-size: 35px!important;
  }
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container embed,
.video-container iframe,
.video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-preview-container {
  width: 100%;
  display: block;
  position: relative;
}
button.video-toggle {
  max-width: 100%;
  width: 100%;
  position: relative;
  border: 0;
  padding: 0!important;
  opacity: 1;
  transition: all 0.25s linear;
}
button.video-toggle img {
  max-width: 100%;
  width: 100%;
}
button.video-toggle .image-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 42, 42, 0.7);
}
button.video-toggle .image-overlay .play-button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
button.video-toggle .image-overlay .play-button svg {
  position: absolute;
  left: 25%;
  top: 25%;
  width: 50%;
  height: 50%;
  transform: translatex(5%);
}
button.video-toggle .image-overlay .play-button svg path {
  fill: #233143;
  transition: all 0.3s ease-in-out;
  stroke: none;
}
button.video-toggle:hover {
  opacity: 0.9;
}
button.video-toggle:hover .image-overlay .play-button {
  animation: media-pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  transform: scale(1.1);
}
#video-player-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.73);
  z-index: 99999;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
#video-player-overlay .video-container-inner-wrapper {
  position: relative;
  max-width: 790px;
  width: 100%;
  animation: fadeInUp 0.5s ease forwards;
}
@media all and (max-width: 992px) {
  #video-player-overlay .video-container-inner-wrapper {
    max-width: 80%;
  }
}
@media all and (max-width: 570px) {
  #video-player-overlay .video-container-inner-wrapper {
    max-width: calc(100% - 60px);
  }
}
#video-player-overlay .video-container-inner-wrapper .video-container {
  z-index: 1070;
}
#video-player-overlay .video-container-inner-wrapper .video-container .iframe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-in-out;
}
#video-player-overlay .video-container-inner-wrapper .video-container .iframe-overlay img {
  width: 100%;
}
#video-player-overlay .video-container-inner-wrapper .video-container .iframe-overlay .video-loading-spinner {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
}
#video-player-overlay .video-container-inner-wrapper .video-container .iframe-overlay .video-loading-spinner span {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
#video-player-overlay .video-container-inner-wrapper .video-container .iframe-overlay .video-loading-spinner span:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
#video-player-overlay .video-container-inner-wrapper .video-container .iframe-overlay .video-loading-spinner span:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
#video-player-overlay .video-container-inner-wrapper .video-container .iframe-overlay .video-loading-spinner span:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
#video-player-overlay .video-container-inner-wrapper .video-container .iframe-overlay .video-loading-spinner span:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
#video-player-overlay .video-container-inner-wrapper .video-container .iframe-overlay:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#video-player-overlay .video-container-inner-wrapper .video-container embed,
#video-player-overlay .video-container-inner-wrapper .video-container iframe,
#video-player-overlay .video-container-inner-wrapper .video-container object {
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}
#video-player-overlay .video-container-inner-wrapper .video-container.loaded embed,
#video-player-overlay .video-container-inner-wrapper .video-container.loaded iframe,
#video-player-overlay .video-container-inner-wrapper .video-container.loaded object {
  visibility: visible;
  opacity: 1;
}
#video-player-overlay .video-container-inner-wrapper .video-container.loaded .iframe-overlay {
  visibility: hidden;
  opacity: 0;
}
#video-player-overlay.removing {
  opacity: 0;
}
#video-player-overlay.removing .video-container-inner-wrapper {
  animation: fadeOutDown 0.5s ease forwards;
}
#video-player-overlay .close-video-toggle {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px!important;
  height: 25px!important;
  background: rgba(255, 255, 255, 0);
  top: -50px;
  right: -50px;
  padding: 0!important;
  border: 0;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
@media all and (max-width: 570px) {
  #video-player-overlay .close-video-toggle {
    right: 0;
  }
}
#video-player-overlay .close-video-toggle:hover {
  opacity: 1;
}
#video-player-overlay .close-video-toggle:focus {
  outline: none;
}
#video-player-overlay .close-video-toggle:before,
#video-player-overlay .close-video-toggle:after {
  content: '';
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  transform: rotate(45deg);
}
#video-player-overlay .close-video-toggle:after {
  transform: rotate(-45deg);
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(25px);
  }
}
@keyframes media-pulse {
  from {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  to {
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
  }
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
#block-block-455 .slick-list .icon {
  width: 100px;
  height: 100px;
  margin-top: -20px;
}
#section-main-content #RTWmatters-features {
  margin: 0px 0 40px;
}
#section-main-content #RTWmatters-features table {
  width: 700px;
  margin: auto;
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 50px;
}
@media all and (min-width: 571px) {
  #section-main-content #RTWmatters-features .dexp-shortcodes-box:hover .box-icon {
    background: #009fda;
  }
  #section-main-content #RTWmatters-features .dexp-shortcodes-box:hover .box-icon:before {
    top: calc(-50% - 23px);
    opacity: 0;
  }
  #section-main-content #RTWmatters-features .dexp-shortcodes-box:hover .box-icon:after {
    top: calc(50% - 23px);
    opacity: 1;
  }
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon {
  float: none;
  display: flex;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #009fda;
  transition: 0.2s linear;
  /* ICONS */
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon:before {
  content: '';
  position: absolute;
  top: calc(50% - 23px);
  width: 45px;
  min-width: 45px;
  height: 45px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: 0.2s linear;
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon:after {
  content: '';
  position: absolute;
  top: calc(50% - 23px);
  width: 45px;
  min-width: 45px;
  height: 45px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.2s linear;
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.intro_Webinar:before {
  background-image: url(/sites/default/files/APA_RTW_icon-1_intro_Webinar.jpg);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.intro_Webinar:after {
  background-image: url(/sites/default/files/APA_RTW_icon-rev-1.png);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.articles_and_online_resources:before {
  background-image: url(/sites/default/files/APA_RTW_icon-2_articles_and_online_resources.jpg);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.articles_and_online_resources:after {
  background-image: url(/sites/default/files/APA_RTW_icon-rev-2.png);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.webinar_online_learning:before {
  background-image: url(/sites/default/files/APA_RTW_icon-3_webinar_online_learning.jpg);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.webinar_online_learning:after {
  background-image: url(/sites/default/files/APA_RTW_icon-rev-3.png);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.regular_newsletter:before {
  background-image: url(/sites/default/files/APA_RTW_icon-4_regular_newsletter.jpg);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.regular_newsletter:after {
  background-image: url(/sites/default/files/APA_RTW_icon-rev-4.png);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.research_updates:before {
  background-image: url(/sites/default/files/APA_RTW_icon-5_research_updates.jpg);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.research_updates:after {
  background-image: url(/sites/default/files/APA_RTW_icon-rev-5.png);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.bonus_handbooks_and_toolkits:before {
  background-image: url(/sites/default/files/APA_RTW_icon-6_bonus_handbooks_and_toolkits.jpg);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-icon.bonus_handbooks_and_toolkits:after {
  background-image: url(/sites/default/files/APA_RTW_icon-rev-6.png);
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-title {
  margin: 10px 0;
  font-size: 1.6em;
  font-weight: 600;
  font-family: Roboto!important;
  text-align: center;
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-content {
  text-align: center;
  margin: 10px 0;
}
#section-main-content #RTWmatters-features .dexp-shortcodes-box .box-content p {
  font-size: 1.4em;
}
.media_filter.link-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  margin-bottom: 70px;
  font-size: 16px;
}
.media_filter.link-nav .filter-label {
  padding-right: 20px;
  font-weight: inherit;
}
.media_filter.link-nav > ul {
  margin: 0;
  max-width: max-content;
}
.media_filter.link-nav > ul > li {
  background: none;
  color: #333333;
  padding: 0 20px 0;
  border: 0;
  min-width: unset!important;
}
.media_filter.link-nav > ul > li:hover {
  background: none;
  color: #ffa02e;
}
.media_filter.link-nav > ul > li.active {
  border-bottom: 3px solid #ffa02e;
  color: #ffa02e;
}
.media_filter.link-nav > ul > li:last-of-type {
  border-right: 0;
}
.media_filter.link-nav > ul > li:hover > a,
.media_filter.link-nav > ul > li.active > a,
.media_filter.link-nav > ul > li > a {
  color: currentColor;
  font-weight: inherit;
  font-size: inherit;
}
.left-content-alt.theme-orange h2,
.left-content.theme-orange h2,
.left-content-alt.theme-orange h3,
.left-content.theme-orange h3,
.left-content-alt.theme-orange a,
.left-content.theme-orange a {
  color: #ffa02e !important;
}
.left-content-alt.theme-orange strong,
.left-content.theme-orange strong {
  font-weight: 700;
}
.left-content-alt.theme-pink h2,
.left-content.theme-pink h2,
.left-content-alt.theme-pink h3,
.left-content.theme-pink h3,
.left-content-alt.theme-pink a,
.left-content.theme-pink a {
  color: #920075 !important;
}
.left-content-alt.theme-pink strong,
.left-content.theme-pink strong {
  font-weight: 700;
}
.right-sidebar.theme-pink .nav li > a {
  color: #000 !important;
}
.bg-bluewood .theme-pink .lead-heading {
  color: #920075 !important;
}
.dexp-body-inner {
  clear: both;
  overflow-x: hidden;
  position: relative;
  height: auto;
  min-height: 100vh;
}
.dexp-sticky.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 501;
  padding-top: 1%;
}
header section.dexp-sticky.fixed {
  padding-top: 0;
}
/**
 * @author: Erwin Poelman
 */
.panel-body p,
.campaign_intro_section p,
p.font_style--after_h3 {
  font-size: 1.2em !important;
  padding-bottom: 0;
  line-height: 1.4em !important;
  margin: 0;
  margin-bottom: 15px;
  color: black;
}
.panel-body p.intro,
.campaign_intro_section p.intro,
p.font_style--after_h3.intro {
  font-size: 1.6em;
}
.panel-body p b,
.campaign_intro_section p b,
p.font_style--after_h3 b,
.panel-body p strong,
.campaign_intro_section p strong,
p.font_style--after_h3 strong {
  padding-top: 0;
}
.panel-body p.no-bottom-space,
.campaign_intro_section p.no-bottom-space,
p.font_style--after_h3.no-bottom-space {
  margin-bottom: 0;
}
#section-bottom .row {
  margin-left: -15px;
  margin-right: -15px;
}
/* Fix footer bottom border */
.region.region-footer div[class^="col-"]:nth-last-child(2) .footer-block {
  border-bottom: none !important;
}
/* Inmotion bottom features */
#inmotion-bottom-features {
  width: 100%;
  position: relative;
}
@media all and (max-width: 768px) {
  #inmotion-bottom-features .flex-col-3 {
    width: 50%;
  }
}
@media all and (max-width: 480px) {
  #inmotion-bottom-features .flex-col-3 {
    width: 100%;
    border-right: none;
    border-bottom: 0 !important;
  }
}
@media all and (max-width: 768px) {
  #inmotion-bottom-features .flex-col-3:nth-child(1) {
    border-bottom: 2px solid #e7e8e9;
    padding-bottom: 25px;
  }
}
@media all and (max-width: 768px) {
  #inmotion-bottom-features .flex-col-3:nth-child(2) {
    border-right: 0;
    border-bottom: 2px solid #e7e8e9;
    padding-bottom: 25px;
  }
}
@media all and (max-width: 480px) {
  #inmotion-bottom-features .flex-col-3 .box-content,
  #inmotion-bottom-features .flex-col-3 .box-bottom {
    display: none;
  }
}
#inmotion-bottom-features .flex-col-3:last-of-type {
  border: 0;
}
/* Home tiles */
@media screen and (max-width: 767px) {
  div[id^="home-tile-view-block"] .dexp-grid-item .HomeType a,
  div[id^="inmotioncategory-block"] .dexp-grid-item .HomeType a {
    position: inherit !important;
    margin: 0 !important;
    padding: 3px 5px;
    float: left;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
  }
}
.HomeType .Innovation {
  background-color: #a2ad00;
}
.HomeType .Features {
  background-color: #009fda;
}
.HomeType .People {
  background-color: #0073B0;
}
.HomeType .Profession {
  background-color: #004250;
}
.HomeType .Reconciliation {
  background-color: #a25f3b;
}
.HomeType .Voices-of-APA {
  background-color: #afaeae;
}
.HomeType .Research {
  background-color: #920075;
}
.HomeType .Highlights {
  background-color: #ffa02f;
}
.HomeType .Case-studies {
  background-color: #ffa02e;
}
.HomeType .Podcast {
  background-color: #920075;
}
.HomeType .State-news {
  background-color: #920075;
}
