/*--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);
  }
}
/*--PREDEFINED COLOURS--*/
/*--RESPONSIVE BREAKPOINTS--*/
.bg-cerise {
  background-color: #d104a8;
}
.bg-athensgray {
  background-color: #f0f0f2;
}
body .video-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  padding: 110px 0;
  align-items: flex-start;
  background-color: #d104a8;
  grid-template-areas: "video content" "video content";
}
@media all and (max-width: 1023.98px) {
  body .video-content {
    grid-template-columns: none;
    grid-template-areas: "content content" "video video";
    grid-row-gap: 35px;
    padding: 50px 0;
  }
}
body .video-content .content-box {
  display: block;
  color: #ffffff;
  font-family: "Roboto";
  font-weight: 300;
  grid-area: content;
}
body .video-content .content-box h2 {
  color: #ffffff;
  font-weight: 900;
  font-family: "Roboto";
}
@media all and (min-width: 768px) {
  body .video-content .content-box h2 {
    margin-bottom: 35px;
  }
}
@media all and (max-width: 767.98px) {
  body .video-content .content-box h2 {
    font-size: 30px;
  }
}
body .video-content .content-box p {
  color: #ffffff;
  font-size: 35px;
  line-height: 43px;
}
body .video-content .content-box p:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 768px) {
  body .video-content .content-box p {
    margin-bottom: 35px;
  }
}
@media all and (max-width: 767.98px) {
  body .video-content .content-box p {
    font-size: 18px;
    line-height: 22px;
  }
}
body .video-content .video-embed {
  grid-area: video;
}
body .pink-info-box {
  color: #ffffff;
  width: 100%;
}
body .pink-info-box a,
body .pink-info-box p {
  color: inherit;
}
body .pink-info-box a:last-child,
body .pink-info-box p:last-child {
  margin-bottom: 0;
}
body .pink-info-box a {
  text-decoration: underline;
}
body .pink-info-box .button {
  border: 1px solid #ffffff;
  padding: 14px 15px;
  display: block;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: inherit;
  color: #ffffff;
}
body .pink-info-box.mobile-hidden {
  padding: 75px 0;
  background-color: #d104a8;
  font-family: "Roboto";
}
body .pink-info-box.mobile-hidden p {
  font-size: 35px;
  line-height: 44px;
  text-align: center;
  font-weight: 900;
}
@media all and (max-width: 767.98px) {
  body .pink-info-box.mobile-hidden {
    display: none;
  }
}
body .pink-info-box.desktop-hidden {
  background-color: #d104a8;
  padding: 35px 0;
  font-family: "Cairo";
}
@media all and (min-width: 768px) {
  body .pink-info-box.desktop-hidden {
    display: none;
  }
}
body .pink-info-box.desktop-hidden p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.12px;
  text-align: center;
  font-weight: 300;
}
body .icon-box-grid {
  display: grid;
  grid-row-gap: 40px;
  grid-column-gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  padding: 0;
}
body .icon-box-grid.no-gutter {
  margin: 0;
}
@media all and (max-width: 1023.98px) {
  body .icon-box-grid {
    grid-template-columns: 1fr;
  }
}
body .icon-box-grid .icon-box {
  text-align: center;
  text-decoration: none;
  padding: 0;
}
@media all and (max-width: 1023.98px) {
  body .icon-box-grid .icon-box:not(:last-child) {
    border-bottom: 1px solid #e7e8e9;
    padding-bottom: 35px;
  }
}
body .icon-box-grid .icon-box .svg-icon {
  width: 100px;
  height: 100px;
}
@media all and (max-width: 1023.98px) {
  body .icon-box-grid .icon-box .svg-icon {
    width: 90px;
    height: 90px;
  }
}
body .icon-box-grid .icon-box .icon-name {
  color: #d104a8;
  font-family: "Cairo";
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.28px;
  line-height: 22px;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media all and (max-width: 1023.98px) {
  body .icon-box-grid .icon-box .icon-name {
    font-size: 26px;
    line-height: 22px;
    letter-spacing: 0.26px;
  }
}
body .icon-box-grid .icon-box .description-text {
  color: #004250;
  font-family: "Roboto";
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
}
@media all and (max-width: 1023.98px) {
  body .icon-box-grid .icon-box .description-text {
    font-size: 18px;
    line-height: 24px;
  }
}
body #section-banner .campaign_banner.with-featured-pattern h1 {
  color: #ffffff;
  font-size: 130px;
  line-height: 1;
  font-weight: 500;
  font-family: "Cairo";
  text-align: center;
  position: relative;
  margin-top: 0;
  text-transform: none;
}
@media all and (max-width: 1023.98px) {
  body #section-banner .campaign_banner.with-featured-pattern h1 {
    font-size: 68px;
  }
}
body #section-banner .campaign_banner.with-featured-pattern h1 .slim-text {
  font-size: 56px;
  line-height: 1.6;
  display: block;
}
@media all and (max-width: 1023.98px) {
  body #section-banner .campaign_banner.with-featured-pattern h1 .slim-text {
    font-size: 29px;
  }
}
body #section-banner .campaign_banner.with-featured-pattern .content {
  position: unset;
}
body #section-banner .campaign_banner.with-featured-pattern .content .featured-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: auto;
}
@media all and (min-width: 768px) {
  body .mobile-readmore-overlay-bg-banner {
    background: none !important;
  }
  body .mobile-readmore-overlay-bg-banner h1 {
    display: none;
    color: #ffffff;
  }
  body .mobile-readmore-overlay-bg-banner #scroll-chevron {
    display: none;
  }
}
body .mobile-readmore-overlay-bg-banner h1 {
  color: #ffffff;
  font-size: 45px;
  line-height: 1;
  font-weight: 500;
  font-family: "Cairo";
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  margin-top: 0;
}
body .mobile-readmore-overlay-bg-banner h1:after {
  content: "";
  position: absolute;
  bottom: -30px;
  width: 20px;
  height: 3px;
  background: #d104a8;
  margin: 0 auto;
}
body .mobile-readmore-overlay-bg-banner h1 .slim-text {
  font-size: 19px;
  line-height: 2;
  display: block;
}
@media all and (max-width: 767.98px) {
  body .mobile-readmore-overlay-bg-banner {
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    padding-top: 95px;
    padding-bottom: 35px;
    border-bottom: 32px solid #d104a8;
  }
  body .mobile-readmore-overlay-bg-banner:after {
    content: "";
    position: absolute;
    background: linear-gradient(to top, #000000 81%, rgba(0, 0, 0, 0) 100%);
    left: 0;
    top: 80px;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  body .mobile-readmore-overlay-bg-banner .container {
    padding: 0 30px;
  }
  body .mobile-readmore-overlay-bg-banner #scroll-chevron {
    margin: 40px 0;
  }
}
body .mobile-readmore-overlay-bg-banner .content {
  z-index: 2;
}
body .mobile-readmore-overlay-bg-banner p {
  font-size: 28px;
  line-height: 34px;
  margin: 0;
  padding-bottom: 30px;
}
@media all and (max-width: 767.98px) {
  body .mobile-readmore-overlay-bg-banner p {
    color: #ffffff;
    font-size: 17px;
    line-height: 21px;
    padding-bottom: 20px;
  }
  body .mobile-readmore-overlay-bg-banner p:last-child {
    padding-bottom: 0;
  }
}
body .mobile-readmore-overlay-bg-banner p.intro {
  font-size: 35px;
  line-height: 40px;
}
@media all and (max-width: 767.98px) {
  body .mobile-readmore-overlay-bg-banner p.intro {
    color: #ffffff;
    font-size: 17px;
    line-height: 21px;
    font-family: "Roboto";
    padding-bottom: 20px;
  }
}
body .mobile-readmore-overlay-bg-banner a {
  color: #d104a8;
}
body .paragraph-large p {
  color: #004250;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 30px;
}
@media all and (max-width: 767.98px) {
  body .paragraph-large p {
    line-height: 22px;
    font-size: 18px;
  }
}
body .paragraph-large p:last-child {
  margin-bottom: 0;
}
body .paragraph-large h3 {
  color: #004250;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media all and (max-width: 767.98px) {
  body .paragraph-large h3 {
    margin-bottom: 10px;
    padding-top: 20px;
  }
}
body .paragraph-large a {
  color: #d104a8;
}
body .link-grid {
  margin-top: 52px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 1023.98px) {
  body .link-grid {
    margin-top: 43px;
  }
}
body .link-grid ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #dbdbdb;
  list-style-type: none;
  color: #004250;
  font-family: "Roboto";
  font-size: 28px;
  line-height: 36px;
  padding: 0;
  margin: 0;
}
@media all and (max-width: 767.98px) {
  body .link-grid ul {
    grid-template-columns: repeat(2, 1fr);
    font-size: 18px;
    line-height: 22px;
  }
}
body .link-grid ul li {
  border: 1px solid #a7a7a7;
}
@media all and (max-width: 767.98px) {
  body .link-grid ul li:empty {
    display: none;
  }
}
body .link-grid ul li a {
  display: flex;
  min-height: 108px;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #004250;
  opacity: 1;
  text-decoration: none;
  font-weight: 400;
  padding: 15px;
  box-sizing: border-box;
}
body .link-grid ul li a:hover {
  background-color: #d104a8;
  color: #ffffff;
}
body .section-pink {
  text-align: center;
}
body .section-pink h2 {
  font-size: 45px;
  margin-top: 0;
  font-weight: 900;
  line-height: 50px;
  color: #d104a8;
  margin-bottom: 25px;
}
@media all and (max-width: 767.98px) {
  body .section-pink h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
body .section-pink h2.roboto {
  font-family: "Roboto";
}
body .section-pink .intro-text {
  font-size: 43px;
  font-family: "Roboto";
  font-weight: 300;
  line-height: 48px;
  max-width: 1000px;
  margin: auto;
  color: #004250;
}
@media all and (max-width: 767.98px) {
  body .section-pink .intro-text {
    font-size: 22px;
    line-height: 28px;
    font-weight: 300;
  }
}
body .general-article-grid.pink-variant .dexp-grid-inner .node .item-description {
  background: #ffffff;
}
body .general-article-grid.pink-variant .dexp-grid-inner .node .item-description h5 {
  color: #004250;
  font-size: 22px;
  line-height: 29px;
  font-weight: 600;
}
body .general-article-grid.pink-variant .dexp-grid-inner .node .item-description h5 a {
  color: inherit;
}
body .general-article-grid.pink-variant .dexp-grid-inner .node .item-description .description p {
  font-size: 18px;
  color: #920075;
}
body .general-article-grid.pink-variant .dexp-grid-inner .node .item-description .description p:last-child {
  margin-bottom: 0;
}
body .general-article-grid.pink-variant .dexp-grid-inner .node .item-description .description .NextIconHolder {
  display: flex;
  align-items: center;
}
body .back-to-top.chevron span {
  transition: all 0.2s linear;
  text-decoration: underline;
}
body .back-to-top.chevron span:after {
  display: none;
  transition: unset;
}
body .back-to-top.chevron span:before {
  top: unset;
}
body .back-to-top.chevron span:hover:before {
  top: unset;
}
body .back-to-top.no-gutter {
  margin: 0;
}
body .back-to-top.theme-pink span:hover,
body .back-to-top.theme-pink span:focus {
  color: #d104a8 !important;
}
body #prev-btn.no-border {
  border: none;
  margin-top: 0;
}
@media all and (max-width: 767.98px) {
  body #prev-btn.pink-variant {
    margin-bottom: 0;
  }
}
body #prev-btn.pink-variant a {
  color: #004250 !important;
  text-decoration: underline !important;
  font-size: 18px;
}
body #prev-btn.pink-variant a:hover,
body #prev-btn.pink-variant a:focus {
  color: #d104a8 !important;
}
body #prev-btn.pink-variant a:before,
body #prev-btn.pink-variant a:after {
  font-size: 14px;
}
body .featured-quote {
  padding-top: 80px;
  padding-left: 0px;
}
@media all and (max-width: 767.98px) {
  body .featured-quote {
    padding-top: 58px;
  }
}
body .featured-quote q {
  font-size: 58px;
  line-height: 64px;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  padding-bottom: 0;
}
@media all and (max-width: 767.98px) {
  body .featured-quote q {
    font-size: 30px;
    line-height: 45px;
  }
}
body .featured-quote p {
  font-size: 25px;
  line-height: 64px;
  letter-spacing: 0.25px;
  font-family: "Roboto";
  font-weight: bold;
  position: relative;
  max-width: max-content;
  padding-bottom: 20px;
  padding-top: 25px;
}
@media all and (max-width: 767.98px) {
  body .featured-quote p {
    font-size: 20px;
    margin-top: 0;
    line-height: 45px;
    letter-spacing: 0.2px;
    max-width: 100%;
    width: 100%;
  }
}
body .featured-quote p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 20px);
  background: linear-gradient(90deg, #810168 0%, #810168 20%, #920075 20%, #920075 40%, #aa0389 40%, #aa0389 60%, #c3059d 60%, #c3059d 80%, #d104a8 80%, #d104a8 100%);
  height: 12px;
}
@media all and (max-width: 767.98px) {
  body .featured-quote p::after {
    padding: 0;
    margin-top: 17px;
    width: calc(100% - 20px);
  }
}
body .svg-icon-static {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
body .svg-icon-static svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .section-reg {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media all and (max-width: 767.98px) {
  body .section-reg:not(.no-top) {
    padding-top: 60px;
  }
  body .section-reg:not(.no-bottom) {
    padding-bottom: 60px;
  }
}
body .section-reg.sm-top {
  padding-top: 60px;
}
body .section-reg.no-top {
  padding-top: 0;
}
body .section-reg.no-bottom {
  padding-bottom: 0;
}
body .section-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}
body .section-sm.no-top {
  padding-top: 0;
}
body .section-sm.no-bottom {
  padding-bottom: 0;
}
body h2.slim-blue {
  color: #004250;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
@media all and (max-width: 767.98px) {
  body h2.slim-blue {
    font-size: 26px;
  }
}
body .space-140 {
  display: block;
  height: 140px;
}
@media all and (max-width: 767.98px) {
  body .mobile-hidden {
    display: none !important;
  }
}
@media all and (min-width: 768px) {
  body .desktop-hidden {
    display: none !important;
  }
}
body .sidebar-template {
  display: grid;
  grid-template-columns: auto 389px;
  grid-column-gap: 95px;
  grid-template-areas: "main sidebar" "trusted-provider sidebar" "overview sidebar" "outcomes sidebar" "prerequisites sidebar" "presenters sidebar";
  padding: 15px;
  color: #004250;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template {
    padding-top: 0;
    grid-template-columns: 1fr;
    grid-template-areas: "main" "overview" "trusted-provider" "sidebar" "outcomes" "prerequisites" "presenters";
  }
}
body .sidebar-template .section {
  padding-top: 80px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section {
    padding-top: 0;
  }
}
body .sidebar-template .section p {
  font-size: 24px;
}
body .sidebar-template .section p,
body .sidebar-template .section ul {
  color: inherit;
}
body .sidebar-template .section p:last-child,
body .sidebar-template .section ul:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.mobile-collapse.expanded:last-child .section-inner-wrapper {
    border-bottom: 1px solid #004250;
  }
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.mobile-collapse .section-inner-wrapper {
    display: none;
    padding: 40px 0;
  }
  body .sidebar-template .section.mobile-collapse .section-inner-wrapper p,
  body .sidebar-template .section.mobile-collapse .section-inner-wrapper ul {
    font-size: 18px;
    line-height: 24px;
  }
  body .sidebar-template .section.mobile-collapse .section-inner-wrapper p:first-child,
  body .sidebar-template .section.mobile-collapse .section-inner-wrapper ul:first-child {
    padding-top: 0;
    margin-top: 0;
  }
  body .sidebar-template .section.mobile-collapse .section-inner-wrapper p:last-child,
  body .sidebar-template .section.mobile-collapse .section-inner-wrapper ul:last-child {
    margin-bottom: 0;
  }
}
body .sidebar-template .section .section-header {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0 !important;
  margin-bottom: 20px;
  text-align: left;
}
@media all and (min-width: 768px) {
  body .sidebar-template .section .section-header {
    cursor: default;
  }
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section .section-header {
    background: #f2f2f2;
    width: 100vw !important;
    position: relative;
    display: flex;
    left: 50%;
    right: 50%;
    margin: 2px -50vw 0;
    padding: 12px 30px !important;
  }
  body .sidebar-template .section .section-header.expanded h2 {
    color: #c3059d;
  }
  body .sidebar-template .section .section-header.expanded:after {
    color: #c3059d;
    transform: rotate(-90deg);
  }
  body .sidebar-template .section .section-header:after {
    content: "\f053";
    font-family: FontAwesome;
    position: absolute;
    right: 30px;
    transform: rotate(-180deg);
    font-size: 10px;
    transition: all 0.2s ease;
  }
}
body .sidebar-template .section .section-header .svg-icon-static {
  margin-right: 20px;
  width: 40px;
  height: 40px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section .section-header .svg-icon-static {
    display: none;
  }
}
body .sidebar-template .section .section-header h2 {
  color: #004250;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 0;
  font-family: "Roboto";
  transition: all 0.2s ease;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section .section-header h2 {
    font-size: 25px;
    line-height: 33px;
  }
}
body .sidebar-template .section.main-content {
  grid-area: main;
}
body .sidebar-template .section.main-content .main-banner {
  margin-bottom: 40px;
}
@media all and (min-width: 768px) {
  body .sidebar-template .section.main-content .main-banner {
    display: none;
  }
}
body .sidebar-template .section.main-content h1 {
  font-size: 62px;
  line-height: 68px;
  font-weight: 400;
  color: #d104a8;
  padding-bottom: 15px;
  position: relative;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.main-content h1 {
    font-size: 32px;
    line-height: 36px;
    position: relative;
  }
  body .sidebar-template .section.main-content h1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 130px;
    height: 2px;
    background: #e7e8e9;
  }
}
body .sidebar-template .section.main-content .presenters {
  padding: 15px 0;
  font-size: 30px;
  line-height: 47px;
  font-family: "Roboto";
  font-weight: 300;
  position: relative;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.main-content .presenters {
    display: none;
  }
}
body .sidebar-template .section.main-content .presenters::before,
body .sidebar-template .section.main-content .presenters::after {
  content: "";
  width: 163px;
  height: 1px;
  background: #a7a7a7;
  position: absolute;
  top: 0px;
  left: 0;
}
body .sidebar-template .section.main-content .presenters::after {
  top: unset;
  bottom: 0px;
}
body .sidebar-template .section.main-content .presenters ul,
body .sidebar-template .section.main-content .presenters p {
  font-size: 1em;
  margin: 0;
}
body .sidebar-template .section.main-content .prices {
  padding-top: 20px;
  padding-bottom: 50px;
  list-style: none;
  padding-left: 0;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.main-content .prices {
    display: none;
  }
}
body .sidebar-template .section.main-content .prices li {
  display: flex;
}
body .sidebar-template .section.main-content .prices li > * {
  margin-right: 0.5rem;
}
body .sidebar-template .section.main-content .prices li .price {
  display: flex;
}
body .sidebar-template .section.main-content .prices li b {
  padding: 0;
}
body .sidebar-template .section.main-content .prices p {
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
  margin: 0;
}
body .sidebar-template .section.trusted-provider {
  grid-area: trusted-provider;
  padding-top: 0;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper {
  border-top: 1px solid #a7a7a7;
  padding-top: 40px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.trusted-provider .trusted-provider-wrapper {
    border-bottom: 1px solid #a7a7a7;
    padding: 12px 0;
    margin-bottom: 40px;
  }
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider {
  color: #004250;
  background: none;
  border: none;
  padding: 0 !important;
  text-align: left;
}
@media all and (min-width: 768px) {
  body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider {
    cursor: default;
  }
  body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider.collapse-btn {
    display: none;
  }
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider .mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider .mobile-toggle.expand {
  margin-left: auto;
}
@media all and (min-width: 768px) {
  body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider .mobile-toggle {
    display: none;
  }
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider .mobile-toggle .label {
  color: #c3059d;
  font-size: 16px;
  padding: 0;
  text-decoration: underline;
  font-weight: 700;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider .mobile-toggle .svg-icon-static {
  width: 22px;
  height: 22px;
  transform: rotate(90deg);
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider.collapse-btn {
  margin-left: auto;
  display: block;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider.collapse-btn .mobile-toggle {
  position: relative;
  display: flex;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider.collapse-btn .mobile-toggle .label {
  font-size: 20px;
  font-weight: 500;
  margin-right: 10px;
  text-decoration: underline;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider.collapse-btn .mobile-toggle .close-btn {
  position: relative;
  top: unset;
  left: unset;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border-color: #c3059d;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider.collapse-btn .mobile-toggle .close-btn:before,
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider.collapse-btn .mobile-toggle .close-btn:after {
  width: 10px;
  height: 1px;
  background: #c3059d;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider.collapse-btn:not(.expanded) {
  display: none;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider:not(.collapse-btn).expanded .toggle-btn {
  display: none;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider h3 {
  font-size: 24px;
  line-height: 25px;
  font-family: "Cairo";
  font-weight: bold;
  padding-top: 0;
  margin-bottom: 20px;
  margin-top: 0;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
  }
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider h3,
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider p {
  color: inherit;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider h3:last-child,
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .trusted-provider p:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .the-benefits {
    display: none;
  }
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .the-benefits p {
  font-size: 20px;
  line-height: 25px;
  font-family: "Roboto";
  font-weight: 400;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .the-benefits p.section-label {
  font-size: 24px;
  line-height: 45px;
  font-family: "Cairo";
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .the-benefits .icon-box-grid {
  display: grid;
  padding-left: 0;
  padding-top: 10px;
  border-bottom: 1px solid #a7a7a7;
  padding-bottom: 30px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .the-benefits .icon-box-grid {
    border-bottom: none;
  }
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .the-benefits .icon-box-grid .icon-box {
    border-bottom: none;
    padding-bottom: 0;
  }
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .the-benefits .icon-box-grid .svg-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .the-benefits .icon-box-grid .icon-name {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.22px;
  font-family: "Cairo";
  font-weight: 600;
  margin: 0;
  padding-top: 5px;
}
body .sidebar-template .section.trusted-provider .trusted-provider-wrapper .the-benefits .icon-box-grid .description-text {
  padding-top: 15px;
  font-size: 16px;
  line-height: 20px;
  font-family: "Roboto";
}
body .sidebar-template .section.sidebar-content {
  grid-area: sidebar;
  height: auto;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content {
    margin-bottom: 40px;
  }
}
body .sidebar-template .section.sidebar-content .inner-wrapper {
  position: sticky;
  top: 0;
}
body .sidebar-template .section.sidebar-content .sidebar-banner {
  position: relative;
  display: flex;
  width: 100%;
  height: 288px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .sidebar-banner {
    display: none;
  }
}
body .sidebar-template .section.sidebar-content .sidebar-banner > .field-type-image {
  position: absolute;
}
body .sidebar-template .section.sidebar-content .sidebar-banner div {
  height: 100%;
}
body .sidebar-template .section.sidebar-content .sidebar-banner img {
  width: auto;
  max-width: unset;
  height: 100%;
}
body .sidebar-template .section.sidebar-content .sidebar-main {
  background: #c3059d;
  color: #ffffff;
  padding-top: 50px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .sidebar-main {
    padding-top: 40px;
    padding-bottom: 35px;
  }
}
body .sidebar-template .section.sidebar-content .sidebar-main .content-group {
  margin: 0 40px;
  padding-top: 25px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .sidebar-main .content-group {
    margin: 0 30px;
  }
}
@media all and (max-width: 370px) {
  body .sidebar-template .section.sidebar-content .sidebar-main .content-group {
    margin: 0 15px;
    padding-top: 10px;
  }
}
body .sidebar-template .section.sidebar-content .sidebar-main .content-group:first-child {
  padding-top: 0;
}
body .sidebar-template .section.sidebar-content .sidebar-main .header-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ffffff;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .sidebar-main .header-wrapper {
    margin-bottom: 25px;
  }
}
body .sidebar-template .section.sidebar-content .sidebar-main .header-wrapper + .content-group {
  padding-top: 0;
}
body .sidebar-template .section.sidebar-content .sidebar-main .header-wrapper .svg-icon-static {
  margin-right: 34px;
  min-width: 80px;
  height: 80px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .sidebar-main .header-wrapper .svg-icon-static {
    margin-right: 15px;
    min-width: 55px;
    height: 55px;
  }
}
body .sidebar-template .section.sidebar-content .sidebar-main .header-wrapper .icon-label {
  font-size: 34px;
  line-height: 39px;
  letter-spacing: 2.72px;
  font-family: "Cairo";
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
  position: relative;
  color: #ffffff;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .sidebar-main .header-wrapper .icon-label {
    font-size: 24px;
    line-height: 27px;
  }
}
body .sidebar-template .section.sidebar-content .sidebar-main p,
body .sidebar-template .section.sidebar-content .sidebar-main ul {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  margin: 0;
  color: #ffffff;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .sidebar-main p,
  body .sidebar-template .section.sidebar-content .sidebar-main ul {
    font-size: 16px;
  }
}
@media all and (max-width: 370px) {
  body .sidebar-template .section.sidebar-content .sidebar-main p,
  body .sidebar-template .section.sidebar-content .sidebar-main ul {
    font-size: 14px;
  }
}
body .sidebar-template .section.sidebar-content .sidebar-main .price-wrapper ul {
  list-style: none;
  padding: 0;
}
body .sidebar-template .section.sidebar-content .sidebar-main .price-wrapper ul li {
  display: flex;
}
body .sidebar-template .section.sidebar-content .sidebar-main .price-wrapper ul li > * {
  margin-right: 0.5rem;
}
body .sidebar-template .section.sidebar-content .sidebar-main .price-wrapper ul li .price {
  display: flex;
}
body .sidebar-template .section.sidebar-content .sidebar-main .price-wrapper ul p {
  margin: 0;
}
body .sidebar-template .section.sidebar-content .sidebar-main .presenters {
  padding-bottom: 60px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .sidebar-main .presenters {
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ffffff;
  }
}
body .sidebar-template .section.sidebar-content .sidebar-main .presenters ul {
  color: #ffffff;
  margin: 0;
  padding: 0;
  list-style: none;
}
body .sidebar-template .section.sidebar-content .sidebar-main .presenters ul b,
body .sidebar-template .section.sidebar-content .sidebar-main .presenters ul strong {
  font-weight: 300;
}
body .sidebar-template .section.sidebar-content .cta {
  background-color: #c3059d;
  width: 100%;
  height: 108px;
  border: none;
  border-top: 4px solid #ffffff;
  color: #ffffff;
  font-size: 30px;
  line-height: 36px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: 0.3s ease;
}
body .sidebar-template .section.sidebar-content .cta:hover {
  background-color: #d104a8;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .cta {
    border: 1px solid #ffffff;
    height: auto;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    padding: 11px 15px;
    width: calc(100% - 60px);
    display: block;
    margin: 0 auto;
  }
}
@media all and (max-width: 370px) {
  body .sidebar-template .section.sidebar-content .cta {
    width: calc(100% - 30px);
  }
}
body .sidebar-template .section.sidebar-content .sidebar-info {
  padding-top: 30px;
}
body .sidebar-template .section.sidebar-content .sidebar-info p {
  font-size: 21px;
  line-height: 28px;
  letter-spacing: -0.21px;
  font-weight: bold;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.sidebar-content .sidebar-info p {
    font-size: 16px;
    line-height: 20px;
  }
}
body .sidebar-template .section.sidebar-content .sidebar-info a {
  color: #d104a8;
  text-decoration: none;
}
body .sidebar-template .section.sidebar-content .sidebar-info a:hover {
  text-decoration: underline;
}
body .sidebar-template .section.overview-content {
  grid-area: overview;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.overview-content {
    margin-bottom: 40px;
  }
  body .sidebar-template .section.overview-content .section-header {
    display: none;
  }
  body .sidebar-template .section.overview-content .section-inner-wrapper {
    display: block;
    padding: 0;
  }
}
body .sidebar-template .section.overview-content p {
  margin: 0;
  padding-top: 25px;
  font-size: 24px;
  line-height: 32px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.overview-content p {
    font-size: 20px;
    line-height: 24px;
  }
}
body .sidebar-template .section.overview-content a {
  color: #d104a8;
}
body .sidebar-template .section.outcomes-content {
  grid-area: outcomes;
}
body .sidebar-template .section.outcomes-content .field-name-field-learning-outcome h3 {
  color: inherit;
}
body .sidebar-template .section.outcomes-content h3 {
  margin: 0;
  padding-top: 25px;
  font-size: 24px;
  line-height: 32px;
  font-family: "Roboto";
}
body .sidebar-template .section.outcomes-content ul {
  padding-top: 25px;
  padding-left: 25px;
  padding-bottom: 20px;
}
body .sidebar-template .section.outcomes-content p,
body .sidebar-template .section.outcomes-content ul {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
}
@media all and (max-width: 767.98px) {
  body .sidebar-template .section.outcomes-content p,
  body .sidebar-template .section.outcomes-content ul {
    font-size: 18px;
    line-height: 24px;
  }
}
body .sidebar-template .section.outcomes-content p.important-note,
body .sidebar-template .section.outcomes-content ul.important-note {
  padding-top: 10px;
}
body .sidebar-template .section.outcomes-content a {
  color: #d104a8;
}
body .sidebar-template .section.prerequisites-content {
  grid-area: prerequisites;
}
body .sidebar-template .section.prerequisites-content ul {
  font-size: 24px;
  line-height: 32px;
  padding-left: 25px;
}
body .sidebar-template .section.presenters-content {
  grid-area: presenters;
}
body .sidebar-template .section.presenters-content .presenters-info {
  font-size: 24px;
  line-height: 32px;
  font-family: "Roboto";
  font-weight: 300;
}
body .sidebar-template .section.presenters-content .presenters-info .name {
  margin-bottom: 0;
}
body .sidebar-template .section.presenters-content .presenters-info .detail-info {
  margin-top: 0;
}
.column_left {
  flex-direction: column;
  align-items: flex-start !important;
}
#section-content-top[class*="background_"] .dashboard_detail .dashboard_pd-bottom {
  margin-top: 45px;
  padding-left: 0;
}
#section-content-top[class*="background_"] .dashboard_detail .dashboard_pd-bottom .dashboard_pd-bottom_column {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 0;
}
#section-content-top[class*="background_"] .dashboard_detail .dashboard_pd-bottom .dashboard_pd-bottom_column:first-child {
  border-right: 1px dotted;
}
#section-content-top[class*="background_"] .dashboard_detail .dashboard_pd-bottom .dashboard_pd-bottom_column .accent-button {
  display: flex;
}
#section-content-top[class*="background_"] .dashboard_detail .dashboard_pd-bottom .dashboard_pd-bottom_column .accent-button .dashboard_pd_contents {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 0 20px;
  font-size: 1.2em;
  max-width: 320px;
}
#section-content-top[class*="background_"] .dashboard_detail .dashboard_pd-bottom .dashboard_pd-bottom_column .accent-button .dashboard_pd_contents strong {
  text-decoration: underline;
  font-size: 1.1em;
  padding-bottom: 10px;
}
#section-content-top[class*="background_"] .dashboard_detail .dashboard_pd-bottom .dashboard_pd-bottom_column .accent-button .dashboard_pd_contents span {
  text-align: left;
  color: black;
}
ul.af_list {
  z-index: 99999 !important;
}
.Int_big_home,
.Int_big_mail {
  margin-top: 18px;
}
